/* Import Google Fonts for Arabic Support */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --pakistan-green: #01411C;
    --pakistan-green-light: #0a5c2a;
    --pakistan-green-dark: #003315;
    --gold: #FFD700;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-dark: #2c3e50;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-gray);
    font-size: 0.95rem;
}

/* Arabic Language Support */
html[lang="ar"] body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .navbar-nav {
    margin-left: 0 !important;
    margin-right: auto !important;
}

html[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--pakistan-green) 0%, var(--pakistan-green-light) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-brand:hover {
    color: var(--gold) !important;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.btn-login {
    background-color: var(--gold);
    color: var(--pakistan-green);
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-login:hover {
    background-color: var(--white);
    color: var(--pakistan-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Language Switcher */
.btn-group .btn {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-group .btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--pakistan-green);
}

.btn-outline-light:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--pakistan-green);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(1, 65, 28, 0.95) 0%, rgba(10, 92, 42, 0.95) 100%),
                url('../images/construction-bg.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--gold);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-hero {
    background-color: var(--gold);
    color: var(--pakistan-green);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pakistan-green);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pakistan-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pakistan-green) 0%, var(--pakistan-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pakistan-green);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pakistan-green) 0%, var(--pakistan-green-light) 100%);
    color: var(--white);
}

.about-section .section-title {
    color: var(--white);
}

.about-section .section-subtitle {
    color: var(--gold);
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--pakistan-green-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p, .footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--pakistan-green) 0%, var(--pakistan-green-light) 100%);
    padding: 2rem 0;
}

.login-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.login-header {
    background: linear-gradient(135deg, var(--pakistan-green) 0%, var(--pakistan-green-light) 100%);
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
}

.login-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--gold);
    margin: 0;
}

.login-body {
    padding: 2.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--pakistan-green);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--pakistan-green);
    box-shadow: 0 0 0 0.2rem rgba(1, 65, 28, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--pakistan-green) 0%, var(--pakistan-green-light) 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Dashboard */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--pakistan-green) 0%, var(--pakistan-green-dark) 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    flex-shrink: 0;
}

/* Custom scrollbar for sidebar (subtle) */
.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 2px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.sidebar-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h4 {
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.sidebar-menu {
    padding: 1rem 0;
}

.menu-item {
    padding: 1rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-item:hover, .menu-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
}

.menu-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.main-content {
    flex: 1;
    background: var(--light-gray);
}

.top-navbar {
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-content {
    padding: 2rem;
}

.stats-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.stats-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pakistan-green);
    margin-bottom: 0.5rem;
}

.stats-card p {
    color: #666;
    margin: 0;
}

/* Dashboard Footer */
.dashboard-footer {
    background: var(--white);
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    border-top: 2px solid var(--pakistan-green);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.dashboard-footer p {
    color: #666;
    font-size: 0.9rem;
}

.dashboard-footer strong {
    font-weight: 600;
}

.dashboard-footer .fa-code {
    color: var(--pakistan-green);
    margin-right: 0.25rem;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .sidebar {
        position: fixed !important;
        left: -260px;
        top: 0;
        transition: left 0.3s ease;
        z-index: 1000;
        height: 100vh;
        width: 260px;
    }
    
    .sidebar.active {
        left: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    body.sidebar-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .top-navbar {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
    }
    
    .top-navbar h4 {
        font-size: 1.25rem;
    }
    
    .page-content {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats-card h3 {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ============================================
   HOMEPAGE SECTIONS - ASAMCO STYLE
   ============================================ */

/* Hero Carousel */
.hero-slider {
    position: relative;
    background-color: var(--pakistan-green);
}

.carousel-item {
    height: 420px;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 65, 28, 0.85) 0%, rgba(10, 92, 42, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.carousel-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.carousel-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(1, 65, 28, 0.15);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pakistan-green) 0%, var(--pakistan-green-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #ffa500 100%);
    transform: rotateY(360deg);
}

.service-card h3,
.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pakistan-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-section img {
    border-radius: 12px;
}

.about-section h2 {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-section h3 {
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
}

.about-section .lead {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
}

.about-section p {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pakistan-green) 0%, var(--pakistan-green-light) 100%);
    color: var(--white);
}

.why-choose-section .section-title {
    color: var(--white);
}

.why-choose-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--pakistan-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(360deg);
}

.why-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
}

.why-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.who-we-are-section h2 {
    color: var(--pakistan-green);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.who-we-are-section .lead {
    font-size: 1.2rem;
    color: var(--pakistan-green);
    font-weight: 500;
}

.who-we-are-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.who-we-are-section img {
    border-radius: 12px;
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(1, 65, 28, 0.2);
}

.project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(1, 65, 28, 0.95) 0%, rgba(1, 65, 28, 0.7) 70%, transparent 100%);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(60%);
    transition: all 0.4s ease;
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-content p {
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.project-card:hover .project-content p {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(1, 65, 28, 0.05) 0%, rgba(10, 92, 42, 0.05) 100%);
}

.contact-info-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-wrapper h3 {
    color: var(--pakistan-green);
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--pakistan-green);
    color: var(--white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--pakistan-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--gold);
    color: var(--pakistan-green);
}

.contact-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-text h5 {
    color: var(--gold);
}

.contact-text p {
    margin-bottom: 0;
    color: #666;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-text p {
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--pakistan-green);
    box-shadow: 0 0 0 0.2rem rgba(1, 65, 28, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Footer Updates */
.footer {
    background: linear-gradient(135deg, var(--pakistan-green-dark) 0%, var(--pakistan-green) 100%);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer h4,
.footer h5 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--pakistan-green);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    width: 20px;
    color: var(--gold);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    background: var(--pakistan-green-dark);
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pakistan-green);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Responsive Updates for New Sections */
@media (max-width: 992px) {
    .carousel-item {
        height: 380px;
    }
    
    .carousel-content h1 {
        font-size: 2.5rem;
    }
    
    .carousel-content p {
        font-size: 1.2rem;
    }
    
    .about-section img,
    .who-we-are-section img {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 320px;
    }
    
    .carousel-content h1 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .why-card {
        margin-bottom: 1.5rem;
    }
    
    .project-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 280px;
    }
    
    .carousel-content h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .project-img {
        height: 180px;
    }
}
