:root {
    --primary-color: #CD2945;
    --dark-color: #1D2939;
    --light-color: #ffffff;
    --gray-color: #667085;
    --container-width: 1300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Add more side space for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px; /* or increase to 24px if you want more space */
    }
}


/* Header Styles */
header.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: var(--light-color);
}


.logo img {
    width: 80px;
    height: auto;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
}

.main-nav a.active {
    color: var(--primary-color);
}

/* Mobile Menu */
/* Default desktop styles */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    margin: 0 0 0 auto;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 10px;
    position: absolute;
    top: 80px;
    right: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-menu a {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

/* Mobile styles */
@media (max-width: 768px) {
    .main-nav,
    .contact-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }

    .hero-content {
        padding: 40px 0;
    }
    
}






/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark {
    background: var(--dark-color);
    color: var(--light-color);
    border-radius: 25px;
    margin-top: 50px;
    
}


.btn-primary {
    background-color: transparent;
    border: 1.8px solid #CD2945;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: black; /* black text */
}

.btn-outline-light {
    background: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
}

.btn-2nd {
    background-color: #CD2945;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white; /* black text */
}

.btn-header {
    background: var(--dark-color);
    color: var(--light-color);
    border-radius: 25px;
    

}




/* Hero Section */
.hero {
    position: relative;
    background: url('img/Hero.jpg') no-repeat center/cover;
    height: 550px;
    color: var(--light-color);
}


.hero-about {
    position: relative;
    background: url('img/hero25.jpg') no-repeat center/cover;
    height: 500px;
    color: var(--light-color);
}


.hero-project {
    position: relative;
    background: url('img/With-size.jpg') no-repeat center/cover;
    height: 500px;
    color: var(--light-color);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    color: black;
}

.hero-text {
    max-width: 600px;
}

@media (max-width: 1024px) {
    .hero-text {
        margin-left: 14px; /* or padding-left: 15px; */
    
    }

    .hero-content {
        padding: 40px 0;
    }
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: black;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}



/* Stats Section */
.stats-section {
    position: relative;
    margin-top: -5rem;
    z-index: 2;
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stats-card.primary {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 32px;
    border-radius: 16px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--light-color);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-item h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.white-logo {
    width: auto;
    height: 70px;

}




/* About Section */
.about-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto 48px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.about-item {
    padding: 24px;
    margin-bottom: 24px;
}

.about-item.bordered {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
}

.about-image-wrapper {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.overlay-image {
    position: absolute;
    bottom: 135px;
    right: 0px;
    width: 230px;
    height: 230px;
}

.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.mission {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: left;
}

.bordered {
    cursor: pointer;
}




/* Quality Section */
.quality-section {
    padding: 10px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.quality-image img {
    width: 100%;
    border-radius: 12px;
}

.quality-list {
    list-style: none;
    margin: 24px 0;
}

.quality-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
}



/* Projects Section */
.projects-section {
    position: relative;
    height: 400px;
    color: white;
    background-image: url('img/project.jpg');
    background-size: cover;
    background-position: center;
    margin: 3rem 0;
}

.projects-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.projects-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.projects-content p {
    max-width: 600px;
    margin-bottom: 2rem;
}



/* Clients Section */
.clients-section {
    padding: 1rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
}

.client-logo {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #d1d5db;
    border-radius: 9999px;
}




/* Footer */
.footer {
    background: #333846;
    color: var(--light-color);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-links {
    list-style: none;
}


.footer-links a {
    color: #9ca3af;
    transition: color 0.2s;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(145, 26, 26, 0.1);
    margin-top: 48px;
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-btn {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    border: 1px solid #CD2945;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    background: transparent;
    color: white;
  }

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid,
    .about-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}