    /* --- 1. CSS Variables & Reset --- */
        :root {
            --color-primary: #0B1F3B;
            /* Navy Blue */
            --color-secondary: #F1F5F9;
            /* Ice Gray */
            --color-accent: #38BDF8;
            /* Sky Blue */
            --color-text: #111827;
            --color-text-light: #4B5563;
            /* Gray-600 equivalent */
            --color-bg: #F8FAFC;
            --color-white: #ffffff;

            --spacing-container: 1rem;
            --max-width: 80rem;
            /* approx 1280px */
            --nav-height: 80px;
            --border-radius: 1rem;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* html {
            scroll-behavior: smooth;
        } */

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            overflow-x: hidden;
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- 2. Utility Classes --- */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-container);
            width: 100%;
        }

        .flex {
            display: flex;
        }

        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .items-center {
            align-items: center;
        }

        .justify-center {
            justify-content: center;
        }

        .grid {
            display: grid;
        }

        .text-center {
            text-align: center;
        }

        .hidden {
            display: none;
        }

        /* Color Utilities */
        .text-sky {
            color: var(--color-accent);
        }

        .text-navy {
            color: var(--color-primary);
        }

        .bg-light {
            background-color: var(--color-bg);
        }

        .bg-white {
            background-color: var(--color-white);
        }

        /* --- 3. Navbar Styles --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            background-color: var(--color-primary);
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled {
            background-color: rgba(11, 31, 59, 0.95);
            /* Navy with opacity */
            backdrop-filter: blur(4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .nav-content {
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
        }

        .logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            background-color: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }


        .logo-text {
            font-weight: 700;
            font-size: 1.5rem;
            color: white;
            letter-spacing: 0.025em;
        }

        .desktop-menu {
            display: none;
            /* Hidden on mobile */
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: #d1d5db;
            /* Gray-300 */
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--color-accent);
        }

        .btn-cta-nav {
            padding: 0.625rem 1.25rem;
            background-color: var(--color-accent);
            color: var(--color-primary);
            font-weight: 700;
            border-radius: 9999px;
            transition: all 0.2s;
            box-shadow: 0 4px 6px -1px rgba(56, 189, 248, 0.2);
        }

        .btn-cta-nav:hover {
            background-color: white;
            color: var(--color-primary);
            transform: scale(1.05);
        }

        .mobile-menu-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: block;
            /* Visible on mobile */
        }

        .mobile-menu-panel {
            display: none;
            background-color: var(--color-primary);
            border-top: 1px solid #374151;
            padding: 0.5rem 0 1rem 0;
        }

        .mobile-menu-panel.open {
            display: block;
        }

        .mobile-link {
            display: block;
            padding: 0.75rem 1.25rem;
            color: white;
            font-weight: 500;
        }

        .mobile-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--color-accent);
        }

        /* --- 4. Hero Section Styles --- */
        .hero-section {
            position: relative;
            padding-top: calc(var(--nav-height) + 3rem);
            padding-bottom: 5rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Background Blobs */
        .blob {
            position: absolute;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            filter: blur(60px);
            z-index: 0;
        }

        .blob-1 {
            top: -5rem;
            right: -5rem;
            width: 24rem;
            height: 24rem;
            background-color: rgba(56, 189, 248, 0.1);
            /* Sky with opacity */
        }

        .blob-2 {
            bottom: -5rem;
            left: -5rem;
            width: 20rem;
            height: 20rem;
            background-color: rgba(11, 31, 59, 0.05);
            /* Navy with opacity */
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            position: relative;
            z-index: 10;
            width: 100%;
        }

        .hero-content-left {
            text-align: center;
            order: 2;
            /* Image first on mobile usually, but keeping text logic consistent */
        }

        /* Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.375rem 1rem;
            border-radius: 9999px;
            background-color: rgba(56, 189, 248, 0.1);
            color: var(--color-primary);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(56, 189, 248, 0.2);
        }

        .hero-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--color-primary);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-title .highlight {
            color: var(--color-accent);
            position: relative;
            display: inline-block;
        }

        .underline-svg {
            position: absolute;
            width: 100%;
            height: 12px;
            bottom: -4px;
            left: 0;
            opacity: 0.4;
            color: var(--color-accent);
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--color-text-light);
            margin-bottom: 2rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2.5rem;
        }

        /* Buttons */
        .btn {
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--color-accent);
            box-shadow: 0 10px 15px -3px rgba(56, 189, 248, 0.3);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--color-primary);
            color: var(--color-primary);
        }

        .btn-outline:hover {
            background-color: var(--color-primary);
            color: white;
        }

        /* Trust Indicators */
        .trust-box {
            border-top: 1px solid #e5e7eb;
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            /* Stack on mobile */
            align-items: center;
            gap: 1.5rem;
            justify-content: center;
        }

        .avatar-group {
            display: flex;
        }

        .avatar-group img {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            border: 2px solid white;
            background-color: #e5e7eb;
            margin-left: -0.75rem;
        }

        .avatar-group img:first-child {
            margin-left: 0;
        }

        .trust-text {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-text-light);
            text-align: left;
        }

        .stars {
            color: #fbbf24;
            /* Amber 400 */
            font-size: 0.75rem;
        }

        /* Right Side (Image) */
        .hero-content-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            order: 1;
            /* Image on top mobile */
        }

        .image-decor-circle {
            position: absolute;
            inset: 0;
            background-color: rgba(56, 189, 248, 0.05);
            border-radius: 50%;
            filter: blur(40px);
            transform: scale(0.9);
        }

        .ac-image-container {
            position: relative;
            width: 100%;
            max-width: 28rem;
            z-index: 20;
            display: flex;
            justify-content: center;
        }

        .ac-image {
            width: 100%;
            height: auto;
            max-height: 448px;
            object-fit: contain;
            /* Drop shadow similar to Tailwind drop-shadow-2xl */
            filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
        }

        /* --- 5. Animations --- */

        /* Entrance for AC: Roll in from left */
        @keyframes rollInLeft {
            0% {
                opacity: 0;
                transform: translateX(-100vw) rotate(-360deg);
            }

            100% {
                opacity: 1;
                transform: translateX(0) rotate(0deg);
            }
        }

        .animate-ac-enter {
            animation: rollInLeft 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            transform-origin: center center;
        }

        /* Staggered Text Entrance */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text-anim {
            opacity: 0;
            animation: fadeUp 0.8s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- 6. Sections (Services/About) --- */
        .section-padding {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .section-desc {
            color: var(--color-text-light);
            max-width: 42rem;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .service-card {
            padding: 2rem;
            border-radius: 1rem;
            transition: all 0.3s;
        }

        .card-light {
            background-color: #DBDBDB;
            border: 1px solid #e5e7eb;
        }

        .card-light:hover {
            box-shadow: 0 20px 25px -5px rgba(27, 27, 27, 0.493);
            transform: translateY(-0.5rem);
        }

        .card-dark {
            background-color: var(--color-primary);
            color: white;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .card-dark:hover {
            box-shadow: 0 20px 25px -5px var(--color-primary);
            transform: translateY(-0.5rem);
        }

        /* Offset the middle card slightly upwards on desktop */
        /* .card-offset {
            Handled in media query
        } */

        .icon-box {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .icon-light {
            background-color: white;
            color: var(--color-accent);
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

        .icon-dark {
            background-color: rgba(56, 189, 248, 0.2);
            color: var(--color-accent);
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .card-title.dark {
            color: var(--color-primary);
        }

        .card-title.light {
            color: white;
        }

        .card-text {
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .card-text.dark {
            color: var(--color-text-light);
        }

        .card-text.light {
            color: #d1d5db;
        }

        .learn-more {
            font-weight: 600;
            color: var(--color-accent);
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .learn-more:hover {
            color: var(--color-primary);
        }

        .card-dark .learn-more:hover {
            color: white;
        }
        .book-btn {
    margin-top: 1.2rem;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--color-primary), #38bdf8);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(56, 189, 248, 0.35);
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* Hover effect */
.book-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(56, 189, 248, 0.45);
    background: linear-gradient(135deg, #0ea5e9, var(--color-primary));
}

/* Click effect */
.book-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(56, 189, 248, 0.35);
}

/* Optional focus (accessibility) */
.book-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.35);
}

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-img {
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .check-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
        }

        .check-icon {
            color: var(--color-accent);
            margin-top: 0.25rem;
            margin-right: 0.75rem;
        }

        footer {
            background-color: var(--color-primary);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        /* --- 7. Responsiveness (Media Queries) --- */

        /* Tablet and up */
        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }

            .desktop-menu {
                display: flex;
            }

            .hero-buttons {
                flex-direction: row;
                justify-content: flex-start;
            }

            .trust-box {
                flex-direction: row;
                justify-content: flex-start;
            }

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .card-offset {
                transform: translateY(-1rem);
            }

            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* for mobiles  */
        @media (max-width: 1023px) {
            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        /* Desktop and up */
        @media (min-width: 1024px) {
            .hero-section {
                padding-top: 9rem;
                /* pt-36 equivalent */
            }

            .hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .hero-content-left {
                text-align: left;
                order: 1;
            }

            .hero-content-right {
                order: 2;
                justify-content: flex-end;
            }

            .hero-title {
                font-size: 3.75rem;
                /* text-6xl */
            }

            .hero-description {
                margin-left: 0;
            }
        }

        .logo-icon img {

            max-width: 140%;

        }
         /* Testimonial Section Styling */
     
        #testimonial {
            width: 100%;
            max-width: 600px;
            text-align: center;
            margin: auto;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--color-primary);
        }
        
        .section-desc {
            color: var(--color-text-light);
            margin-bottom: 2rem;
        }

        /* Container for the dynamic sliding effect */
        .testimonial-card-container {
            /* Fixed height is crucial for vertical slide effect */
            height: 300px; 
            overflow: hidden;
            position: relative;
            margin: 0 auto;
            border-radius: 1rem;
            background-color: var(--color-white);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            border-top: 5px solid var(--color-accent);
        }

        #testimonial-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 2rem; /* Matches container padding */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            
            /* Initial state and transition definition */
            transform: translateY(0);
            opacity: 1;
            transition: transform var(--testimonial-slide-duration) ease-in-out, 
                        opacity calc(var(--testimonial-slide-duration) / 3) ease-out;
        }

        /* JavaScript controlled classes for slide effect */
        
        /* Slides the current content out to the top */
        .slide-out {
            transform: translateY(-100%); 
            opacity: 0;
        }
        
        /* Instantly resets new content to the bottom, ready to slide in */
        .slide-reset {
            transform: translateY(100%); 
            opacity: 0;
            transition: none !important; /* Disable transition for instant jump */
        }
        
        /* Content Styling */
        .testimonial-review-text {
            font-size: 1.25rem;
            font-style: italic;
            color: var(--color-primary);
            margin-top: 1rem;
            text-align: left;
        }
        
        .testimonial-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--color-accent);
        }
        
        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            margin-top: 1rem;
            border-top: 1px solid #e5e7eb;
        }
        
        .client-name {
            font-weight: 700;
            color: var(--color-primary);
        }
        
        .client-service {
            font-size: 0.875rem;
            color: var(--color-text-light);
        }
        /* --- Modern Client Review Slider --- */
.modern-review-slider {
    height: 250px; /* Fixed height for the slider viewport */
    max-width: 1000px; /* Adjust as needed */
    margin: 3rem auto; /* Center the slider */
    overflow: hidden; /* This is crucial for the effect */
    position: relative;
    background-color: #d7d7d7;
    border-radius: 12px;
    border: 1px solid var(--dots-border);
    box-shadow: 0 15px 21px #aaa;
}
#testimonial{
     scroll-margin-top: 100px;
}

