
:root {
    --primary: #D2613D;
    --secondary: #1D1D1D;
    --light: #F5F5F5;
    --gray: #333333;
    --text: #262626;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    background-color: var(--secondary);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}

.logo span {
    font-size: 12px;
    display: block;
    letter-spacing: 1px;
}

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

.nav-link {
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}

.mobile-language-selector {
    display: none; /* Hidden by default, shown only on mobile */
}

.language-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px;
    font-weight: 500;
}

.language-btn.active {
    color: white;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
}

.language-btn:hover {
    color: white;
}

.cta-button {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #be5132;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--secondary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    max-width: 50%;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.secondary-button {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image {
    max-width: 40%;
    text-align: right;
}

.hero-image img {
    max-height: 300px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color:#f7efea;
}

.services-container {
    display: flex;
    gap: 40px;
    flex-direction: column; 
}

.services-text {
    width: 100%;
}

.services-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}


.services-title span.highlight {
    color: var(--primary);
}

.services-description {
    font-size: 16px;
    margin-bottom: 30px;
}

.services-image {
    width: 100%;
}

.services-image img {
    width: 100%;
   /* max-width: 500px;*/
    border-radius: 8px;
    object-fit: cover;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: #221e1b;
    color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #0a0502;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 20px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Unique Value Section */
.unique-value {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color:#f2f2f2;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-description {
    font-size: 14px;
    color: var(--text);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animation styles */
@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.section-animate {
    animation: slideIn 0.5s ease-out forwards;
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px; /* Adjust based on your header height */
    transition: transform 0.3s ease-out;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 70%;
    }
    
    .services-container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary);
        flex-direction:column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    .cta-button {
        display: none;
    }
    /* Move language selector to the nav menu on mobile */
    header .desktop-language-selector {
        display: none;
    }
    
    .mobile-language-selector {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 576px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}
