* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-primary,
            .cta-secondary {
                width: 100%;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-content p {
                font-size: 1.1rem;
            }
        }

         :root {
        --primary: #000000;
        --secondary: #9e1f1c;
        --dark: #1a1a1a;
        --light: #ffffff;
        --gray: #f5f5f5;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            font-display: swap;
        }

        main {
            contain: layout;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 999;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(158, 31, 28, 0.3);
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(158, 31, 28, 0.4);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(10px);
            z-index: 999;
            transition: background 0.3s, box-shadow 0.3s;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: bold;
            color: white;
            transition: color 0.3s;
            z-index: 1001;
            display: flex;
            align-items: center;
        }

        nav.scrolled .logo {
            color: var(--primary);
        }

        .logo span {
            color: var(--secondary);
        }

        .logo-img {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav.scrolled .nav-links a {
            color: var(--dark);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta-btn {
            padding: 0.7rem 1.8rem;
            background: var(--primary);
            color: white !important;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(158, 31, 28, 0.3);
        }

        .nav-cta-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(158, 31, 28, 0.4);
        }

        .nav-cta-btn::after {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s;
            border-radius: 3px;
        }

        nav.scrolled .hamburger span {
            background: var(--primary);
        }

        .hamburger.active span {
            background: var(--primary);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .mobile-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Hero Section */
      .hero {
        height: 100vh;
        display: flex;
        align-items: center;        /* vertically center */
        justify-content: flex-start; /* align content to the left */
        text-align: left;            /* align text to the left */
        color: white;
        position: relative;
        overflow: hidden;
        padding-left: 5%;            /* add some left padding */
        z-index: 1;
    }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            display: none;
        }

        .hero-picture {
            display: block;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 0;
        }

        .hero::before {
            display: none; 
}

        @keyframes move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;            /* slightly narrower so video is visible */
    padding: 2rem;
}


      .hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

        .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        animation: fadeInUp 1s ease 0.2s both;
    }

       .cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero {
                justify-content: center;
                text-align: center;
                padding-left: 0;
            }
            .hero-video {
                display: none;
            }
            .hero-picture {
                display: block;
            }
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 4rem;
        }

        /* About Section */
.about {
    background: var(--gray);
    padding: 4rem 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* flexible 2-column layout */
    gap: 2.5rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary);
    font-size: 2rem; /* slightly smaller for compactness */
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.about-image {
    position: relative;
    height: 68%;
    min-height: 200px; /* slightly smaller for compact layout */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.05); /* subtle hover zoom */
}

        /* Mission & Vision Section */
.mission-vision {
    background: white;
    padding: 6rem 2rem;
}

.mission-vision-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto 0;
    flex-wrap: wrap; /* keeps layout nice on mobile */
}