.modern-review-track {
    /* Animation: name, duration, timing-function, iteration-count */
    /* 20s total = 5 slides * (3s pause + 1s transition) */
    animation: slide-vertical 30s ease-in-out infinite;
}

.modern-review-card {
    height: 250px; /* Each card must match the container's height */
    padding: 2rem 2.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modern-reviewer-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modern-reviewer-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-accent);
    margin-bottom: 1rem;
}

.modern-reviewer-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-body);
}

.modern-review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: black; /* Slightly dimmer text for readability */
    max-width: 800px;
}

/* --- Vertical Sliding Animation (5 slides) --- */
@keyframes slide-vertical {
    /* Start and pause on slide 1 */
    0%, 15% { transform: translateY(0%); }
    
    /* Move to slide 2 and pause */
    20%, 35% { transform: translateY(-17%); }
    
    /* Move to slide 3 and pause */
    40%, 55% { transform: translateY(-33%); }
    
    /* Move to slide 4 and pause */
    60%, 75% { transform: translateY(-50%); }
    
    /* Move to slide 5 and pause */
    80%, 95% { transform: translateY(-67%); }
    
    /* End on the duplicated slide 1 to loop seamlessly */
    100% { transform: translateY(-83%); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .modern-review-slider {
        height: 400px; /* Taller on mobile for better text flow */
    }
    .modern-review-card {
        height: 400px;
        padding: 1.5rem;
    }
    .modern-review-text {
        font-size: 1rem;
    }
}
/* Variables (adjust to match your theme) */
:root {
    --navy-blue: #0a2540;
    --sky-blue: #38bdf8;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
}

/* Contact Section */
#contact-section {
    width: 100%;
    max-width: 1152px;
    margin: auto;
    padding: 3rem 1rem;
    scroll-margin-top: 100px;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-blue);
}

.contact-header p {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Card */
.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Icon */
.icon-wrapper {
    background: rgba(56, 189, 248, 0.2);
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: inline-flex;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--sky-blue);
}

/* Titles */
.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

/* Links */
.contact-link {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-link.phone {
    font-size: 1.5rem;
}

.contact-link.email {
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--sky-blue);
}

/* Small text */
.card-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-icons a {
    font-size: 1.75rem;
    color: var(--navy-blue);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--sky-blue);
    transform: scale(1.1);
}

/* Responsive */
@media (min-width: 768px) {
    .contact-section {
        padding: 3rem 2rem;
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 3rem;
    }
}

/* Map Section */
.map-section {
    background: #f8fafc;
    padding: 5rem 1.5rem 4rem;
}

.map-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.map-header .section-title {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.map-header .section-desc {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Map Container */
.map-wrapper {
    width: 100%;
    max-width: 1100px;
    height: 420px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

/* Responsive Map */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .map-wrapper {
        height: 320px;
        border-radius: 16px;
    }
}


