        /* ===== Premium Info Cards with Dotted Borders ===== */
        .info-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px dashed rgba(191, 148, 86, 0.25);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .info-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--bs-primary), #d4a95a, var(--bs-primary));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .info-card:hover::after {
            transform: scaleX(1);
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(191, 148, 86, 0.18);
            border-color: var(--bs-primary);
            border-style: solid;
        }

        .info-card .icon-box {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bs-primary), #d4a95a);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            box-shadow: 0 8px 25px rgba(191, 148, 86, 0.3);
            transition: transform 0.4s ease;
        }

        .info-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
        }

        .info-card .icon-box i {
            font-size: 1.5rem;
            color: #fff;
        }

        .info-card h5 {
            font-family: "Playfair Display", serif;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--bs-dark);
        }

        .info-card p {
            font-size: 0.88rem;
            color: #666;
            margin-bottom: 0;
            line-height: 1.7;
        }

        /* ===== Credentials Badge ===== */
        /* ===== Appointment Row Hover ===== */
        .appt-row:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11) !important;
        }

        .credential-badge {
            display: inline-block;
            background: rgba(191, 148, 86, 0.08);
            border: 2px dashed rgba(191, 148, 86, 0.3);
            border-radius: 50px;
            padding: 0.4rem 1.1rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--bs-primary);
            margin: 0.2rem;
            transition: all 0.3s ease;
        }

        .credential-badge:hover {
            background: var(--bs-primary);
            color: #fff;
            border-style: solid;
        }

        /* ===== Schedule Card ===== */
        .schedule-card {
            background: linear-gradient(135deg, var(--bs-dark), #333);
            border-radius: 16px;
            padding: 2.5rem;
            color: #fff;
            position: relative;
            overflow: hidden;
            border: 2px dashed rgba(191, 148, 86, 0.3);
        }

        .schedule-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(191, 148, 86, 0.15);
        }

        .schedule-card::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(191, 148, 86, 0.1);
        }

        .schedule-card h3 {
            font-family: "Playfair Display", serif;
            color: var(--bs-primary);
            margin-bottom: 1.5rem;
        }

        .schedule-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
        }

        .schedule-item:last-child {
            border-bottom: none;
        }

        .schedule-item i {
            color: var(--bs-primary);
            margin-right: 1rem;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        /* ===== Specialization Cards ===== */
        .spec-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 2px dashed rgba(191, 148, 86, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
        }

        .spec-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background: var(--bs-primary);
            border-radius: 0 0 4px 4px;
            transition: width 0.4s ease;
        }

        .spec-card:hover::before {
            width: 100%;
        }

        .spec-card:hover {
            border-color: var(--bs-primary);
            border-style: solid;
            box-shadow: 0 20px 50px rgba(191, 148, 86, 0.15);
            transform: translateY(-8px);
        }

        .spec-card .spec-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            border: 2px dashed var(--bs-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.4s ease;
        }

        .spec-card:hover .spec-icon {
            background: var(--bs-primary);
            border-style: solid;
        }

        .spec-card .spec-icon i {
            font-size: 1.5rem;
            color: var(--bs-primary);
            transition: color 0.4s ease;
        }

        .spec-card:hover .spec-icon i {
            color: #fff;
        }

        .spec-card h5 {
            font-family: "Playfair Display", serif;
            font-weight: 500;
            color: var(--bs-dark);
        }

        .spec-card p {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 0;
        }

        /* ===== Qualification Detail Cards ===== */
        .qual-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.8rem;
            border: 2px dashed rgba(191, 148, 86, 0.2);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .qual-card:hover {
            border-color: var(--bs-primary);
            border-style: solid;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(191, 148, 86, 0.12);
        }

        .qual-card .qual-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(191, 148, 86, 0.15), rgba(191, 148, 86, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .qual-card:hover .qual-icon {
            background: linear-gradient(135deg, var(--bs-primary), #d4a95a);
        }

        .qual-card .qual-icon i {
            color: var(--bs-primary);
            font-size: 1.2rem;
            transition: color 0.4s ease;
        }

        .qual-card:hover .qual-icon i {
            color: #fff;
        }

        .qual-card h6 {
            font-family: "Playfair Display", serif;
            color: var(--bs-dark);
            margin-bottom: 0.25rem;
        }

        .qual-card p {
            font-size: 0.82rem;
            color: #777;
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* ===== Experience Banner ===== */
        .exp-banner {
            background: linear-gradient(135deg, var(--bs-primary), #d4a95a);
            border-radius: 16px;
            padding: 2.5rem;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .exp-banner::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 3px dashed rgba(255, 255, 255, 0.2);
        }

        .exp-banner h4 {
            font-family: "Playfair Display", serif;
        }

        .exp-banner .exp-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .exp-banner .exp-item i {
            width: 22px;
            text-align: center;
        }

        /* ===== Doctor Title Sub ===== */
        .doctor-title-sub {
            font-size: 1.1rem;
            color: var(--bs-primary);
            letter-spacing: 2px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .doctor-title-sub {
                margin-top: 2rem;
            }
        }

        /* ===== Testimonial User Icon ===== */
        .testimonial-user-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bs-primary), #d4a95a);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0;
            box-shadow: 0 6px 20px rgba(191, 148, 86, 0.3);
        }

        .testimonial-user-icon i {
            font-size: 2rem;
            color: #fff;
        }

        /* ===== Testimonial Card Redesign ===== */
        .testimonial-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.5rem 1.5rem;
            border: 2px dashed rgba(191, 148, 86, 0.2);
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            margin-top: 40px;
        }

        .testimonial-card:hover {
            border-style: solid;
            border-color: var(--bs-primary);
            box-shadow: 0 20px 50px rgba(191, 148, 86, 0.15);
            transform: translateY(-5px);
        }

        .testimonial-card .tc-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bs-primary), #d4a95a);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -60px auto 1rem;
            box-shadow: 0 6px 20px rgba(191, 148, 86, 0.35);
            border: 4px solid #fff;
        }

        .testimonial-card .tc-avatar i {
            font-size: 1.8rem;
            color: #fff;
        }

        .testimonial-card .tc-stars {
            color: #f5c518;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            letter-spacing: 2px;
        }

        .testimonial-card .tc-quote {
            position: relative;
            font-size: 0.88rem;
            color: #555;
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 1.2rem;
            padding: 0 0.5rem;
        }

        .testimonial-card .tc-quote::before {
            content: '\201C';
            font-size: 3rem;
            color: var(--bs-primary);
            opacity: 0.3;
            position: absolute;
            top: -15px;
            left: -5px;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-card .tc-divider {
            width: 40px;
            height: 2px;
            background: var(--bs-primary);
            margin: 0 auto 0.75rem;
            border-radius: 2px;
        }

        .testimonial-card .tc-name {
            font-family: "Playfair Display", serif;
            font-weight: 500;
            color: var(--bs-dark);
            font-size: 1.05rem;
            margin-bottom: 0.3rem;
        }

        .testimonial-card .tc-role {
            display: inline-block;
            background: rgba(191, 148, 86, 0.1);
            border: 1px dashed rgba(191, 148, 86, 0.3);
            border-radius: 50px;
            padding: 0.2rem 0.8rem;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--bs-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== Hero Slider Image ===== */
        .header-carousel .owl-item img {
            width: 100%;
            height: 100%;
            min-height: 500px;
            object-fit: cover;
            object-position: center;
        }

        @media (min-width: 992px) {

            .header-carousel,
            .header-carousel .owl-stage-outer,
            .header-carousel .owl-stage,
            .header-carousel .owl-item {
                height: 100%;
            }

            .hero-header .col-lg-6:last-child {
                min-height: 550px;
            }
        }

        @media (max-width: 991px) {

            /* Carousel: collapse height to image only, no extra space */
            .header-carousel {
                position: relative;
                height: auto !important;
                line-height: 0;
            }

            .header-carousel .owl-stage-outer,
            .header-carousel .owl-stage,
            .header-carousel .owl-item {
                height: auto !important;
            }

            /* Fixed image size */
            .header-carousel .owl-item img {
                width: 100%;
                height: auto !important;
                min-height: unset !important;
                object-fit: unset !important;
                display: block;
            }

            /* Overlay dots ON the image so they add zero height */
            .header-carousel .owl-dots {
                position: absolute;
                bottom: 8px;
                left: 0;
                width: 100%;
                text-align: center;
                margin: 0 !important;
                line-height: 1;
            }

            /* Remove ALL padding gap between image and text */
            .hero-header-text {
                padding-top: 0 !important;
                padding-bottom: 0 !important;
            }

            .hero-header-text>div {
                padding-top: 0 !important;
                padding-bottom: 1rem !important;
            }

            /* Add spacing between navbar and title on mobile */
            .doctor-title-sub {
                margin-top: 1.5rem !important;
            }
        }

        @media (max-width: 575px) {
            .header-carousel .owl-item img {
                height: auto !important;
                object-fit: unset !important;
            }
        }




















































       

        /* hero container premium spacing */
        .hero1 {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            padding: 60px 40px;
            position: relative;
        }

        /* animated fade-up base */
        @keyframes hero2 {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        .hero3 {
            opacity: 0;
            animation: hero2 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
        }
        .hero4 { animation-delay: 0.1s; }
        .hero5 { animation-delay: 0.2s; }
        .hero6 { animation-delay: 0.35s; }
        .hero7 { animation-delay: 0.5s; }
        .hero8 { animation-delay: 0.65s; }

        .hero9 {
            flex: 1;
            max-width: 600px;
            order: 1;
        }
        .hero10 {
            flex: 0 0 480px;
            position: relative;
            order: 2;
        }

        /* premium badges */
        .hero11 {
            display: flex;
            gap: 12px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        .hero12 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(184, 134, 11, 0.25);
            background: rgba(184, 134, 11, 0.04);
            color: #b8860b;
            backdrop-filter: blur(2px);
            transition: all 0.3s ease;
        }
        .hero12:hover {
            border-color: #b8860b;
            background: rgba(184, 134, 11, 0.1);
            transform: translateY(-2px);
        }
        .hero13 {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d4a373;
            animation: hero14 1.8s infinite;
        }
        @keyframes hero14 {
            0% { opacity: 0.4; transform: scale(0.8);}
            100% { opacity: 1; transform: scale(1.2);}
        }

        /* heading luxury gradient */
        .hero15 {
            font-size: clamp(42px, 7vw, 70px);
            line-height: 1.08;
            font-weight: 800;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .hero16 {
            background: linear-gradient(135deg, #b8860b, #e2b87a);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
        }
        .hero17::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100%;
            height: 14px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20'%3E%3Cpath d='M0,10 Q75,0 150,10 T300,10' stroke='%23b8860b' stroke-width='3' fill='none' stroke-dasharray='6 6' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            animation: hero18 5s infinite linear;
        }
        @keyframes hero18 {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero19 {
            font-size: 18px;
            color: #4a4a4a;
            line-height: 1.6;
            margin-bottom: 36px;
            font-weight: 450;
        }

        /* stats cards premium */
        .hero20 {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .hero21 {
            flex: 1;
            min-width: 100px;
            padding: 22px 16px;
            border: none;
            border-radius: 28px;
            background: #ffffff;
            box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
            text-align: center;
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: default;
        }
        .hero21:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 40px -12px rgba(184, 134, 11, 0.15), 0 0 0 1px rgba(184, 134, 11, 0.1);
        }
        .hero21 .hero22 {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(145deg, #b8860b, #8b6508);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 8px;
        }
        .hero21 .hero23 {
            font-size: 13px;
            color: #6c6c6c;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* premium buttons */
        .hero24 {
            display: flex;
            gap: 18px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        .hero25 {
            padding: 16px 34px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
            font-family: inherit;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .hero26 {
            background: linear-gradient(105deg, #b8860b, #d4a373);
            color: #fff;
            box-shadow: 0 8px 20px rgba(184, 134, 11, 0.25);
        }
        .hero26::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5));
            transition: left 0.45s ease;
            z-index: -1;
        }
        .hero26:hover::before { left: 100%; }
        .hero26:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 28px rgba(184, 134, 11, 0.35);
        }
        .hero27 {
            background: #ffffff;
            border: 1px solid #e2e2e2;
            color: #1e1e1e;
        }
        .hero27:hover {
            border-color: #b8860b;
            background: #fffbf5;
            transform: translateY(-2px);
        }
        .hero28 {
            font-size: 14px;
            color: #5a5a5a;
            margin-bottom: 28px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f8f6f2;
            padding: 8px 20px;
            border-radius: 60px;
            font-weight: 500;
            transition: all 0.2s;
        }
        .hero29 {
            display: flex;
            gap: 20px;
            font-size: 12px;
            font-weight: 500;
            color: #8a8a8a;
            margin-top: 20px;
            flex-wrap: wrap;
            border-top: 1px solid #f0ebe2;
            padding-top: 28px;
        }

        /* ============================================ */
        /*   PREMIUM IMAGE SECTION - CINEMATIC & LUXURY  */
        /* ============================================ */
        .hero10 {
            position: relative;
            perspective: 1200px;
        }
        
        /* main image container with organic double border + glassmorphism glow */
        .hero30 {
            position: relative;
            width: 100%;
            padding: 14px;
            border-radius: 70px 50px 65px 85px / 55px 70px 85px 60px;
            background: radial-gradient(circle at 30% 20%, rgba(184,134,11,0.08), rgba(255,245,225,0.4));
            backdrop-filter: blur(2px);
            transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
            animation: hero31 5s ease-in-out infinite;
            cursor: pointer;
        }
        
        @keyframes hero31 {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-7px) rotate(0.4deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        
        /* inner image frame with premium shadow & organic shape */
        .hero32 {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5;
            background: #eae5dd;
            border-radius: 58px 38px 50px 72px / 42px 58px 72px 50px;
            overflow: hidden;
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.3), inset 0 1px 2px rgba(255,255,255,0.3);
            transition: all 0.6s ease;
        }
        
        /* elegant glowing border effect on hover */
        .hero30::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 72px 52px 67px 87px / 57px 72px 87px 62px;
            padding: 2px;
            background: linear-gradient(125deg, #b8860b, #f3d9a4, #b8860b);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        
        .hero30:hover::before {
            opacity: 0.7;
        }
        
        .hero32 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s cubic-bezier(0.2, 0.95, 0.4, 1.1), filter 0.4s ease;
            filter: brightness(1.02) contrast(1.02);
        }
        
        /* dynamic hover zoom & shine */
        .hero30:hover .hero32 img {
            transform: scale(1.05);
            filter: brightness(1.05) contrast(1.04);
        }
        
        /* luxury spotlight effect */
        .hero30::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,245,200,0.3), transparent);
            transform: skewX(-15deg);
            transition: left 0.7s ease;
            pointer-events: none;
            border-radius: inherit;
        }
        
        .hero30:hover::after {
            left: 150%;
        }
        
        /* decorative ring / accent behind image (premium aura) */
        .hero10 .hero33 {
            position: absolute;
            top: 15%;
            left: 10%;
            width: 85%;
            height: 80%;
            background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, rgba(184,134,11,0) 70%);
            border-radius: 60% 40% 50% 70% / 50% 60% 70% 40%;
            filter: blur(20px);
            z-index: -1;
            animation: hero34 6s infinite alternate;
            pointer-events: none;
        }
        
        @keyframes hero34 {
            0% { opacity: 0.3; transform: scale(0.95);}
            100% { opacity: 0.7; transform: scale(1.05);}
        }
        
        /* subtle reflection effect on image inner */
        .hero32::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
            pointer-events: none;
            border-radius: 0 0 50px 50px;
        }
        
        /* responsive adjustments */
        @media (max-width: 880px) {
            .hero1 {
                flex-direction: column;
                text-align: center;
                gap: 40px;
                padding: 32px 24px;
            }
            .hero9 { order: 2; align-items: center; }
            .hero10 { order: 1; max-width: 380px; margin: 0 auto; flex: 0 0 auto; }
            .hero11, .hero20, .hero24 { justify-content: center; }
            .hero30 { animation: none; }
            .hero30::after { display: none; }
            .hero10 .hero33 { display: none; }
        }
        
        @media (max-width: 550px) {
            .hero1 { padding: 24px 18px; gap: 32px; }
            .hero21 .hero22 { font-size: 24px; }
            .hero25 { width: 100%; }
            .hero24 { flex-direction: column; width: 100%; }
        }
        
        .hero35 {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.85s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.85s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .hero35.hero36 {
            opacity: 1;
            transform: translateY(0);
        }





































               :root {
            --primary: #BF9456;
            --primary-dark: #9A7540;
            --primary-light: #D4B07A;
            --primary-glow: rgba(191, 148, 86, 0.35);
            --text-dark: #1A1410;
            --text-mid: #5C4A38;
            --text-light: #9A8774;
            --white: #FFFAF5;
            --card-bg: rgba(255, 250, 245, 0.06);
            --border: rgba(191, 148, 86, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .after1 {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 60px 24px 80px;
        }

        .after2 {
            text-align: center;
            margin-bottom: 50px;
        }

        .after3 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(191,148,86,0.12), rgba(191,148,86,0.06));
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 8px 22px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .after3 i {
            font-size: 10px;
        }

        .after4 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 5vw, 58px);
            font-weight: 900;
            color: var(--text-dark);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .after5 {
            color: var(--primary);
            position: relative;
        }

        .after5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 100%;
            height: 6px;
            background: var(--primary-glow);
            border-radius: 3px;
            z-index: -1;
        }

        .after6 {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto 50px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 4px 20px rgba(191, 148, 86, 0.1),
                0 20px 60px rgba(26, 20, 16, 0.12),
                0 0 0 1px var(--border);
        }

        .after6 img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 16/10;
            object-fit: cover;
            user-select: none;
            -webkit-user-drag: none;
        }

        .after7 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            clip-path: inset(0 50% 0 0);
            transition: clip-path 0.02s ease-out;
        }

        .after8 {
            position: absolute;
            top: 0;
            left: 50%;
            width: 3px;
            height: 100%;
            background: var(--white);
            transform: translateX(-50%);
            z-index: 10;
            box-shadow:
                0 0 12px rgba(191, 148, 86, 0.5),
                0 0 30px rgba(191, 148, 86, 0.2);
            pointer-events: none;
        }

        .after8::before,
        .after8::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, var(--white));
            border-radius: 2px;
        }

        .after8::before {
            top: 0;
            background: linear-gradient(to bottom, var(--white), transparent);
        }

        .after8::after {
            bottom: 0;
            background: linear-gradient(to top, var(--white), transparent);
        }

        .after9 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 20;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--primary);
            cursor: ew-resize;
            box-shadow:
                0 2px 10px rgba(0,0,0,0.15),
                0 0 20px var(--primary-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .after9:hover {
            transform: translate(-50%, -50%) scale(1.12);
            box-shadow:
                0 4px 16px rgba(0,0,0,0.2),
                0 0 30px var(--primary-glow);
        }

        .after10 {
            font-size: 12px;
            color: var(--primary);
            font-weight: 900;
        }

        .after11 {
            position: absolute;
            top: 16px;
            z-index: 15;
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .after12 {
            left: 16px;
            background: rgba(26, 20, 16, 0.6);
            color: rgba(255,255,255,0.8);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .after13 {
            right: 16px;
            background: rgba(191, 148, 86, 0.85);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.2);
        }

        @media (max-width: 700px) {

            .after1 {
                padding: 40px 16px 60px;
            }

            .after9 {
                width: 44px;
                height: 44px;
            }

            .after11 {
                font-size: 10px;
                padding: 6px 14px;
            }

        }

        @keyframes after14 {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .after2 {
            animation: after14 0.7s ease both;
        }

        .after6 {
            animation: after14 0.7s 0.15s ease both;
        }

        @media (prefers-reduced-motion: reduce) {

            .after1 *,
            .after1 *::before,
            .after1 *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }

        }