/* Cards */
.mission-card,
.vision-card {
    width: 300px;
    height: 300px;
    padding: 0.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-card {
    background: var(--primary);
    color: white;
}

.vision-card {
    background: var(--secondary);
    color: white;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Background effect */
.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* Smaller icons */
.mv-icon {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Smaller title + text */
.mv-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.mv-content p {
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Smaller label */
.mv-label {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
    margin-bottom: 0.5rem;
}
       /* ===========================
   Minimal Products Section
=========================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 160px;
    overflow: hidden;
}

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

.product-content {
    padding: 1rem;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.product-content p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--secondary);
    color: white;
    font-size: 0.85rem;
    border-radius: 30px;
    transition: 0.3s;
}

.product-btn:hover {
    transform: translateX(3px);
    background: var(--primary);
}

.products-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .products-cta-btn {
            display: inline-block;
            padding: 1rem 3rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(158, 31, 28, 0.3);
        }

        .products-cta-btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(158, 31, 28, 0.4);
        }

         .product-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .product-btn:hover {
            background: var(--primary);
            transform: translateX(5px);
        }


/* ===========================
   Minimal Services Section
=========================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

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

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

.service-content {
    padding: 1rem;
    text-align: center;
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service-content p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

/* ===========================
   Minimal Why Choose Us
=========================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-item {
    background: #000000; /* this sets the pink color you want */
    padding: 1.3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.6s ease;
    text-align: center;
}

.why-item:hover {
    background: #9e1f1c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;  /* white icon background */
    color: #000000;
    margin: 0 auto 1rem;
}

.why-item:nth-child(even) .why-icon {
    background: var(--secondary);
}

.why-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #f4f4f4;
}

.why-item p {
    font-size: 0.85rem;
    color: #f4f4f4;
    line-height: 1.4;
}

/* ===========================
   Responsive Fix
=========================== */

@media (max-width: 992px) {
    .product-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid,
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

       /* Smaller Why Choose Us */
.why-choose {
    background: white;
    padding: 2rem 1rem;
}

.why-grid.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Two Column Layout */
.why-grid.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .why-grid.three-column {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid.two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-grid.three-column,
    .why-grid.two-column {
        grid-template-columns: 1fr;
    }
}

/* Shared item styles */
.why-item {
    background: #000000;
    padding: 1.4rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.6s ease;
      position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 0;
}

.why-item:hover::before {
    opacity: 1;
}

.why-item:hover {
    background: #9e1f1c; /* hover background */
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.why-item:hover h3,
.why-item:hover p {
    color: white;
    position: relative;
    z-index: 1;
}

.why-icon {
    width: 45px;
    height: 45px;
    background: white;  /* white icon background */
    color: #9e1f1c;  
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.why-item:nth-child(even) .why-icon {
    background: var(--secondary);
}

.why-item:hover .why-icon {
    background: white;
    color: var(--primary);
    transform: rotateY(360deg);
}

.why-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.why-item p {
    color: #f4f4f4;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

       /* Smaller CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../img/two-logistics-professionals-inspect-cargo-containe-2025-11-24-07-18-51-utc.webp') center/cover fixed;
    padding: 3rem 1.5rem; /* reduced from 8rem */
    text-align: center;
    color: white;
    border-radius: 15px; /* small box look */
    max-width: 1200px; /* boxed layout */
    margin: 2rem auto; /* center it */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.cta-content h2 {
    font-size: 1.5rem; /* smaller */
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 0.9rem; /* smaller text */
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}



.cta-primary,
.cta-secondary {
    padding: 0.6rem 1rem; /* slightly smaller horizontal padding */
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    flex: 0 1 auto;
    white-space: nowrap;
    max-width: 150px; /* reduce width */
    text-align: center; /* center text */
}

.cta-primary {
    background: white;
    color: var(--primary);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

        /* Smaller Reviews Section */
.reviews {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 3rem 1.5rem; /* reduced height */
    border-radius: 15px; /* small box look */
    max-width: 1200px; /* boxed instead of full width */
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.reviews .section-title,
.reviews .section-subtitle {
    color: white;
    font-size: 1.4rem; /* smaller */
    margin-bottom: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* smaller cards */
    gap: 1.5rem; /* tighter spacing */
    margin-top: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px); /* less blur */
    padding: 1.2rem; /* reduced */
    border-radius: 12px; /* smaller corners */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.stars {
    font-size: 1rem; /* smaller star icons */
    margin-bottom: 0.5rem;
}

.review-text {
    font-style: italic;
    font-size: 0.85rem; /* smaller */
    margin-bottom: 1rem;
    line-height: 1.5;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reviewer-avatar {
    width: 40px;   /* reduced */
    height: 40px;
    font-size: 1rem;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

        .reviewer-info h3 {
            font-size: 0.95rem;
            margin-bottom: 0.1rem;
        }.reviewer-info p {
    font-size: 0.75rem;
    opacity: 0.9;
}


        /* Smaller FAQs Section */
.faqs {
    background: var(--gray);
    padding: 2rem 1rem; /* reduced section height */
    border-radius: 15px; /* small box effect */
    max-width: 1200px;
    margin: 2rem auto;
}

.faq-container {
    max-width: 700px; /* smaller width */
    margin: 1.5rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem; /* tighter */
    border-radius: 10px; /* smaller corners */
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1rem 1.2rem; /* smaller padding */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem; /* smaller text */
    color: var(--dark);
    transition: all 0.3s;
    border-left: 3px solid var(--primary); /* thinner */
}

.faq-item:nth-child(even) .faq-question {
    border-left-color: var(--secondary);
}

.faq-question:hover {
    background: #f4f4f4;
}

.faq-toggle {
    font-size: 1.2rem; /* smaller icon */
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer-content {
    padding: 0 1.2rem 1.2rem 1.2rem; /* reduced padding */
    color: #666;
    font-size: 0.9rem; /* smaller */
    line-height: 1.5; /* tighter */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* smaller open height */
}


       /* Contact Section - Minimalist */
.contact {
    background: white;
    padding: 3rem 1.5rem;
}

.contact .container {
    max-width: 100%;
    padding: 0 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:nth-child(even) .contact-icon {
    background: var(--secondary);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.contact-details p {
    color: #666;
    line-height: 1.4;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 350px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 0;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            padding-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-section a:hover {
            color: white;
            padding-left: 5px;
            text-decoration: underline;
            transition: all 0.3s;
        }

        .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        color: white; /* ensures icon inherits white color */
    }

    .social-links a:nth-child(even) {
        background: var(--secondary);
    }

    .social-links a svg {
        fill: white; /* force SVG icons to be white */
        width: 20px;
        height: 20px;
    }

    .social-links a:hover {
        transform: translateY(-5px);
    }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem 0;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: #ccc;
        }

        .designer {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #ccc;
        }

        .designer a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            position: relative;
        }

        .designer a:hover {
            text-decoration: underline;
        }

        .yp-logo {
            width: 30px;
            height: 30px;
            background: var(--secondary);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            nav {
                backdrop-filter: none;
                background: rgba(255, 255, 255, 0.98);
            }
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transition: right 0.3s;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
                z-index: 1000;
                align-items: flex-start;
            }

            .nav-links a {
                color: var(--dark) !important;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-cta-btn {
                width: 100%;
                text-align: center;
            }

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

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-image {
                min-height: 300px;
                order: -1;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mission-card,
            .vision-card {
                padding: 3rem 2rem;
            }

            .contact .container {
                padding: 0 1rem;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info {
                text-align: center;
                align-items: center;
            }

            .contact-item {
                justify-content: center;
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .contact-details {
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .map-container {
                margin: 0 auto;
                width: 100%;
                height: 300px;
            }

            .footer-content {
                text-align: center;
            }

            .footer-section h3 {
                text-align: center;
            }

            .footer-section p {
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .product-grid,
            .services-grid,
            .why-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }