/* General Styles */
/* Reset and base styles */
* {
    margin: 0;
    /* border: 0.25px solid red; */
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {

    background-color: #e6e6e6;
    /* Light gray background */
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px;
}

/* Header styles */
header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    
}

.header-container {
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.logo-placeholder {
    height: 50px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation menu */
.language-selector {
    display: flex;
    gap: 10px;
    
}
.language-selector button {
    all: unset;
    cursor: pointer;
    color: inherit;
}

.nav-menu {
    display: flex;
    gap: 20px;
}


.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #555;
}



/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    margin-left: 20px;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}
/* Header */
.head {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    max-height: 50px;
}

/* Banner - Full Width */
.banner-container {
    width: 100%;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.banner-text {
    max-width: 600px;
}

.banner-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: normal;
}

.banner-text h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 20px;
}

.banner-text p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: #090614;
    margin-top: 10px;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #16324d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

.banner-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.banner-image img {
    max-height: 350px;
}
/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-info {
    flex: 1;
    margin-right: 30px;
}

.footer-info h3 {
    margin-bottom: 15px;
    color: #333;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.footer-nav,
.footer-contact {
    flex: 1;
}

.footer-nav h3,
.footer-contact h3 {
    margin-bottom: 15px;
    color: #333;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #666;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 30px;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}
/* Responsive styles */
@media (max-width: 992px) {

    .hero-content,
    .about-content,
    .values-content {
        flex-direction: column;
    }
 
    
    .hero-image-placeholder,
    .about-image-placeholder,
    .values-image-placeholder {
        width: 100%;
        min-height: 200px;
        order: -1;
    }

    .hero-text,
    .about-text,
    .values-text {
        padding: 30px;
        
    }
    .areas-container{
        flex-direction: column;
    }
    
  
   
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    /* Hamburger animation for active state */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 8px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 8px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-info,
    .footer-nav,
    .footer-contact {
        margin-bottom: 30px;
    }

    .hero{
        height: 70vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

