/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    /* background: url('./images/background3.svg') no-repeat center center/cover; */
}

/* a {
    text-decoration: none;
    color: inherit;
} */

/* nav {
    background-color: #2c3e50;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
} */

#header {
    position: fixed;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease, height 0.3s ease;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 100px; /* Initial height */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header.scrolled {
    background-color: white; /* Yellow color */
    height: 60px; /* Shrink height */
}
#header.scrolled .logo-container .company-name{
    color: black
}


#logo {
    height: 80px; /* Initial logo size */
    transition: height 0.3s ease;
    display: flex;
    align-items: center;
}

/* Scrolled logo size */
#header.scrolled #logo {
    height: 40px; /* Shrunk logo size */
}

#header.scrolled .logo-container h1 {
    color: black
}
/* 
#header.scrolled ul li a {
    color: black;
}

#header ul li a:hover {
    color: #f39c12;
} */

.logo-container {
    display: flex;
    height: 80px; 
    transition: height 0.3s ease;
    align-items: center;
    gap: 15px; /* Space between logo and company name */
}
#header.scrolled .logo-container {
    height: 40px; /* Shrunk logo size */
}

#header .company-name{
    color: white;
}


.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../../images/covermain1.png') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 10px 20px;
    /*background-color: #f39c12;*/
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d35400;
}


.about {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 50px;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact p {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
    color: white;
}

/* Responsive design
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .vision-mission-body {
        flex-direction: column;
    }

    .left-content h1 {
        font-size: 2rem;
    }

    .left-content .text-section h2 {
        font-size: 1.5rem;
    }

    .left-content .text-section p {
        font-size: 0.9rem;
    }
}  */

@media (max-width: 480px) {
    #header{
        grid-template-columns: 1fr;
    }
    #logo {
        height: 50px; /* Initial logo size */
        transition: height 0.3s ease;
        display: flex;
        align-items: center;
    }   
}