/********** Template CSS **********/
:root {
    --primary: #0463FA;
    --light: #EFF5FF;
    --dark: #1B2C51;
}

/* Fix horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    position: relative;
}

/* Ensure containers don't overflow */
.container, .container-fluid, .row {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}




/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 3rem;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: url(../img/header-page.jpg) top center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item {
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 40px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}




































:root {
  --primary: #0463FA;
  --primary-dark: #0345C0;
  --primary-light: #3A7EF5;
  --primary-lighter: #6B9AFA;
  --primary-lightest: #9BB8FA;
  --primary-bg: rgba(4, 99, 250, 0.08);
  --primary-bg-hover: rgba(4, 99, 250, 0.12);
  --dark: #0F172A;
  --light: #FFFFFF;
  --gray: #64748B;
  --light-gray: #F1F5F9;
  --card-shadow: 0 10px 30px rgba(4, 99, 250, 0.08);
  --card-shadow-hover: 0 20px 40px rgba(4, 99, 250, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}









































        .appoA1 {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 20px;
            max-width: 1100px;
            width: 100%;
            background: transparent;
            margin: 20px auto;
            padding: 20px;
        }

        .appoA2 {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .appoA3 {
            background: #fff;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            text-decoration: none;
            color: #333;
            border-left: 5px solid #0463FA;
            transition: transform 0.2s;
        }

        .appoA3:hover {
            transform: translateY(-2px);
        }

        .appoA4 {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .appoA5 {
            width: 45px;
            height: 45px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            background-color: #0463FA;
        }

        .appoA6 {
            display: flex;
            flex-direction: column;
        }

        .appoA7 {
            font-size: 11px;
            text-transform: uppercase;
            color: #888;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .appoA8 {
            font-size: 16px;
            font-weight: 500;
            color: #222;
        }

        .appoA9 {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #0463FA;
            background: rgba(4, 99, 250, 0.1);
        }

        /* --- Modern Light Styled Consultation Box --- */
        .appoA10 {
            background: #ffffff;
            color: #333;
            padding: 25px;
            border-radius: 6px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-top: 4px solid #0463FA;
        }

        .appoA11 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a1a1a;
            letter-spacing: 0.5px;
        }
        
        .appoA11 i {
            color: #0463FA;
            font-size: 20px;
        }

        /* Deep Border Added Here */
        .appoA12 {
            background: #f8fafc;
            border: 2px solid #cbd5e1;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: all 0.3s;
        }

        .appoA12:hover {
            background: #f1f5f9;
            border-color: #0463FA;
        }

        .appoA13 {
            font-size: 14px;
            line-height: 1.5;
            color: #334155;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .appoA13 i {
            color: #0463FA;
            margin-top: 3px;
            font-size: 14px;
        }

        .appoA13 strong {
            color: #0f172a;
            font-weight: 600;
        }

        .appoA13 span {
            display: inline-block;
            font-size: 12px;
            color: #0463FA;
            background: rgba(4, 99, 250, 0.08);
            border: 1px solid rgba(4, 99, 250, 0.2);
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 500;
            margin-top: 6px;
            align-self: flex-start;
        }

        .appoA14 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #0463FA;
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 700;
            width: 100%;
            margin-top: 10px;
            letter-spacing: 0.5px;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 4px 12px rgba(4, 99, 250, 0.2);
        }

        .appoA14:hover {
            background: #0352ce;
            transform: translateY(-1px);
        }

        .appoA15 {
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: relative;
            min-height: 500px;
        }

        .appoA16 {
            width: 100%;
            height: 100%;
            border: none;
            position: absolute;
            top: 0;
            left: 0;
        }

        @media (max-width: 768px) {
            .appoA1 {
                grid-template-columns: 1fr;
            }
            .appoA15 {
                min-height: 350px;
            }
        }














































 :root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --primary-light: #e8f0fe;
            --secondary: #00695c;
            --accent: #ff6d00;
            --light: #f8fafc;
            --white: #ffffff;
            --dark: #202124;
            --gray: #5f6368;
            --light-gray: #e8eaed;
            --border: #dadce0;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
            --glass: rgba(255, 255, 255, 0.25);
        }
        
    
        
        .abo1 {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        .abo2 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
            background: 
                radial-gradient(circle at 20% 80%, rgba(26, 115, 232, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 105, 92, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 109, 0, 0.05) 0%, transparent 50%);
        }
        
        .abo3 {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(10px);
            animation: abo4 20s infinite ease-in-out;
        }
        
        .abo5 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .abo6 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            animation-delay: 5s;
        }
        
        .abo7 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 50%;
            animation-delay: 10s;
        }
        
        @keyframes abo4 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }
        
       










