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

        :root {
            --primary: #C41E1A;
            --primary-dark: #9B1714;
            --primary-light: #FEF2F2;
            --accent: #1A1A1A;
            --accent-light: #F5F5F5;
            --text: #1A1A1A;
            --text-light: #5C5C5C;
            --white: #FFFFFF;
            --off-white: #FAFAFA;
            --border: #ECECEC;
            --shadow: 0 4px 24px rgba(196,30,26,0.06);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);
            --radius: 16px;
            --radius-sm: 10px;
            --font-heading: 'DM Serif Display', Georgia, serif;
            --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
        }

        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== NAV ===== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s;
        }
        .nav.scrolled { box-shadow: var(--shadow); }
        .nav-inner {
            max-width: 1280px; margin: 0 auto;
            padding: 0 32px; height: 72px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .nav-logo {
            width: 48px; height: 48px; border-radius: 12px; overflow: hidden;
            background: #1A1A1A; display: flex; align-items: center; justify-content: center;
            border: 2px solid var(--border);
        }
        .nav-logo img { width: 100%; height: 100%; object-fit: contain; }
        .nav-brand-text { display: flex; flex-direction: column; }
        .nav-brand-name { font-weight: 700; font-size: 16px; color: var(--text); line-height: 1.2; }
        .nav-brand-sub { font-size: 11px; color: var(--text-light); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
        .nav-links { display: flex; gap: 32px; align-items: center; }
        .nav-links a {
            text-decoration: none; color: var(--text-light); font-weight: 500;
            font-size: 14px; transition: color 0.2s; position: relative;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-cta {
            background: var(--primary); color: white !important; padding: 10px 24px;
            border-radius: 50px; font-weight: 600 !important; transition: all 0.3s !important;
        }
        .nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
        .nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .nav-mobile-btn span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

        /* ===== HERO ===== */
        .hero {
            padding: 140px 32px 80px;
            background: linear-gradient(170deg, var(--off-white) 0%, var(--white) 50%, #FFF5F5 100%);
            position: relative; overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute; top: -200px; right: -200px;
            width: 600px; height: 600px; border-radius: 50%;
            background: radial-gradient(circle, rgba(196,30,26,0.04) 0%, transparent 70%);
        }
        .hero::after {
            content: ''; position: absolute; bottom: -100px; left: -100px;
            width: 400px; height: 400px; border-radius: 50%;
            background: radial-gradient(circle, rgba(26,26,26,0.03) 0%, transparent 70%);
        }
        .hero-inner {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
            position: relative; z-index: 1;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--primary-light); border: 1px solid rgba(196,30,26,0.15);
            padding: 8px 18px; border-radius: 50px; font-size: 13px;
            font-weight: 600; color: var(--primary); margin-bottom: 24px;
        }
        .hero-badge::before { content: '★'; }
        .hero h1 {
            font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px);
            line-height: 1.15; color: var(--text); margin-bottom: 20px;
        }
        .hero h1 span { color: var(--primary); }
        .hero-subtitle {
            font-size: 18px; color: var(--text-light); line-height: 1.7;
            margin-bottom: 36px; max-width: 520px;
        }
        .hero-stats { display: flex; gap: 40px; margin-bottom: 40px; }
        .hero-stat-num {
            font-family: var(--font-heading); font-size: 36px;
            color: var(--primary); line-height: 1;
        }
        .hero-stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; margin-top: 4px; }
        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--primary); color: white; padding: 14px 32px;
            border-radius: 50px; font-weight: 600; font-size: 15px;
            text-decoration: none; transition: all 0.3s; border: none; cursor: pointer;
        }
        .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
        .btn-outline {
            display: inline-flex; align-items: center; gap: 8px;
            background: transparent; color: var(--primary); padding: 14px 32px;
            border-radius: 50px; font-weight: 600; font-size: 15px;
            text-decoration: none; border: 2px solid var(--primary); transition: all 0.3s;
        }
        .btn-outline:hover { background: var(--primary); color: white; }

        .hero-visual { position: relative; }
        .hero-owner-card {
            background: white; border-radius: 24px; padding: 32px;
            box-shadow: var(--shadow-lg); text-align: center;
            position: relative; overflow: hidden;
        }
        .hero-owner-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
            background: linear-gradient(135deg, #1A1A1A, #000000);
        }
        .owner-photo {
            width: 150px; height: 150px; border-radius: 50%;
            object-fit: cover; border: 5px solid white;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            position: relative; z-index: 1; margin: 0 auto 16px;
        }
        .owner-name { font-family: var(--font-heading); font-size: 22px; margin-bottom: 4px; }
        .owner-title { font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
        .owner-qual { font-size: 13px; color: var(--text-light); }
        .owner-badge {
            margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
            background: var(--primary-light); padding: 8px 16px; border-radius: 50px;
            font-size: 12px; font-weight: 600; color: var(--primary);
            border: 1px solid rgba(196,30,26,0.15);
        }
        .hero-float-card {
            position: absolute; background: white; border-radius: 16px;
            padding: 16px 20px; box-shadow: var(--shadow);
            display: flex; align-items: center; gap: 12px;
            animation: float 4s ease-in-out infinite;
        }
        .hero-float-card.card-1 { top: 20px; right: -20px; animation-delay: 0s; }
        .hero-float-card.card-2 { bottom: 20px; left: -20px; animation-delay: 2s; }
        .float-icon {
            width: 42px; height: 42px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
        }
        .float-icon.green { background: #E8F5E9; }
        .float-icon.blue { background: #E3F2FD; }
        .float-text-main { font-weight: 700; font-size: 14px; }
        .float-text-sub { font-size: 11px; color: var(--text-light); }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ===== SECTION COMMON ===== */
        .section { padding: 100px 32px; }
        .section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 13px; font-weight: 700; color: var(--primary);
            text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
        }
        .section-label::before, .section-label::after {
            content: ''; width: 24px; height: 2px; background: var(--primary); border-radius: 2px;
        }
        .section-title {
            font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px);
            line-height: 1.2; margin-bottom: 16px;
        }
        .section-desc { font-size: 16px; color: var(--text-light); line-height: 1.7; }

        /* ===== ABOUT ===== */
        .about { background: var(--white); }
        .about-grid {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
        }
        .about-image-wrap { position: relative; }
        .about-image {
            width: 100%; border-radius: 24px; object-fit: cover;
            box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
        }
        .about-accent-box {
            position: absolute; bottom: -20px; right: -20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white; padding: 24px 32px;
            border-radius: 16px; text-align: center;
            box-shadow: 0 8px 24px rgba(196,30,26,0.3);
        }
        .about-accent-num { font-family: var(--font-heading); font-size: 42px; line-height: 1; }
        .about-accent-label { font-size: 13px; opacity: 0.9; margin-top: 4px; }
        .about-content h2 {
            font-family: var(--font-heading); font-size: 36px;
            line-height: 1.2; margin-bottom: 20px;
        }
        .about-content p { color: var(--text-light); margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
        .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
        .about-feature {
            display: flex; align-items: center; gap: 10px;
            padding: 12px 16px; background: var(--primary-light); border-radius: 12px;
            border-left: 3px solid var(--primary);
        }
        .about-feature-icon { font-size: 20px; }
        .about-feature-text { font-size: 14px; font-weight: 600; }

        /* ===== SERVICES ===== */
        .services { background: var(--off-white); }
        .services-grid {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
        }
        .service-card {
            background: white; padding: 28px; border-radius: var(--radius);
            border: 1px solid var(--border); transition: all 0.3s; cursor: default;
        }
        .service-card:hover {
            transform: translateY(-4px); box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .service-icon {
            width: 52px; height: 52px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; margin-bottom: 16px;
            background: var(--primary-light);
        }
        .service-card:nth-child(even) .service-icon { background: var(--accent-light); }
        .service-card:hover { border-color: var(--primary); }
        .service-name { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
        .service-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; }

        /* ===== FACILITIES ===== */
        .facilities { background: var(--white); }
        .facilities-grid {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
        }
        .facility-card {
            padding: 32px; border-radius: var(--radius);
            background: linear-gradient(135deg, var(--primary-light), var(--white));
            border: 1px solid var(--border); transition: all 0.3s;
        }
        .facility-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
        .facility-icon { font-size: 32px; margin-bottom: 16px; }
        .facility-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
        .facility-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }

        /* ===== DOCTORS ===== */
        .doctors { background: var(--off-white); }
        .doctors-grid {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px;
        }
        .doctor-card {
            background: white; border-radius: var(--radius); padding: 28px 20px;
            text-align: center; border: 1px solid var(--border); transition: all 0.3s;
        }
        .doctor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .doctor-avatar {
            width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            display: flex; align-items: center; justify-content: center;
            color: white; font-family: var(--font-heading); font-size: 28px;
        }
        .doctor-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
        .doctor-qual { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
        .doctor-spec {
            display: inline-block; font-size: 11px; font-weight: 600;
            color: var(--primary); background: var(--primary-light);
            padding: 4px 12px; border-radius: 50px;
        }

        /* ===== INSURANCE ===== */
        .insurance {
            background: linear-gradient(135deg, #1A1A1A, #000000);
            color: white;
        }
        .insurance .section-label { color: var(--primary); }
        .insurance .section-label::before, .insurance .section-label::after { background: var(--primary); }
        .insurance .section-title { color: white; }
        .insurance .section-desc { color: rgba(255,255,255,0.8); }
        .insurance-grid {
            max-width: 900px; margin: 0 auto;
            display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
        }
        .insurance-badge {
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
            padding: 14px 28px; border-radius: 50px; font-weight: 600;
            font-size: 14px; backdrop-filter: blur(10px); transition: all 0.3s;
        }
        .insurance-badge:hover { background: rgba(196,30,26,0.3); border-color: var(--primary); transform: translateY(-2px); }

        /* ===== CONTACT ===== */
        .contact { background: var(--white); }
        .contact-grid {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
        }
        .contact-info { display: flex; flex-direction: column; gap: 28px; }
        .contact-item { display: flex; gap: 16px; }
        .contact-icon {
            width: 52px; height: 52px; border-radius: 14px;
            background: var(--primary-light); display: flex; align-items: center;
            justify-content: center; font-size: 22px; flex-shrink: 0;
        }
        .contact-label { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
        .contact-value { font-weight: 600; font-size: 16px; }
        .contact-value a { color: var(--primary); text-decoration: none; }
        .contact-map {
            border-radius: var(--radius); overflow: hidden;
            box-shadow: var(--shadow); min-height: 360px;
        }
        .contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 360px; }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: var(--primary-light); padding: 60px 32px;
            text-align: center; border-top: 3px solid var(--primary);
        }
        .cta-inner { max-width: 700px; margin: 0 auto; }
        .cta-inner h2 { font-family: var(--font-heading); font-size: 32px; margin-bottom: 12px; }
        .cta-inner p { color: var(--text-light); margin-bottom: 28px; }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--text); color: rgba(255,255,255,0.7); padding: 60px 32px 32px;
        }
        .footer-inner {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
        }
        .footer-brand { }
        .footer-brand-name { color: white; font-family: var(--font-heading); font-size: 22px; margin-bottom: 12px; }
        .footer-brand p { font-size: 14px; line-height: 1.6; }
        .footer-col-title { color: white; font-weight: 700; font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
        .footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
        .footer-col a:hover { color: white; }
        .footer-bottom {
            max-width: 1280px; margin: 40px auto 0; padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex; justify-content: space-between; align-items: center;
            font-size: 13px; flex-wrap: wrap; gap: 12px;
        }
        .footer-bottom a { color: var(--primary); text-decoration: none; }

        /* ===== LEAD FORM ===== */
        .lead-form-section {
            padding: 100px 32px;
            background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .lead-form-section::before {
            content: ''; position: absolute; top: -100px; right: -100px;
            width: 400px; height: 400px; border-radius: 50%;
            background: radial-gradient(circle, rgba(196,30,26,0.08) 0%, transparent 70%);
        }
        .lead-form-inner {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
            position: relative; z-index: 1;
        }
        .lead-form-content h2 {
            font-family: var(--font-heading); font-size: clamp(32px, 4vw, 48px);
            line-height: 1.2; margin-bottom: 20px; color: white;
        }
        .lead-form-content h2 span { color: var(--primary); }
        .lead-form-content p {
            font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7;
            margin-bottom: 32px;
        }
        .lead-form-benefits { display: flex; flex-direction: column; gap: 16px; }
        .lead-benefit {
            display: flex; align-items: center; gap: 12px;
            font-size: 15px; color: rgba(255,255,255,0.9);
        }
        .lead-benefit-icon {
            width: 32px; height: 32px; border-radius: 8px;
            background: rgba(196,30,26,0.2); border: 1px solid rgba(196,30,26,0.3);
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; flex-shrink: 0;
        }
        .lead-form-card {
            background: white; border-radius: 24px; padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .lead-form-title {
            font-family: var(--font-heading); font-size: 28px;
            margin-bottom: 8px; color: var(--text);
        }
        .form-title {
            font-family: var(--font-heading); font-size: 28px;
            margin-bottom: 8px; color: var(--text);
        }
        .form-subtitle {
            font-size: 14px; color: var(--text-light); margin-bottom: 32px;
        }
        .lead-form-subtitle {
            font-size: 14px; color: var(--text-light); margin-bottom: 32px;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
        .form-group { margin-bottom: 16px; }
        .form-group.full-width { grid-column: 1 / -1; }
        .form-label {
            display: block; font-size: 13px; font-weight: 600;
            color: var(--text); margin-bottom: 6px;
        }
        .form-label span { color: var(--primary); }
        .form-input, .form-select, .form-textarea {
            width: 100%; padding: 12px 16px; border: 2px solid var(--border);
            border-radius: 10px; font-family: var(--font-body); font-size: 14px;
            color: var(--text); background: white; transition: all 0.3s;
        }
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none; border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(196,30,26,0.1);
        }
        .form-input.error, .form-select.error, .form-textarea.error {
            border-color: #E53E3E;
        }
        .form-textarea { resize: vertical; min-height: 100px; }
        .form-select { cursor: pointer; }
        .form-error {
            display: none; font-size: 12px; color: #E53E3E;
            margin-top: 4px; font-weight: 500;
        }
        .form-error.visible { display: block; }
        .form-submit {
            width: 100%; padding: 14px 32px; background: var(--primary);
            color: white; border: none; border-radius: 50px; font-weight: 700;
            font-size: 15px; cursor: pointer; transition: all 0.3s;
            margin-top: 8px;
        }
        .form-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,30,26,0.3); }
        .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .captcha-container {
            display: flex; align-items: center; gap: 12px;
            padding: 12px 16px; background: #F9FAFB; border-radius: 10px;
            border: 2px solid var(--border);
        }
        .captcha-question {
            font-weight: 700; font-size: 16px; color: var(--text);
            background: white; padding: 8px 16px; border-radius: 8px;
            border: 1px solid var(--border); min-width: 100px; text-align: center;
            font-family: 'Courier New', monospace; letter-spacing: 2px;
        }
        .captcha-input {
            width: 100px !important; padding: 10px 12px !important;
            text-align: center; font-size: 16px !important;
        }
        .captcha-refresh {
            background: white; border: 1px solid var(--border); border-radius: 8px;
            width: 40px; height: 40px; font-size: 20px; cursor: pointer;
            transition: all 0.3s; display: flex; align-items: center; justify-content: center;
        }
        .captcha-refresh:hover { background: var(--primary); color: white; border-color: var(--primary); }
        .form-success {
            display: none; text-align: center; padding: 40px 20px;
        }
        .form-success.visible { display: block; }
        .form-success-icon {
            width: 64px; height: 64px; border-radius: 50%;
            background: #E8F5E9; margin: 0 auto 20px;
            display: flex; align-items: center; justify-content: center;
            font-size: 32px;
        }
        .form-success h3 {
            font-family: var(--font-heading); font-size: 24px;
            margin-bottom: 12px; color: var(--text);
        }
        .form-success p {
            font-size: 15px; color: var(--text-light); line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .lead-form-inner { grid-template-columns: 1fr; gap: 48px; }
            .lead-form-card { max-width: 500px; margin: 0 auto; }
        }
        @media (max-width: 640px) {
            .form-row { grid-template-columns: 1fr; }
            .lead-form-card { padding: 28px 20px; }
        }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.visible { opacity: 1; transform: translateY(0); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr; gap: 48px; }
            .hero-visual { max-width: 420px; margin: 0 auto; }
            .about-grid { grid-template-columns: 1fr; gap: 48px; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-mobile-btn { display: block; }
            .hero { padding: 120px 20px 60px; }
            .hero-stats { gap: 24px; }
            .hero-float-card { display: none; }
            .section { padding: 60px 20px; }
            .about-features { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
        @media (max-width: 480px) {
            .hero-actions { flex-direction: column; }
            .btn-primary, .btn-outline { width: 100%; justify-content: center; }
        }
.gallery{
    padding: 50px 0;
    background:#fff;
    text-align: center;
}

.gallery-grid{
    max-width: 1280px;
    margin: 0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-grid{
    column-count:4;
    column-gap:20px;
}

.gallery-item{
    break-inside:avoid;
    margin-bottom:20px;
}

.gallery-item img{
    width:100%;
    border-radius:18px;
}

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

@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }
}