/* style.css */
@font-face {
    font-family: 'Bauhaus';
    src: url('ITC Bauhaus Medium.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

:root {
    --card: #ffffff;
    --accent: #64ffda;
}

body {
    margin: 0;
    font-family: Bauhaus, Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
}

header {
    background: #524d05;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

header img {
    max-height: 70px;
}

.hero {
    background: url('pic/background-1.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

/* Transparent Highlighter Styles */
.hero .highlight-container {
    background: rgba(81, 129, 5, 0.7);
    padding: 2px;
    border-radius: 15px;
    backdrop-filter: blur(0px);
    border: 1px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn {
    background: #64ffda;
    color: #0a192f;
    padding: 15px 30px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.section h2 {
    text-align: center;
    color: #0a192f;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature i {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 15px;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature a {
    text-decoration: none;
    color: black;
    display: block;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.industry {
    position: relative;
    color: white;
    min-height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    box-shadow: inset 0 -30px 40px rgba(0,0,0,0.4);
}

.industry h3 {
    margin: 0;
}

.cta-box {
    background: #0a192f;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 20px;
}

.cta-box .btn {
    background: #64ffda;
    color: #0a192f;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.contact {
    background: white;
    padding: 60px 20px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0a192f;
}

.contact .info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact .info div {
    max-width: 300px;
    text-align: center;
}

.contact .info i {
    font-size: 1.8rem;
    color: #23d065;
    margin-bottom: 10px;
}

footer {
    background: #0a192f;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.btn {
    font-family: 'Bauhaus';
}

.contact-card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(25, 56, 118, 0.04);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

.contact-card i {
    font-size: 1.35rem;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.name {
    font-size: 50px;
    color: #00f35d;
    font-weight: 10;
}

.logo {
    max-width: 200px;
    height: auto;
    align-items: center;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .contact .info {
        gap: 20px;
    }
    
    .name {
        font-size: 1.8rem;
    }


}