.abo8 {
    max-width: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5px;
    position: relative;
    z-index: 1;
}










        
        
        /* News Article Style Doctor Introduction */
        .doctor-images-wrapper {
            position: relative;
            padding: 0;
        }
        
        .doctor-images-wrapper .main-image {
            position: relative;
            z-index: 1;
        }
        
        .doctor-images-wrapper .main-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .doctor-images-wrapper .overlay-image {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            z-index: 2;
            border: 5px solid white;
        }
        
        .doctor-images-wrapper .overlay-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .doctor-info-content {
            padding-left: 0;
            padding-right: 0;
        }
        
        .doctor-name {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1B2C51;
            margin-bottom: 0.5rem;
        }
        
        /* Roadmap Style Info Boxes */
        .info-roadmap {
            margin-top: 15px;
            position: relative;
        }
        
        .roadmap-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            padding: 15px;
            background: white;
            border: 2px solid #e8f1ff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(4, 99, 250, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .roadmap-box::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, #0463FA, #06b6d4);
            border-radius: 12px 0 0 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .roadmap-box:hover {
            border-color: #0463FA;
            box-shadow: 0 8px 25px rgba(4, 99, 250, 0.15);
            transform: translateY(-3px);
        }
        
        .roadmap-box:hover::before {
            opacity: 1;
        }
        
        .roadmap-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, #0463FA, #06b6d4);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 5px 15px rgba(4, 99, 250, 0.3);
        }
        
        .roadmap-icon i {
            font-size: 22px;
            color: white;
        }
        
        .roadmap-content {
            flex: 1;
        }
        
        .roadmap-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1B2C51;
            margin-bottom: 8px;
        }
        
        .roadmap-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 5px;
        }
        
        .roadmap-content p:last-child {
            margin-bottom: 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .doctor-info-content {
                padding-left: 0;
                padding-right: 0;
                margin-top: 15px;
            }
            
            .doctor-images-wrapper .overlay-image {
                display: none !important;
            }
            
            .doctor-name {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .roadmap-box {
                padding: 12px;
                margin-bottom: 8px;
            }
            
            .roadmap-icon {
                width: 45px;
                height: 45px;
                min-width: 45px;
                margin-right: 12px;
            }
            
            .roadmap-icon i {
                font-size: 20px;
            }
            
            .roadmap-title {
                font-size: 1.1rem;
            }
            
            .doctor-name {
                font-size: 1.75rem;
            }
        }
        
        .abo9 {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }
        
        .abo10 {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .abo10.abo11 {
            opacity: 1;
            transform: translateY(0);
        }
        
        .abo12 {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .abo12.abo11 {
            opacity: 1;
            transform: translateX(0);
        }
        
        .abo13 {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .abo13.abo11 {
            opacity: 1;
            transform: translateX(0);
        }
        
        .abo14 {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .abo14.abo11 {
            opacity: 1;
            transform: scale(1);
        }
        
        .abo15 {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 50px;
            margin: 30px auto;
            box-shadow: 
                0 20px 40px rgba(31, 38, 135, 0.1),
                0 10px 20px rgba(31, 38, 135, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            animation: abo16 1s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        @keyframes abo16 {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .abo15::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            pointer-events: none;
        }
        
        .abo15::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
            background-size: 300% 100%;
            animation: abo17 8s ease infinite;
        }
        
        @keyframes abo17 {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .abo18 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .abo18 {
                grid-template-columns: 300px 1fr;
            }
        }
        
        .abo19 {
            position: relative;
        }
        
        .abo20 {
            width: 280px;
            height: 280px;
            border-radius: 25px;
            overflow: hidden;
            margin: 0 auto;
            box-shadow: 
                0 20px 40px rgba(31, 38, 135, 0.2),
                0 10px 20px rgba(31, 38, 135, 0.1);
            position: relative;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border: 3px solid rgba(255, 255, 255, 0.3);
        }
        
        .abo20 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .abo20:hover img {
            transform: scale(1.08);
        }
        
        .abo22 {
            position: absolute;
            top: 25px;
            right: 25px;
            background: var(--primary);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
            animation: abo23 2s ease-in-out infinite, abo24 3s ease-in-out infinite;
        }
        
        @keyframes abo23 {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        @keyframes abo24 {
            0%, 100% {
                box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
            }
            50% {
                box-shadow: 0 8px 30px rgba(26, 115, 232, 0.5);
            }
        }
        
        .abo25 h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
            animation: abo26 1s ease-out 0.3s both;
        }
        
        @keyframes abo26 {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .abo25 p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 24px;
            animation: abo26 1s ease-out 0.5s both;
        }
        
        .abo27 {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .abo27 h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }
        
        .abo27 h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            animation: abo28 0.8s ease-out 0.3s forwards;
        }
        
        @keyframes abo28 {
            to {
                width: 80px;
            }
        }
        
        .abo27 p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            animation: abo29 1s ease-out 0.5s both;
        }
        
        @keyframes abo29 {
            from {
                opacity: 0;
            transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .abo30 {
            padding: 50px 0;
        }
        
        .abo31 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 35px;
        }
        
        @media (min-width: 768px) {
            .abo31 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .abo32 {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 
                0 15px 35px rgba(31, 38, 135, 0.1),
                0 5px 15px rgba(31, 38, 135, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .abo32::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .abo32:hover::before {
            opacity: 1;
        }
        
        .abo32:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(31, 38, 135, 0.15),
                0 10px 25px rgba(31, 38, 135, 0.08);
        }
        
        .abo33 {
            width: 70px;
            height: 70px;
            background: var(--primary-light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
        }
        
        .abo32:hover .abo33 {
            transform: scale(1.1);
            background: var(--primary);
        }
        
        .abo32:hover .abo33 i {
            color: var(--white);
        }
        
        .abo33 i {
            font-size: 28px;
            color: var(--primary);
            transition: all 0.4s ease;
        }
        
        .abo32 h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--dark);
            transition: all 0.4s ease;
        }
        
        .abo32:hover h3 {
            color: var(--primary);
        }
        
        .abo32 p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        .abo35 {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 50px;
            margin: 30px 0;
            box-shadow: 
                0 20px 40px rgba(31, 38, 135, 0.1),
                0 10px 20px rgba(31, 38, 135, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .abo36 {
            position: relative;
            padding-left: 40px;
        }
        
        .abo36::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 0;
            width: 3px;
            background: var(--primary-light);
            animation: abo37 1.5s ease-out 0.5s forwards;
        }
        
        @keyframes abo37 {
            to {
                height: 100%;
            }
        }
        
        .abo38 {
            position: relative;
            padding-bottom: 35px;
            opacity: 0;
            transform: translateX(-20px);
            animation: abo39 0.6s ease-out forwards;
        }
        
        .abo38:nth-child(1) { animation-delay: 0.2s; }
        .abo38:nth-child(2) { animation-delay: 0.4s; }
        .abo38:nth-child(3) { animation-delay: 0.6s; }
        .abo38:nth-child(4) { animation-delay: 0.8s; }
        
        @keyframes abo39 {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .abo38:last-child {
            padding-bottom: 0;
        }
        
        .abo38::before {
            content: '';
            position: absolute;
            left: -44px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 20px rgba(26, 115, 232, 0.4);
            animation: abo40 2s ease-in-out infinite;
        }
        
        @keyframes abo40 {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
            }
        }
        
        .abo41 {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .abo42 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .abo43 {
            color: var(--gray);
            margin-bottom: 12px;
        }
        
        .abo44 {
            color: var(--gray);
        }
        
        .abo45 {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 50px;
            margin: 30px 0;
            box-shadow: 
                0 20px 40px rgba(31, 38, 135, 0.1),
                0 10px 20px rgba(31, 38, 135, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .abo46 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 35px;
        }
        
        @media (min-width: 768px) {
            .abo46 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .abo47 {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .abo47:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(31, 38, 135, 0.15),
                0 10px 25px rgba(31, 38, 135, 0.08);
        }
        
        .abo48 {
            position: absolute;
            top: 25px;
            right: 25px;
            color: var(--primary-light);
            font-size: 2.5rem;
            opacity: 0.3;
            transition: all 0.4s ease;
        }
        
        .abo47:hover .abo48 {
            opacity: 0.6;
            transform: rotate(10deg);
        }
        
        .abo49 {
            font-style: italic;
            margin-bottom: 25px;
            color: var(--dark);
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        .abo50 {
            display: flex;
            align-items: center;
        }
        
        .abo51 {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            transition: all 0.4s ease;
            border: 3px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 20px rgba(31, 38, 135, 0.2);
        }
        
        .abo47:hover .abo51 {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(31, 38, 135, 0.3);
        }
        
        .abo51 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .abo52 h5 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .abo52 p {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .abo53 {
            padding: 50px 0;
        }
        
        .abo54 {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .abo55 {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            margin-bottom: 25px;
            box-shadow: 
                0 10px 25px rgba(31, 38, 135, 0.08),
                0 5px 15px rgba(31, 38, 135, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .abo55:hover {
            box-shadow: 
                0 15px 35px rgba(31, 38, 135, 0.12),
                0 8px 20px rgba(31, 38, 135, 0.08);
        }
        
        .abo56 {
            padding: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .abo56::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary);
            transform: scaleY(0);
            transition: transform 0.4s ease;
            border-radius: 2px;
        }
        
        .abo55.abo57 .abo56::before {
            transform: scaleY(1);
        }
        
        .abo56:hover {
            background: var(--primary-light);
            padding-left: 40px;
        }
        
        .abo56 i {
            transition: transform 0.4s ease;
            color: var(--primary);
        }
        
        .abo55.abo57 .abo56 i {
            transform: rotate(180deg);
        }
        
        .abo58 {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .abo55.abo57 .abo58 {
            padding: 0 30px 30px;
            max-height: 500px;
        }
        
        .abo59 {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 50px;
            margin: 30px 0;
            box-shadow: 
                0 20px 40px rgba(31, 38, 135, 0.1),
                0 10px 20px rgba(31, 38, 135, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .abo60 {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .abo61 {
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            box-shadow: 0 10px 20px rgba(0, 105, 92, 0.3);
            animation: abo62 4s ease-in-out infinite;
        }
        
        @keyframes abo62 {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(5deg);
            }
            75% {
                transform: rotate(-5deg);
            }
        }
        
        .abo61 i {
            color: var(--white);
            font-size: 28px;
        }
        
        .abo60 h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
        }
        
        .abo63 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        @media (min-width: 768px) {
            .abo63 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .abo64 {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px;
            border-left: 5px solid var(--secondary);
            transition: all 0.4s ease;
        }
        
        .abo64:hover {
            transform: translateX(8px) scale(1.02);
            box-shadow: 
                0 15px 35px rgba(31, 38, 135, 0.12),
                0 8px 20px rgba(31, 38, 135, 0.08);
        }
        
        .abo64 h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        
        .abo64 h4 i {
            color: var(--secondary);
            margin-right: 12px;
            font-size: 20px;
            transition: transform 0.4s ease;
        }
        
        .abo64:hover h4 i {
            transform: scale(1.2);
        }
        
        .abo64 p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        .abo65 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        @media (min-width: 768px) {
            .abo65 {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .abo66 {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 35px;
            text-align: center;
            box-shadow: 
                0 15px 35px rgba(31, 38, 135, 0.1),
                0 8px 20px rgba(31, 38, 135, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .abo66::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            animation: abo67 10s linear infinite;
        }
        
        @keyframes abo67 {
            0% {
                transform: scale(0.5) rotate(0deg);
                opacity: 0.5;
            }
            50% {
                transform: scale(1) rotate(180deg);
                opacity: 0.2;
            }
            100% {
                transform: scale(0.5) rotate(360deg);
                opacity: 0.5;
            }
        }
        
        .abo66:hover::before {
            opacity: 1;
            animation-play-state: paused;
        }
        
        .abo66:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 
                0 25px 50px rgba(31, 38, 135, 0.15),
                0 12px 25px rgba(31, 38, 135, 0.08);
        }
        
        .abo68 {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
            animation: abo69 3s ease-in-out infinite;
        }
        
        @keyframes abo69 {
            0%, 100% {
                box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
            }
            50% {
                box-shadow: 0 10px 30px rgba(26, 115, 232, 0.4);
            }
        }
        
        .abo66:hover .abo68 {
            transform: scale(1.1) rotate(5deg);
            background: var(--primary);
            animation-play-state: paused;
        }
        
        .abo66:hover .abo68 i {
            color: var(--white);
        }
        
        .abo68 i {
            font-size: 26px;
            color: var(--primary);
            transition: all 0.4s ease;
        }
        
        .abo70 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
            animation: abo71 2s ease-in-out infinite;
        }
        
        @keyframes abo71 {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(26, 115, 232, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(26, 115, 232, 0.5));
            }
        }
        
        .abo72 {
            font-size: 0.95rem;
            color: var(--gray);
            font-weight: 500;
        }
        
        .abo73 {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 30px;
            padding: 50px;
            margin: 40px 5px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 25px 50px rgba(26, 115, 232, 0.3),
                0 10px 25px rgba(26, 115, 232, 0.2);
        }
        
        .abo73::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="80" cy="80" r="10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.3"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="0.4"/></svg>');
            background-size: 200px 200px;
            animation: abo74 30s linear infinite;
        }
        
        @keyframes abo74 {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(100px, 100px);
            }
        }
        
        .abo75 {
            position: relative;
            z-index: 1;
        }
        
        .abo75 h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 25px;
            animation: abo76 2s ease-in-out infinite alternate;
        }
        
        @keyframes abo76 {
            from {
                text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
            }
            to {
                text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
            }
        }
        
        .abo75 p {
            font-size: 1.1rem;
            margin-bottom: 35px;
            opacity: 0.95;
        }
        
        .abo77 {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .abo78 {
            padding: 16px 32px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .abo78::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .abo78:hover::before {
            width: 400px;
            height: 400px;
        }
        
        .abo79 {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            color: var(--primary);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }
        
        .abo79:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        }
        
        .abo80 {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.7);
        }
        
        .abo80:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px) scale(1.05);
            border-color: var(--white);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
        }
        
        .abo81 {
            margin-top: 40px;
            font-style: italic;
            opacity: 0.9;
            animation: abo29 1s ease-out 1s both;
        }
        
        .abo81 strong {
            font-style: normal;
            display: block;
            margin-top: 10px;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .abo15, .abo35, .abo45, .abo59, .abo73 {
                padding: 35px 25px;
            }
            
            .abo25 h1 {
                font-size: 2.2rem;
            }
            
            .abo77 {
                flex-direction: column;
                align-items: center;
            }
            
            .abo78 {
                width: 100%;
                max-width: 320px;
            }
        }













































          .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 40px;
            color: #0d6efd;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 35%;
            width: 30%;
            height: 3px;
            background: linear-gradient(90deg, #0d6efd, #6ea8fe, #0d6efd);
            border-radius: 3px;
        }
        
        .Revi1, .Revi2, .Revi3, .Revi4, .Revi5, .Revi6, .Revi7, .Revi8, .Revi9, .Revi10 {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(13, 110, 253, 0.1);
            animation: cardFloat 4s ease-in-out infinite;
        }

        .Revi1 { animation-delay: 0.2s; }
        .Revi2 { animation-delay: 0.4s; }
        .Revi3 { animation-delay: 0.6s; }
        .Revi4 { animation-delay: 0.8s; }
        .Revi5 { animation-delay: 1.0s; }
        .Revi6 { animation-delay: 1.2s; }
        .Revi7 { animation-delay: 1.4s; }
        .Revi8 { animation-delay: 1.6s; }
        .Revi9 { animation-delay: 1.8s; }
        .Revi10 { animation-delay: 2.0s; }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-4px) rotate(0.3deg); }
            50% { transform: translateY(-2px) rotate(-0.3deg); }
            75% { transform: translateY(-3px) rotate(0.2deg); }
        }

        .Revi1::before, .Revi2::before, .Revi3::before, .Revi4::before, .Revi5::before, 
        .Revi6::before, .Revi7::before, .Revi8::before, .Revi9::before, .Revi10::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0d6efd, #6ea8fe, #ff6b6b, #6ea8fe, #0d6efd);
            background-size: 300% 100%;
            animation: borderFlow 2s linear infinite;
        }

        @keyframes borderFlow {
            0% { background-position: 300% 0; }
            100% { background-position: -300% 0; }
        }

        .Revi1::after, .Revi2::after, .Revi3::after, .Revi4::after, .Revi5::after, 
        .Revi6::after, .Revi7::after, .Revi8::after, .Revi9::after, .Revi10::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.04) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            animation: backgroundPulse 6s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 0; }
            50% { opacity: 0.2; }
        }

        .Revi1:hover::after, .Revi2:hover::after, .Revi3:hover::after, .Revi4:hover::after, 
        .Revi5:hover::after, .Revi6:hover::after, .Revi7:hover::after, .Revi8:hover::after, 
        .Revi9:hover::after, .Revi10:hover::after {
            opacity: 0.3;
            animation: none;
        }

        .Revi1 > div:first-child, .Revi2 > div:first-child, .Revi3 > div:first-child, .Revi4 > div:first-child, .Revi5 > div:first-child, 
        .Revi6 > div:first-child, .Revi7 > div:first-child, .Revi8 > div:first-child, .Revi9 > div:first-child, .Revi10 > div:first-child {
            position: absolute;
            z-index: 1;
            opacity: 0.1;
            animation: shapeFloat 5s ease-in-out infinite;
        }

        @keyframes shapeFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(5px, -8px) rotate(90deg) scale(1.05); }
            50% { transform: translate(-3px, -12px) rotate(180deg) scale(1.1); }
            75% { transform: translate(8px, -5px) rotate(270deg) scale(1.03); }
        }

        .Revi1 > div:first-child { top: -20px; right: -20px; width: 80px; height: 80px; background: #0d6efd; border-radius: 50%; animation-delay: 0s; }
        .Revi2 > div:first-child { bottom: -25px; left: -25px; width: 90px; height: 90px; background: #0d6efd; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); animation-delay: 1s; }
        .Revi3 > div:first-child { top: 15px; right: 15px; width: 60px; height: 60px; background: #0d6efd; border-radius: 10px; animation-delay: 2s; }
        .Revi4 > div:first-child { bottom: 15px; right: 15px; width: 70px; height: 50px; background: #0d6efd; border-radius: 25px 25px 0 25px; animation-delay: 3s; }
        .Revi5 > div:first-child { top: 50%; left: -15px; width: 60px; height: 60px; background: #0d6efd; clip-path: polygon(0% 0%, 100% 50%, 0% 100%); animation-delay: 4s; }
        .Revi6 > div:first-child { top: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 40px; background: #0d6efd; border-radius: 40px 40px 0 0; animation-delay: 5s; }
        .Revi7 > div:first-child { top: -20px; right: -20px; width: 80px; height: 80px; background: #0d6efd; border-radius: 50%; animation-delay: 0s; }
        .Revi8 > div:first-child { bottom: -25px; left: -25px; width: 90px; height: 90px; background: #0d6efd; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); animation-delay: 1s; }
        .Revi9 > div:first-child { top: 15px; right: 15px; width: 60px; height: 60px; background: #0d6efd; border-radius: 10px; animation-delay: 2s; }
        .Revi10 > div:first-child { bottom: 15px; right: 15px; width: 70px; height: 50px; background: #0d6efd; border-radius: 25px 25px 0 25px; animation-delay: 3s; }


        .Revi1:hover, .Revi2:hover, .Revi3:hover, .Revi4:hover, .Revi5:hover, 
        .Revi6:hover, .Revi7:hover, .Revi8:hover, .Revi9:hover, .Revi10:hover {
            transform: translateY(-6px) scale(1.02) rotate(0.5deg);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: rgba(13, 110, 253, 0.2);
            animation-play-state: paused;
        }

        .Revi1 > div:nth-child(2), .Revi2 > div:nth-child(2), .Revi3 > div:nth-child(2), .Revi4 > div:nth-child(2), .Revi5 > div:nth-child(2), 
        .Revi6 > div:nth-child(2), .Revi7 > div:nth-child(2), .Revi8 > div:nth-child(2), .Revi9 > div:nth-child(2), .Revi10 > div:nth-child(2) {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 15px;
            position: relative;
            z-index: 3;
        }

        .Revi1 > div:nth-child(2) > div:first-child, .Revi2 > div:nth-child(2) > div:first-child, .Revi3 > div:nth-child(2) > div:first-child, .Revi4 > div:nth-child(2) > div:first-child, .Revi5 > div:nth-child(2) > div:first-child, 
        .Revi6 > div:nth-child(2) > div:first-child, .Revi7 > div:nth-child(2) > div:first-child, .Revi8 > div:nth-child(2) > div:first-child, .Revi9 > div:nth-child(2) > div:first-child, .Revi10 > div:nth-child(2) > div:first-child {
            display: flex;
            align-items: center;
        }

        .Revi1 > div:nth-child(2) > div:first-child > div:first-child, .Revi2 > div:nth-child(2) > div:first-child > div:first-child, .Revi3 > div:nth-child(2) > div:first-child > div:first-child, .Revi4 > div:nth-child(2) > div:first-child > div:first-child, .Revi5 > div:nth-child(2) > div:first-child > div:first-child, 
        .Revi6 > div:nth-child(2) > div:first-child > div:first-child, .Revi7 > div:nth-child(2) > div:first-child > div:first-child, .Revi8 > div:nth-child(2) > div:first-child > div:first-child, .Revi9 > div:nth-child(2) > div:first-child > div:first-child, .Revi10 > div:nth-child(2) > div:first-child > div:first-child {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0d6efd, #6ea8fe);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
            animation: avatarPulse 3s ease-in-out infinite;
        }

        @keyframes avatarPulse {
            0%, 100% { box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3); transform: scale(1) rotate(0deg); }
            50% { box-shadow: 0 6px 18px rgba(13, 110, 253, 0.5); transform: scale(1.03) rotate(3deg); }
        }

        .Revi1:hover > div:nth-child(2) > div:first-child > div:first-child, .Revi2:hover > div:nth-child(2) > div:first-child > div:first-child, .Revi3:hover > div:nth-child(2) > div:first-child > div:first-child, 
        .Revi4:hover > div:nth-child(2) > div:first-child > div:first-child, .Revi5:hover > div:nth-child(2) > div:first-child > div:first-child, .Revi6:hover > div:nth-child(2) > div:first-child > div:first-child,
        .Revi7:hover > div:nth-child(2) > div:first-child > div:first-child, .Revi8:hover > div:nth-child(2) > div:first-child > div:first-child, .Revi9:hover > div:nth-child(2) > div:first-child > div:first-child, 
        .Revi10:hover > div:nth-child(2) > div:first-child > div:first-child {
            transform: scale(1.08) rotate(5deg);
            animation: none;
            box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6);
        }

        .Revi1 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, .Revi2 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, .Revi3 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, .Revi4 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, .Revi5 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, 
        .Revi6 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, .Revi7 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, .Revi8 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, .Revi9 > div:nth-child(2) > div:first-child > div:nth-child(2) h4, .Revi10 > div:nth-child(2) > div:first-child > div:nth-child(2) h4 {
            font-size: 1.1rem;
            margin-bottom: 3px;
            color: #333;
            font-weight: 600;
            position: relative;
            z-index: 3;
        }

        .Revi1 > div:nth-child(2) > div:first-child > div:nth-child(2) p, .Revi2 > div:nth-child(2) > div:first-child > div:nth-child(2) p, .Revi3 > div:nth-child(2) > div:first-child > div:nth-child(2) p, .Revi4 > div:nth-child(2) > div:first-child > div:nth-child(2) p, .Revi5 > div:nth-child(2) > div:first-child > div:nth-child(2) p, 
        .Revi6 > div:nth-child(2) > div:first-child > div:nth-child(2) p, .Revi7 > div:nth-child(2) > div:first-child > div:nth-child(2) p, .Revi8 > div:nth-child(2) > div:first-child > div:nth-child(2) p, .Revi9 > div:nth-child(2) > div:first-child > div:nth-child(2) p, .Revi10 > div:nth-child(2) > div:first-child > div:nth-child(2) p {
            font-size: 0.85rem;
            color: #6c757d;
            position: relative;
            z-index: 3;
        }

        .Revi1 > div:nth-child(2) > div:nth-child(2), .Revi2 > div:nth-child(2) > div:nth-child(2), .Revi3 > div:nth-child(2) > div:nth-child(2), .Revi4 > div:nth-child(2) > div:nth-child(2), .Revi5 > div:nth-child(2) > div:nth-child(2), 
        .Revi6 > div:nth-child(2) > div:nth-child(2), .Revi7 > div:nth-child(2) > div:nth-child(2), .Revi8 > div:nth-child(2) > div:nth-child(2), .Revi9 > div:nth-child(2) > div:nth-child(2), .Revi10 > div:nth-child(2) > div:nth-child(2) {
            font-size: 1.6rem;
            color: #0d6efd;
            opacity: 0.8;
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
            animation: quoteOrbit 5s linear infinite;
        }

        @keyframes quoteOrbit {
            0% { transform: rotate(0deg) scale(1); }
            25% { transform: rotate(90deg) scale(1.05); }
            50% { transform: rotate(180deg) scale(1.1); }
            75% { transform: rotate(270deg) scale(1.05); }
            100% { transform: rotate(360deg) scale(1); }
        }

        .Revi1:hover > div:nth-child(2) > div:nth-child(2), .Revi2:hover > div:nth-child(2) > div:nth-child(2), .Revi3:hover > div:nth-child(2) > div:nth-child(2), 
        .Revi4:hover > div:nth-child(2) > div:nth-child(2), .Revi5:hover > div:nth-child(2) > div:nth-child(2), .Revi6:hover > div:nth-child(2) > div:nth-child(2),
        .Revi7:hover > div:nth-child(2) > div:nth-child(2), .Revi8:hover > div:nth-child(2) > div:nth-child(2), .Revi9:hover > div:nth-child(2) > div:nth-child(2), 
        .Revi10:hover > div:nth-child(2) > div:nth-child(2) {
            transform: scale(1.15) rotate(8deg);
            color: #084298;
            animation: none;
        }

        .Revi1 > div:nth-child(3), .Revi2 > div:nth-child(3), .Revi3 > div:nth-child(3), .Revi4 > div:nth-child(3), .Revi5 > div:nth-child(3), 
        .Revi6 > div:nth-child(3), .Revi7 > div:nth-child(3), .Revi8 > div:nth-child(3), .Revi9 > div:nth-child(3), .Revi10 > div:nth-child(3) {
            margin-bottom: 15px;
            position: relative;
            z-index: 3;
        }

        .Revi1 > div:nth-child(3) > p, .Revi2 > div:nth-child(3) > p, .Revi3 > div:nth-child(3) > p, .Revi4 > div:nth-child(3) > p, .Revi5 > div:nth-child(3) > p, 
        .Revi6 > div:nth-child(3) > p, .Revi7 > div:nth-child(3) > p, .Revi8 > div:nth-child(3) > p, .Revi9 > div:nth-child(3) > p, .Revi10 > div:nth-child(3) > p {
            line-height: 1.5;
            font-size: 0.9rem;
            color: #333;
            position: relative;
            padding-left: 18px;
            border-left: 2px solid #6ea8fe;
        }

        .Revi1 > div:nth-child(3) > p::before, .Revi2 > div:nth-child(3) > p::before, .Revi3 > div:nth-child(3) > p::before, .Revi4 > div:nth-child(3) > p::before, .Revi5 > div:nth-child(3) > p::before, 
        .Revi6 > div:nth-child(3) > p::before, .Revi7 > div:nth-child(3) > p::before, .Revi8 > div:nth-child(3) > p::before, .Revi9 > div:nth-child(3) > p::before, .Revi10 > div:nth-child(3) > p::before {
            content: "\"";
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 2rem;
            color: #6ea8fe;
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .Revi1 > div:nth-child(3) > div:first-child, .Revi2 > div:nth-child(3) > div:first-child, .Revi3 > div:nth-child(3) > div:first-child, .Revi4 > div:nth-child(3) > div:first-child, .Revi5 > div:nth-child(3) > div:first-child, 
        .Revi6 > div:nth-child(3) > div:first-child, .Revi7 > div:nth-child(3) > div:first-child, .Revi8 > div:nth-child(3) > div:first-child, .Revi9 > div:nth-child(3) > div:first-child, .Revi10 > div:nth-child(3) > div:first-child {
            display: flex;
            margin-bottom: 12px;
            position: relative;
            z-index: 3;
        }

        .Revi1 > div:nth-child(3) > div:first-child > span, .Revi2 > div:nth-child(3) > div:first-child > span, .Revi3 > div:nth-child(3) > div:first-child > span, .Revi4 > div:nth-child(3) > div:first-child > span, .Revi5 > div:nth-child(3) > div:first-child > span, 
        .Revi6 > div:nth-child(3) > div:first-child > span, .Revi7 > div:nth-child(3) > div:first-child > span, .Revi8 > div:nth-child(3) > div:first-child > span, .Revi9 > div:nth-child(3) > div:first-child > span, .Revi10 > div:nth-child(3) > div:first-child > span {
            color: #ffc107;
            margin-right: 3px;
            font-size: 1rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            animation: starTwinkle 3s ease-in-out infinite;
        }
        
        .Revi1 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi1 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi1 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi1 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi1 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }

        .Revi2 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi2 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi2 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi2 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi2 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }
        
        .Revi3 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi3 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi3 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi3 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi3 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }
        
        .Revi4 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi4 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi4 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi4 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi4 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }
        
        .Revi5 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi5 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi5 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi5 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi5 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }
        
        .Revi6 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi6 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi6 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi6 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi6 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }
        
        .Revi7 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi7 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi7 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi7 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi7 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }
        
        .Revi8 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi8 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi8 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi8 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi8 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }
        
        .Revi9 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi9 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi9 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi9 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi9 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }
        
        .Revi10 > div:nth-child(3) > div:first-child > span:nth-child(1) { animation-delay: 0.3s; }
        .Revi10 > div:nth-child(3) > div:first-child > span:nth-child(2) { animation-delay: 0.6s; }
        .Revi10 > div:nth-child(3) > div:first-child > span:nth-child(3) { animation-delay: 0.9s; }
        .Revi10 > div:nth-child(3) > div:first-child > span:nth-child(4) { animation-delay: 1.2s; }
        .Revi10 > div:nth-child(3) > div:first-child > span:nth-child(5) { animation-delay: 1.5s; }

        @keyframes starTwinkle {
            0%, 100% { opacity: 1; transform: scale(1) translateY(0); }
            50% { opacity: 0.8; transform: scale(1.1) translateY(-2px); }
        }

        .Revi1:hover > div:nth-child(3) > div:first-child > span, .Revi2:hover > div:nth-child(3) > div:first-child > span, .Revi3:hover > div:nth-child(3) > div:first-child > span, 
        .Revi4:hover > div:nth-child(3) > div:first-child > span, .Revi5:hover > div:nth-child(3) > div:first-child > span, .Revi6:hover > div:nth-child(3) > div:first-child > span,
        .Revi7:hover > div:nth-child(3) > div:first-child > span, .Revi8:hover > div:nth-child(3) > div:first-child > span, .Revi9:hover > div:nth-child(3) > div:first-child > span, 
        .Revi10:hover > div:nth-child(3) > div:first-child > span {
            transform: scale(1.2);
            animation: none;
        }

        .Revi1 > div:nth-child(4), .Revi2 > div:nth-child(4), .Revi3 > div:nth-child(4), .Revi4 > div:nth-child(4), .Revi5 > div:nth-child(4), 
        .Revi6 > div:nth-child(4), .Revi7 > div:nth-child(4), .Revi8 > div:nth-child(4), .Revi9 > div:nth-child(4), .Revi10 > div:nth-child(4) {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid rgba(13, 110, 253, 0.1);
            position: relative;
            z-index: 3;
        }

        .Revi1 > div:nth-child(4) > div:first-child, .Revi2 > div:nth-child(4) > div:first-child, .Revi3 > div:nth-child(4) > div:first-child, .Revi4 > div:nth-child(4) > div:first-child, .Revi5 > div:nth-child(4) > div:first-child, 
        .Revi6 > div:nth-child(4) > div:first-child, .Revi7 > div:nth-child(4) > div:first-child, .Revi8 > div:nth-child(4) > div:first-child, .Revi9 > div:nth-child(4) > div:first-child, .Revi10 > div:nth-child(4) > div:first-child {
            font-size: 0.8rem;
            color: #6c757d;
            font-weight: 500;
        }

        .Revi1 > div:nth-child(4) > div:nth-child(2), .Revi2 > div:nth-child(4) > div:nth-child(2), .Revi3 > div:nth-child(4) > div:nth-child(2), .Revi4 > div:nth-child(4) > div:nth-child(2), .Revi5 > div:nth-child(4) > div:nth-child(2), 
        .Revi6 > div:nth-child(4) > div:nth-child(2), .Revi7 > div:nth-child(4) > div:nth-child(2), .Revi8 > div:nth-child(4) > div:nth-child(2), .Revi9 > div:nth-child(4) > div:nth-child(2), .Revi10 > div:nth-child(4) > div:nth-child(2) {
            font-size: 0.8rem;
            font-weight: 600;
            color: #0d6efd;
            background: rgba(13, 110, 253, 0.1);
            padding: 4px 10px;
            border-radius: 15px;
            transition: all 0.3s ease;
            animation: tagBounce 3s ease-in-out infinite;
        }

        @keyframes tagBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-2px) scale(1.03); }
        }

        .Revi1:hover > div:nth-child(4) > div:nth-child(2), .Revi2:hover > div:nth-child(4) > div:nth-child(2), .Revi3:hover > div:nth-child(4) > div:nth-child(2), 
        .Revi4:hover > div:nth-child(4) > div:nth-child(2), .Revi5:hover > div:nth-child(4) > div:nth-child(2), .Revi6:hover > div:nth-child(4) > div:nth-child(2),
        .Revi7:hover > div:nth-child(4) > div:nth-child(2), .Revi8:hover > div:nth-child(4) > div:nth-child(2), .Revi9:hover > div:nth-child(4) > div:nth-child(2), 
        .Revi10:hover > div:nth-child(4) > div:nth-child(2) {
            background: rgba(13, 110, 253, 0.15);
            transform: translateY(-2px) scale(1.05);
            animation: none;
        }

        .review-stats {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px 20px;
            margin-top: 50px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(13, 110, 253, 0.1);
            position: relative;
            overflow: hidden;
        }

        .review-stats::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0d6efd, #6ea8fe, #ff6b6b, #6ea8fe, #0d6efd);
            background-size: 300% 100%;
            animation: borderFlow 2s linear infinite;
        }

        .review-stat-item {
            padding: 10px;
            min-width: 120px;
            position: relative;
            z-index: 2;
        }

        .review-stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #0d6efd;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .review-stat-icon {
            margin-right: 8px;
            font-size: 1.8rem;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-3px) scale(1.05); }
        }

        .review-stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 600;
        }

        .review-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        @media (max-width: 768px) {
            .review-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .review-stats {
                flex-direction: column;
                align-items: center;
                padding: 20px 15px;
            }
            
            .review-stat-item {
                margin-bottom: 15px;
            }
            
            .review-container {
                padding: 20px 10px;
            }
        }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    transition: transform 0.5s ease;
    display: block;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .gallery-item img {
        height: 180px;
    }
}

/* Custom Bio Container for Dr. Khan's details */
/* Custom Bio Container for Dr. Khan's details */
.bio-container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Eliminate potential double-padding from inner wrappers but keep some spacing */
.bio-container .abo35 {
    padding: 30px !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Responsive adjustments */
@media (min-width: 576px) { .bio-container { max-width: 540px; } }
@media (min-width: 768px) { .bio-container { max-width: 720px; } }
@media (min-width: 992px) { .bio-container { max-width: 960px; } }
@media (min-width: 1200px) { .bio-container { max-width: 1140px; } }
@media (min-width: 1400px) { .bio-container { max-width: 1320px; } }

/* Mobile optimization for biography sections */
@media (max-width: 575px) {
    .abo35 {
        padding: 15px !important;
    }
    
    .abo36 {
        padding-left: 0 !important;
    }
    
    .abo36::before,
    .abo38::before {
        display: none !important;
    }
    
    .abo38 {
        transform: none !important;
        opacity: 1 !important;
        padding-bottom: 20px;
    }
    
    .abo27 h2 {
        font-size: 1.8rem;
    }

    .bio-container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .bio-container .abo35 {
        padding: 15px !important;
    }
}











































     /* --- Basic Reset & Global Styles --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     

        /* --- Main Footer Container (was .footer) --- */
        .newfoot1 {
            background-color: #1a2a4c;
            color: #e0e0e0;
            padding: 60px 40px 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            margin-top: 50px;
            font-family: 'Poppins', sans-serif;
        }

        /* --- Footer Content Grid Layout (was .footer-content) --- */
        .newfoot2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Column Styling (was .footer-column) --- */
        .newfoot3, .newfoot4, .newfoot5, .newfoot6 {
            display: flex;
            flex-direction: column;
        }

        /* --- Column Headings (was h3) --- */
        .newfoot7 {
            color: #4dabf7;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .newfoot7::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #4dabf7;
            border-radius: 2px;
        }

        /* --- General Text and Links (was p, ul) --- */
        .newfoot12, .newfoot8 {
            font-size: 0.95rem;
            color: #b0b0b0;
            margin-top: 0;
            list-style: none;
        }

        /* --- List Items (was li) --- */
        .newfoot9 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        /* --- Icons (was i) --- */
        .newfoot10 {
            color: #4dabf7;
            margin-right: 12px;
            font-size: 1rem;
            min-width: 16px;
            text-align: center;
        }

        /* --- Links (was a) --- */
        .newfoot11 {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            cursor: pointer;
        }

        .newfoot11:hover {
            color: #4dabf7;
            transform: translateX(5px);
        }

        /* --- Facebook Follow Button (was a.fb-follow-btn) --- */
        .newfoot13 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #1877f2;
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            margin-top: 15px;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .newfoot13:hover {
            background-color: #166fe5;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            color: #ffffff;
        }

        .newfoot13 .newfoot10 {
            margin-right: 10px;
            font-size: 1.1rem;
        }

        /* --- Footer Bottom Section (was .footer-bottom) --- */
        .newfoot14 {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #808080;
        }

        /* --- Footer Bottom Links (was a in footer-bottom) --- */
        .newfoot16 {
            color: #4dabf7;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
        }
        
        .newfoot16:hover {
            text-decoration: underline;
        }

        /* --- Responsive Design for Tablets and Mobiles --- */
        @media (max-width: 992px) {
            .newfoot2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .newfoot1 {
                padding: 40px 20px 15px;
            }
            .newfoot2 {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .newfoot7 {
                font-size: 1.2rem;
            }
            .newfoot12, .newfoot8 {
                font-size: 0.9rem;
            }
            .newfoot14 {
                margin-top: 30px;
                padding-top: 20px;
            }
        }
















































  /* --- CSS RESET & VARIABLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --primary-blue: #0463FA;
            --dark-blue: #0243B3;
            --accent-teal: #00A9A5;
            --white: #ffffff;
            --light-gray: #f4f6f9;
            --text-muted: rgba(255, 255, 255, 0.7);
        }

        /* --- HERO SECTION --- */
        .hero1 {
            position: relative;
            width: 100%;
            min-height: 600px;
            /* Multi-layer gradient over original background image */
            background: linear-gradient(135deg, rgba(4, 99, 250, 0.92), rgba(2, 67, 179, 0.96)), 
                        url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
            border-bottom-right-radius: 80px;
            display: flex;
            align-items: flex-end;
            padding: 80px 8% 0 8%;
            overflow: hidden;
        }

        /* Decorative Floating Dot Matrix */
        .hero2 {
            position: absolute;
            width: 70px;
            opacity: 0.15;
            z-index: 1;
        }
        .hero3 { 
            top: 10%; 
            left: 5%; 
            animation: floatSlow 6s ease-in-out infinite alternate;
        }
        .hero4 { 
            top: 40%; 
            right: 5%; 
            animation: floatSlow 8s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatSlow {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-15px) rotate(5deg); }
        }

        /* Doctor Image Wrapper */
        .hero5 {
            width: 42%;
            position: relative;
            z-index: 5;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            animation: slideUpIntro 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards,
                       infiniteFloat 5s ease-in-out infinite 1.2s;
        }

        .hero5 img {
               max-width: 115%;  
            height: auto;
            display: block;
            filter: drop-shadow(0px 15px 30px rgba(0,0,0,0.25));
            transition: transform 0.5s ease;
        }

        @keyframes slideUpIntro {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes infiniteFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        /* Hero Content Box */
        .hero6 {
             width: 58%; 
            padding-bottom: 70px;
            padding-left: 50px;
            z-index: 5;
            animation: fadeInLeft 1s ease-out forwards;
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero7 {
            font-family: 'Oswald', sans-serif;
            font-size: 56px;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            line-height: 1.1;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        /* Modernized Designation */
        .hero8-custom {
            display: inline-block;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--white);
            background: rgba(0, 169, 165, 0.2);
            border-left: 3px solid var(--accent-teal);
            padding: 4px 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
            border-radius: 0 4px 4px 0;
        }

        .hero-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.7;
            margin-top: 20px;
            margin-bottom: 30px;
            max-width: 680px;
            font-weight: 300;
        }

        /* Qualifications Grid - Clean & Glassmorphism style */
        .hero9 {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 35px;
            max-width: 700px;
        }

        .hero10 {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            color: var(--white);
            padding: 8px 18px;
            font-weight: 500;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .hero10:hover {
            transform: translateY(-3px);
            background: var(--white);
            color: var(--primary-blue);
            border-color: var(--white);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .hero10 span {
            text-align: center;
            letter-spacing: 0.5px;
        }

        /* Clean dot replacement: Subtle left indicator inside box on hover */
        .hero10::after {
            display: none; /* Removed the old old-school pulse dot */
        }

        .hero-location {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .hero-location i {
            color: var(--accent-teal);
        }

        /* --- ACTION BAR --- */
        .hero11 {
            width: 100%;
            background-color: var(--white);
            padding: 25px 8% 25px 43%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 50px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        /* Premium Shiny Button */
        .hero12 {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            border: none;
            padding: 14px 32px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(4, 99, 250, 0.35);
            position: relative;
            overflow: hidden;
        }

        .hero12::before {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-20deg);
            animation: continuousShine 3s infinite ease-in-out;
        }

        @keyframes continuousShine {
            0% { left: -150%; }
            50%, 100% { left: 150%; }
        }

        .hero12:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(4, 99, 250, 0.5);
        }

        /* Contact Section */
        .hero13 {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            text-decoration: none;
        }

        .hero14 {
            background-color: rgba(4, 99, 250, 0.08);
            color: var(--primary-blue);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            transition: all 0.3s ease;
            animation: ringPhone 2s infinite ease-in-out;
        }

        @keyframes ringPhone {
            0%, 100%, 50% { transform: rotate(0deg) scale(1); }
            10%, 30% { transform: rotate(-8deg) scale(1.05); }
            20%, 40% { transform: rotate(8deg) scale(1.05); }
        }
        
        .hero13:hover .hero14 {
            background-color: var(--primary-blue);
            color: var(--white);
            transform: scale(1.05);
        }

        .hero15 {
            display: flex;
            flex-direction: column;
        }

        .hero15 .hero17 {
            font-size: 12px;
            color: #777;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }

        .hero15 .hero16 {
            font-size: 18px;
            font-weight: 700;
            color: #222;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .hero13:hover .hero16 {
            color: var(--primary-blue);
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 1200px) {
            .hero7 { font-size: 48px; }
            .hero11 { padding-left: 40%; gap: 30px; }
        }

        @media (max-width: 992px) {
            .hero1 {
                flex-direction: column-reverse;
                align-items: center;
                padding: 60px 5% 0 5%;
                border-bottom-right-radius: 40px;
                text-align: center;
            }
            .hero6 {
                width: 100%;
                padding-left: 0;
                padding-bottom: 40px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero5 {
                width: 50%;
                margin-top: 20px;
            }
            .hero8-custom {
                border-left: none;
                border-bottom: 2px solid var(--accent-teal);
                border-radius: 0;
                padding: 4px 10px;
            }
            .hero9 {
                justify-content: center;
            }
            .hero11 {
                padding: 30px 5%;
                flex-direction: column;
                gap: 25px;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .hero7 { font-size: 36px; }
            .hero8-custom { font-size: 1rem; }
            .hero5 { width: 75%; }
            .hero10 { font-size: 0.85rem; padding: 6px 14px; }
        }











































            /* সার্ভিস সেকশনের ইউনিক সিএসএস */
    .ser1 {
        max-width: 1200px;
        width: 100%;
        margin: 50px auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 24px;
        font-family: 'Poppins', 'Hind Siliguri', sans-serif;
    }

    .ser2 {
        background: #ffffff;
        border: 1px solid #eef2f9;
        border-radius: 16px;
        padding: 32px 28px;
        box-shadow: 0 4px 20px rgba(4, 99, 250, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ser2:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(4, 99, 250, 0.15);
    }

    .ser3 {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .ser4 {
        background-color: #0463FA;
        color: #ffffff;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        box-shadow: 0 4px 10px rgba(4, 99, 250, 0.3);
    }

    .ser5 {
        font-size: 19px;
        font-weight: 600;
        color: #2c3e50;
        line-height: 1.3;
    }

    .ser6 {
        list-style: none;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .ser7 {
        position: relative;
        padding-left: 15px;
        font-size: 13.5px;
        color: #7f8c8d;
        line-height: 1.6;
    }

    .ser7::before {
        content: "•";
        color: #0463FA;
        font-weight: bold;
        font-size: 18px;
        position: absolute;
        left: 0;
        top: -2px;
    }

    .ser8 {
        background-color: #eef5ff;
        border-left: 4px solid #0463FA;
        border-radius: 4px;
        padding: 12px 16px;
        font-size: 13px;
        color: #4a5568;
        line-height: 1.7;
        font-family: 'Hind Siliguri', sans-serif;
        margin-bottom: 25px;
    }

    .ser9 {
        background-color: #0463FA;
        color: #ffffff;
        border: none;
        padding: 11px 22px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: max-content;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }

    .ser9:hover {
        background-color: #96befd;
    }

    .ser9 i {
        font-size: 14px;
    }

    @media (max-width: 400px) {
        .ser1 {
            grid-template-columns: 1fr;
        }
        .ser9 {
            width: 100%;
            justify-content: center;
        }
    }















































    *{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

        :root{
            --primary-blue:#0463FA;
            --primary-blue-hover:#034ec7;
            --light-blue-bg:#f5f9ff;
            --dark-card-bg:#111625;
            --text-dark:#1a1a1a;
            --text-muted:#555555;
            --font-serif:'Playfair Display', serif;
            --font-sans:'Public Sans', sans-serif;
        }

        .Abf1{
            font-family:var(--font-sans);
            background-color:#ffffff;
            color:var(--text-muted);
            padding:60px 40px;
            display:flex;
            justify-content:center;
            align-items:center;
        }

        .Abf2{
            max-width:1200px;
            width:100%;
            display:grid;
            grid-template-columns:1.15fr 0.85fr;
            gap:45px;
            align-items:start;
        }

        .Abf3{
            display:flex;
            flex-direction:column;
        }

        .Abf4{
            font-family:var(--font-serif);
            font-style:italic;
            color:var(--primary-blue);
            font-size:24px;
            font-weight:400;
            margin-bottom:5px;
        }

        .Abf5{
            font-family:var(--font-serif);
            color:var(--text-dark);
            font-size:38px;
            font-weight:700;
            margin-bottom:25px;
            letter-spacing:-0.5px;
        }

        .Abf6{
            font-size:14.5px;
            color:var(--text-muted);
            line-height:1.7;
            margin-bottom:20px;
            text-align:justify;
        }

        .Abf6 strong{
            color:#222222;
            font-weight:700;
        }

        .Abf7{
            background:linear-gradient(135deg,#182035 0%, var(--dark-card-bg) 100%);
            color:#ffffff;
            padding:35px 30px;
            border-radius:12px;
            margin-top:15px;
            position:relative;
            overflow:hidden;
        }

        .Abf7::before{
            content:'';
            position:absolute;
            width:100px;
            height:100px;
            background:rgba(4,99,250,0.05);
            border-radius:50%;
            top:-20px;
            right:-20px;
        }

        .Abf7::after{
            content:'';
            position:absolute;
            width:60px;
            height:60px;
            background:rgba(4,99,250,0.05);
            border-radius:50%;
            bottom:-15px;
            left:-15px;
        }

        .Abf8{
            font-family:var(--font-serif);
            color:#4da3ff;
            font-size:24px;
            font-weight:600;
            display:flex;
            align-items:center;
            gap:12px;
            margin-bottom:25px;
        }

        .Abf9{
            display:flex;
            align-items:flex-start;
            gap:18px;
            padding:15px 0;
            border-bottom:1px dotted rgba(255,255,255,0.12);
        }

        .Abf9:last-child{
            border-bottom:none;
            padding-bottom:0;
        }

        .Abf9 i{
            color:#4da3ff;
            font-size:14px;
            margin-top:4px;
            width:15px;
            text-align:center;
        }

        .Abf9 p{
            font-size:14px;
            font-weight:500;
            color:#ffffff;
            line-height:1.5;
        }

        .Abf10{
            display:flex;
            flex-direction:column;
            gap:15px;
        }

        .Abf11{
            width:100%;
            height:480px;
            background-color:#f0f0f0;
            overflow:hidden;
        }

        .Abf11 img{
            width:100%;
            height:100%;
            object-fit:cover;
            object-position:center top;
        }

        .Abf12{
            display:flex;
            border-radius:2px;
            overflow:hidden;
        }

        .Abf13 .Abf14{
            background-color:var(--primary-blue);
            color:#ffffff;
            width:75px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:22px;
            flex-shrink:0;
            transition:background-color 0.2s ease;
        }

        .Abf13 .Abf15{
            background-color:var(--light-blue-bg);
            border:1px dashed rgba(4,99,250,0.15);
            border-left:none;
            padding:18px 25px;
            flex-grow:1;
            display:flex;
            flex-direction:column;
            justify-content:center;
        }

        .Abf13 .Abf16{
            font-family:var(--font-serif);
            font-size:24px;
            color:var(--text-dark);
            font-weight:700;
            letter-spacing:0.5px;
            line-height:1.2;
            text-decoration:none;
            transition:color 0.2s ease;
        }

        .Abf13 .Abf16:hover{
            color:var(--primary-blue);
        }

        .Abf17{
            font-size:12px;
            color:#777777;
            margin-top:3px;
        }

        .Abf18 .Abf14{
            background-color:var(--primary-blue);
            color:#ffffff;
            width:75px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:22px;
            flex-shrink:0;
            border-right:1px solid rgba(255,255,255,0.1);
        }

        .Abf18 .Abf15{
            background-color:var(--primary-blue);
            color:#ffffff;
            padding:15px 25px;
            flex-grow:1;
            display:flex;
            flex-direction:column;
            justify-content:center;
            align-items:flex-start;
        }

        .Abf19{
            font-family:var(--font-serif);
            font-size:25px;
            font-weight:700;
            line-height:1.2;
        }

        .Abf20{
            background-color:rgba(255,255,255,0.2);
            color:#ffffff;
            font-size:10px;
            font-weight:700;
            text-transform:uppercase;
            letter-spacing:1px;
            padding:3px 10px;
            border-radius:20px;
            margin-top:4px;
        }

        @media (max-width:992px){

            .Abf2{
                grid-template-columns:1fr;
                gap:35px;
            }

            .Abf1{
                padding:30px 20px;
            }

            .Abf11{
                height:420px;
            }

        }












































             /* Wrapping body styles inside a main wrapper class instead of direct body styling */
        .footer-FK1 {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #0a0a0a; /* Premium Slate Dark Background */
            font-family: 'Plus Jakarta Sans', sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        /* Page content wrapper */
        .footer-FK2 {
            flex: 1 0 auto;
        }

        /* --- Elite Clean Footer Styles --- */
        .footer-FK3 {
            flex-shrink: 0;
            background-color: #272727; /* Clean charcoal black */
            color: #a3a3a3; /* Balanced readable gray */
            font-size: 14px;
            letter-spacing: 0.2px;
            position: relative;
            border-top: 1px solid #1f1f1f;
        }

        /* Container with optimal padding */
        .footer-FK4 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
        }

        /* Left Column Panel */
        .footer-FK5 {
            padding-right: 40px;
        }

        /* Medical Seal Monogram SVG with Subtle Glow */
        .footer-FK6 {
            width: 70px;
            height: 70px;
            margin-bottom: 24px;
            filter: drop-shadow(0 4px 12px rgba(4, 99, 250, 0.15));
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
        }
        .footer-FK6:hover {
            transform: scale(1.05) rotate(5deg);
            filter: drop-shadow(0 6px 20px rgba(4, 99, 250, 0.3));
        }

        /* Clean Doctor Title */
        .footer-FK7 {
            color: #ffffff;
            font-family: 'Cinzel', serif;
            font-size: 21px;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        /* Elegant Degrees text */
        .footer-FK8 {
            color: #9c9c9c;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 28px;
            font-weight: 400;
        }
        
        .footer-FK9 {
            color: #0463FA; /* Premium Blue Accent */
            font-weight: 500;
        }

        .footer-FK10 {
            display: inline-block;
            color: #ffffff;
            background: #0463FA; /* Premium Blue Accent */
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 4px;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Contact Details list */
        .footer-FK11 {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 30px;
        }

        .footer-FK12 {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-FK12 i {
            color: #0463FA; /* Premium Blue Accent */
            font-size: 14px;
            width: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .footer-FK12:hover i {
            transform: scale(1.15);
        }

        .footer-FK12 span, .footer-FK12 a {
            color: #9c9c9c;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-FK12 a:hover {
            color: #ffffff;
        }

        /* --- Social Media Modern Box --- */
        .footer-FK13 {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .footer-FK14 {
            width: 38px;
            height: 38px;
            background-color: #1a1a1a;
            border: 1px solid #2a2a2a;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0463FA; /* Premium Blue Accent */
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-FK14:hover {
            color: #ffffff;
            background-color: #0463FA; /* Premium Blue Accent */
            border-color: #0463FA;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(4, 99, 250, 0.3);
        }

        /* Right Panel Container with Minimalist Divider */
        .footer-FK15 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            row-gap: 40px;
            column-gap: 30px;
            border-left: 1px solid #222222;
            padding-left: 40px;
        }

        .footer-FK16 {
            grid-column: span 2;
        }

        /* Clean Section Headings */
        .footer-FK17 {
            color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Navigation Links Layout */
        .footer-FK18 {
            list-style: none;
        }

        .footer-FK18 li {
            margin-bottom: 12px;
        }

        .footer-FK18 li a {
            color: #9c9c9c;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-weight: 400;
            transition: all 0.2s ease;
        }

        .footer-FK19 {
            color: #0463FA; /* Premium Blue Accent */
            font-size: 11px;
            margin-right: 8px;
            transition: transform 0.2s ease;
        }

        .footer-FK18 li a:hover {
            color: #ffffff;
        }
        
        .footer-FK18 li a:hover .footer-FK19 {
            transform: translateX(3px);
        }

        /* ==========================================================================
            NEW MODERN & COLORFUL CONSULTATION SCHEDULE CARD
           ========================================================================== */
        .footer-FK20 {
            position: relative;
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.8) 0%, rgba(18, 18, 18, 0.9) 100%);
            border: 1px solid rgba(4, 99, 250, 0.25);
            padding: 24px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
        }

        /* Glowing background accent */
        .footer-FK20::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 130px;
            height: 130px;
            background: radial-gradient(circle, rgba(4, 99, 250, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-FK20:hover {
            border-color: rgba(4, 99, 250, 0.5);
            box-shadow: 0 12px 40px rgba(4, 99, 250, 0.15);
            transform: translateY(-2px);
        }

        /* Top Bar inside Card */
        .footer-FK21 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 12px;
        }

        /* Live Status Badge */
        .footer-FK22 {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            color: #10b981; /* Vibrant Medical Green */
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Blinking Animation for Status */
        .footer-FK23 {
            width: 6px;
            height: 6px;
            background-color: #10b981;
            border-radius: 50%;
            display: inline-block;
            animation: pulse-green-FK 2s infinite;
        }

        @keyframes pulse-green-FK {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        .footer-FK24 {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-FK24 i {
            color: #0463FA; /* Premium Blue Accent */
            font-size: 16px;
        }

        .footer-FK25 {
            color: #ffffff;
            font-weight: 700;
            font-size: 17px;
            letter-spacing: 0.3px;
            background: linear-gradient(90deg, #ffffff, #88b1ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-FK26 {
            color: #b3b3b3;
            font-size: 13.5px;
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-FK26 i {
            color: #0463FA; /* Premium Blue Accent */
            margin-top: 4px;
            font-size: 13px;
        }

        /* --- Copyright Bottom bar --- */
        .footer-FK27 {
            border-top: 1px solid #1f1f1f;
            padding: 24px;
            background-color: #0e0e0e;
        }

        .footer-FK28 {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #737373;
        }

        .footer-FK28 p a {
            color: #a3a3a3;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-FK28 p a:hover {
            color: #0463FA; /* Premium Blue Accent */
        }

        /* Back to top styled button */
        .footer-FK29 {
            position: absolute;
            right: 40px;
            bottom: 20px;
            width: 36px;
            height: 36px;
            background-color: #1a1a1a;
            border: 1px solid #2a2a2a;
            color: #0463FA; /* Premium Blue Accent */
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .footer-FK29:hover {
            color: #ffffff;
            background-color: #0463FA; /* Premium Blue Accent */
            border-color: #0463FA;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(4, 99, 250, 0.3);
        }

        /* --- Responsive settings --- */
        @media (max-width: 950px) {
            .footer-FK4 {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 60px 24px;
            }
            .footer-FK5 {
                padding-right: 0;
            }
            .footer-FK15 {
                border-left: none;
                padding-left: 0;
                row-gap: 30px;
            }
            .footer-FK28 {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .footer-FK29 {
                position: static;
                margin: 20px auto 0 auto;
            }
        }










































            /* কাস্টম স্টাইল ও স্মুথ ট্রানজিশন ইফেক্ট */
    .YouT1, .YouT2, .YouT3, .YouT4 {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .YouT1:hover, .YouT2:hover, .YouT3:hover, .YouT4:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }