
:root {
    --primary: #0463FA;
    --light: #EFF5FF;
    --dark: #1B2C51;
}

.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;
    font-style: italic;
}

.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);
}












        .apt-section-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 30px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .apt-main-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .apt-main-title h2 {
            font-size: 36px;
            color: #0463FA;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .apt-main-title p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .apt-main-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0463FA, #3fbbc0);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .apt-options-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .apt-option-card {
            background: #fff;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            box-shadow: 0 10px 30px rgba(4, 99, 250, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border-top: 5px solid #0463FA;
        }
        
        .apt-option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, #0463FA, #3fbbc0);
            opacity: 0.05;
            transition: height 0.6s ease;
            z-index: 1;
        }
        
        .apt-option-card:hover::before {
            height: 100%;
        }
        
        .apt-option-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(4, 99, 250, 0.25);
        }
        
        .apt-icon-container {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(4, 99, 250, 0.1);
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }
        
        .apt-icon-container i {
            font-size: 40px;
            color: #0463FA;
            transition: all 0.4s ease;
        }
        
        .apt-option-card:hover .apt-icon-container i {
            transform: scale(1.1);
            color: #0463FA;
        }
        
        .apt-option-title {
            font-size: 22px;
            color: #0463FA;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .apt-option-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }
        
        .apt-action-button {
            display: inline-block;
            padding: 14px 32px;
            background: #0463FA;
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            border: 2px solid #0463FA;
            overflow: hidden;
        }
        
        .apt-action-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            z-index: -1;
        }
        
        .apt-action-button:hover {
            color: #0463FA;
        }
        
        .apt-action-button:hover::before {
            transform: translateX(0);
        }
        
        .apt-note-text {
            text-align: center;
            margin-top: 50px;
            color: #777;
            font-style: italic;
            font-size: 16px;
            position: relative;
            padding-top: 20px;
        }
        
        .apt-note-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: #0463FA;
        }
        
        /* Animation for elements */
        @keyframes aptFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .apt-option-card {
            animation: aptFadeIn 0.6s ease forwards;
        }
        
        .apt-option-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .apt-option-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .apt-option-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .apt-options-wrapper {
                gap: 20px;
            }
            
            .apt-option-card {
                min-width: 250px;
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .apt-options-wrapper {
                flex-direction: column;
                align-items: center;
            }
            
            .apt-option-card {
                width: 100%;
                max-width: 400px;
            }
            
            .apt-main-title h2 {
                font-size: 30px;
            }
        }



















            .video-container {
            max-width: 1000px;
            margin: 40px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            background: #1a1a1a;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .video-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: linear-gradient(to right, #0463FA, #0359e6);
            color: white;
        }
        
        .video-title {
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .video-controls {
            display: flex;
            gap: 15px;
        }
        
        .control-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .control-btn:hover {
            transform: scale(1.15);
        }
        
        .video-wrapper {
            position: relative;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            background: #000;
        }
        
        .video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
        }
        
        .video-player::-webkit-media-controls {
            display: none !important;
        }
        
        .custom-controls {
            padding: 15px 20px;
            background: #2a2a2a;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .progress-container {
            width: 100%;
            height: 8px;
            background: #444;
            border-radius: 4px;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .progress-bar {
            height: 100%;
            width: 0%;
            background: #0463FA;
            border-radius: 4px;
            transition: width 0.2s ease;
        }
        
        .time-controls {
            display: flex;
            justify-content: space-between;
            color: #ddd;
            font-size: 0.9rem;
        }
        
        .main-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .left-controls, .right-controls {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .play-pause {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #0463FA;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        
        .play-pause:hover {
            background: #0359e6;
            transform: scale(1.05);
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .volume-slider {
            width: 80px;
            -webkit-appearance: none;
            height: 5px;
            border-radius: 5px;
            background: #555;
            outline: none;
        }
        
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #0463FA;
            cursor: pointer;
        }
        
        .playback-speed {
            position: relative;
            display: inline-block;
        }
        
        .speed-select {
            background: #444;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .video-info {
            padding: 20px;
            background: #f9f9f9;
        }
        
        .video-description {
            color: #444;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .video-meta {
            display: flex;
            gap: 15px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .related-videos {
            padding: 20px;
            background: white;
        }
        
        .related-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }
        
        .related-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .related-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .related-item:hover {
            transform: translateY(-5px);
        }
        
        .related-thumb {
            width: 100%;
            height: 120px;
            background: linear-gradient(45deg, #0463FA, #03A9F4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .related-item-title {
            padding: 10px;
            font-size: 0.9rem;
            color: #333;
        }
        
        .animated-border {
            height: 3px;
            background: linear-gradient(to right, transparent, #0463FA, transparent);
            width: 100%;
            animation: borderAnimation 3s infinite linear;
        }
        
        @keyframes borderAnimation {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }
        
        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .video-container {
                margin: 20px;
            }
            
            .video-header {
                padding: 12px 15px;
            }
            
            .video-title {
                font-size: 1.1rem;
            }
            
            .main-controls {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .left-controls, .right-controls {
                gap: 10px;
            }
            
            .play-pause {
                width: 40px;
                height: 40px;
            }
            
            .related-list {
                grid-template-columns: 1fr;
            }
        }
        
        .fullscreen-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
        }

















              .dr-branch-container-main {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 8vh;
            padding: 20px;
            width: 100%;
        }
        
        .dr-branch-content-box {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(11, 77, 149, 0.15);
            overflow: hidden;
            animation: fadeIn 0.8s ease-out;
            position: relative;
        }
        
        .dr-branch-header {
            background: linear-gradient(135deg, #1a7cdd 0%, #0c5cb9 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .dr-branch-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
            transform: rotate(30deg);
            animation: shimmer 8s infinite linear;
        }
        
        .dr-branch-title {
            margin: 0;
            font-size: 32px;
            color: #fff;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .dr-branch-subtitle {
            margin: 12px 0 0;
            opacity: 0.9;
            font-size: 18px;
            font-weight: 400;
            position: relative;
        }
        
        .dr-branch-cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 40px;
        }
        
        .dr-branch-card {
            flex: 1;
            min-width: 300px;
            max-width: 450px;
            background: #f9fbfd;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
            border-left: 5px solid #1a7cdd;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .dr-branch-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(26, 124, 221, 0.15);
        }
        
        .dr-branch-card-header {
            background: linear-gradient(135deg, #1a7cdd 0%, #0c5cb9 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .dr-branch-card-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
            transform: translateX(-100%);
        }
        
        .dr-branch-card:hover .dr-branch-card-header::after {
            animation: shine 1.5s ease;
        }
        
        .dr-branch-icon {
            font-size: 28px;
            margin-bottom: 15px;
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .dr-branch-name {
            margin: 0;
            font-size: 24px;
            color: #fff;
            font-weight: 600;
        }
        
        .dr-branch-card-content {
            padding: 25px;
        }
        
        .dr-branch-detail {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        
        .dr-branch-detail:hover {
            transform: translateX(5px);
        }
        
        .dr-branch-detail-icon {
            color: #1a7cdd;
            font-size: 22px;
            background: rgba(26, 124, 221, 0.1);
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 12px;
            margin-right: 18px;
            flex-shrink: 0;
            transition: background 0.3s ease;
        }
        
        .dr-branch-detail:hover .dr-branch-detail-icon {
            background: rgba(26, 124, 221, 0.2);
        }
        
        .dr-branch-detail-text h4 {
            margin: 0;
            font-size: 15px;
            color: #666;
            font-weight: 500;
        }
        
        .dr-branch-detail-text p {
            margin: 6px 0 0;
            color: #222;
            font-size: 17px;
            font-weight: 500;
            line-height: 1.5;
        }
        
        .dr-branch-phone {
            color: #1a7cdd;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        
        .dr-branch-phone:hover {
            color: #0c5cb9;
            transform: translateY(-2px);
        }
        
        .dr-branch-phone::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0c5cb9;
            transition: width 0.3s ease;
        }
        
        .dr-branch-phone:hover::after {
            width: 100%;
        }
        
        .dr-branch-footer {
            text-align: center;
            padding: 25px;
            background: #f0f7ff;
            color: #555;
            border-top: 1px solid #e0e8f0;
            font-size: 16px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%); }
            20% { transform: translateX(100%); }
            100% { transform: translateX(100%); }
        }
        
        @keyframes shimmer {
            0% { transform: rotate(30deg) translateX(-100%); }
            100% { transform: rotate(30deg) translateX(200%); }
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .dr-branch-cards-container {
                gap: 20px;
                padding: 30px 20px;
            }
            
            .dr-branch-card {
                min-width: 100%;
            }
        }
        
        @media (max-width: 600px) {
            .dr-branch-header {
                padding: 25px 20px;
            }
            
            .dr-branch-title {
                font-size: 26px;
            }
            
            .dr-branch-subtitle {
                font-size: 16px;
            }
            
            .dr-branch-cards-container {
                padding: 20px 15px;
                gap: 25px;
            }
            
            .dr-branch-card-header {
                padding: 20px;
            }
            
            .dr-branch-name {
                font-size: 21px;
            }
            
            .dr-branch-card-content {
                padding: 20px;
            }
            
            .dr-branch-detail {
                flex-direction: column;
                text-align: center;
                margin-bottom: 20px;
            }
            
            .dr-branch-detail-icon {
                margin-right: 0;
                margin-bottom: 12px;
            }
            
            .dr-branch-footer {
                padding: 20px;
                font-size: 15px;
            }
        }






































        
/* Add this style inside <style> tag or your CSS file */

.grid .card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.grid .card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.grid .card .label {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .grid .card {
    min-height: 140px;
  }
  .grid .card img {
    width: 40px;
    height: 40px;
  }
}
    .wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 50vh;
      width: 100%;
      background-color: #f4f7fc;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(100px, 1fr));
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      width: 100%;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .card {
      background: #eef5ff;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      transition: 0.3s ease;
      cursor: pointer;
    }

    .card:hover {
      background: #d6e9ff;
      transform: translateY(-5px);
    }

    .card svg {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
      fill: #0077cc;
      transition: transform 0.3s ease;
    }

    .card:hover svg {
      transform: scale(1.1);
    }

    .label {
      font-size: 16px;
      color: #333;
    }

    @media (max-width: 600px) {
      .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 10px;
      }

      .label {
        font-size: 14px;
      }

      .card svg {
        width: 40px;
        height: 40px;
      }
    }

      :root{
      --accent:#0d6efd;
      --bg:#f8fafc;
      --card-bg:#ffffff;
      --muted:#6b7280;
      --shadow:0 6px 20px rgba(0,0,0,0.08);
      --shadow-hover:0 12px 30px rgba(0,0,0,0.15);
    }
    *{margin:0;padding:0;box-sizing:border-box}
    body{font-family:Inter,system-ui,sans-serif;background:var(--bg);color:#0f172a;}


    .aiksdik1{max-width:1200px;margin:60px auto;padding:20px;overflow:hidden}
    .akjqha7{text-align:center;font-size:1.5rem;font-weight:800;margin-bottom:10px;color:#0d1b2a}
    .ahwu21k{text-align:center;color:var(--muted);font-size:1rem;margin-bottom:30px}

    .ajq81ka{position:relative;overflow:hidden;cursor:grab}
    .a8sd72h{display:flex;gap:24px;transition:transform 0.6s ease}

    .ajdh72a{flex:0 0 calc(33.333% - 16px);background:var(--card-bg);border-radius:16px;box-shadow:var(--shadow);padding:20px;text-align:center;transition:transform .4s ease,box-shadow .4s ease}
    .ajdh72a:hover{transform:translateY(-8px) scale(1.02);box-shadow:var(--shadow-hover)}

    .ajks91d{width:100%;height:240px;object-fit:cover;border-radius:12px;margin-bottom:16px}
    .akdh82s{font-weight:700;font-size:1.2rem;margin-bottom:6px;color:#0d1b2a}
    .asj92kd{color:var(--accent);font-size:0.95rem;margin-bottom:12px}
    .ah28sd{font-size:0.9rem;color:#374151;line-height:1.5}

    @media(max-width:768px){
      .ajdh72a{flex:0 0 80%}
    }

















/* before after */
    .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #0463FA;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
       .guide-section {
    background: white;
    border-radius: 15px;
    padding: 10px;
    margin: 30px auto;   
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 1500px;
}

        
        h2 {
            color: #0463FA;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e6f2ff;
        }
        
        h3 {
            color: #0463FA;
            margin: 25px 0 15px;
        }
        
        .code-example {
            background: #f8f9fa;
            border-left: 4px solid #0463FA;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 5px 5px 0;
            overflow-x: auto;
        }
        
        code {
            font-family: 'Courier New', monospace;
            background: #f1f4f8;
            padding: 2px 6px;
            border-radius: 4px;
            color: #d63384;
        }
        
        .image-examples {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        
        .image-demo {
            flex: 1;
            min-width: 300px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .image-demo img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        
        .image-demo p {
            padding: 15px;
            text-align: center;
            background: #f9f9f9;
            margin: 0;
        }
        
        .comparison-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            padding: 5px;
        }
        
        .comparison-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(4, 99, 250, 0.15);
            transition: all 0.4s ease;
            width: calc(33.333% - 20px);
            min-width: 300px;
        }
        
        .comparison-header {
            padding: 20px;
            text-align: center;
            background: #0463FA;
            color: white;
            font-size: 1.3rem;
            font-weight: 500;
        }
        
        .comparison-content {
            padding: 25px;
        }
        
        .comparison-container {
            position: relative;
            width: 100%;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(4, 99, 250, 0.1);
        }
        
        .comparison-before, .comparison-after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .comparison-after {
            width: 50%;
            border-right: 3px solid white;
        }
        
        .slider-handle {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: white;
            transform: translateX(-50%);
            z-index: 4;
            pointer-events: none;
            box-shadow: 0 0 10px rgba(4, 99, 250, 0.5);
        }
        
        .slider-handle::after {
            content: '↔';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: #0463FA;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 15px rgba(4, 99, 250, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
        
        .comparison-slider {
            position: absolute;
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 100%;
            background: transparent;
            outline: none;
            margin: 0;
            z-index: 3;
            cursor: ew-resize;
        }
        
        .slider-label {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }
        
        .comparison-desc {
            margin-top: 15px;
            line-height: 1.6;
            color: #555;
            text-align: center;
        }
        
        .instructions {
            text-align: center;
            margin-top: 40px;
            color: #0463FA;
            font-weight: 500;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(4, 99, 250, 0.1);
            max-width: 600px;
            margin: 40px auto 0;
        }
        
        @media (max-width: 1024px) {
            .comparison-card {
                width: calc(50% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .comparison-section {
                flex-direction: column;
                align-items: center;
            }
            
            .comparison-card {
                width: 100%;
                max-width: 100%;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
        }

            


















/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.dropdown-menu {
  font-family: 'Roboto', sans-serif;
  background: #f9fafb; /* Light stylish background */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  transition: all 0.3s ease;
}

/* Default stylish dropdown items */
.dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 20px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid #0463FA; /* Stylish default left border */
  border-radius: 6px;
  margin: 4px 8px;
  background: #ffffff; /* subtle card-like bg */
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.3s ease;
}

/* Arrow icon always visible */
.dropdown-menu .dropdown-item::before {
  content: "➤";
  font-size: 14px;
  color: #0463FA;
  margin-right: 8px;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateX(0);
}

/* Hover / Tap effect: #658ce0 */
.dropdown-menu .dropdown-item:hover {
  background-color: #e7ecfb;   /* very light #658ce0 bg */
  color: #658ce0;              /* text color #658ce0 */
  border-left-color: #658ce0;  /* left border change */
  box-shadow: 0 4px 8px rgba(101,140,224,0.25); /* soft blue shadow */
  transform: translateY(-2px); /* slight lift */
}

.dropdown-menu .dropdown-item:hover::before {
  color: #658ce0; /* arrow icon blue */
}

/* =========================
   Mobile Compact Fix
========================= */
@media (max-width: 767px) {
  .dropdown-menu {
    border-radius: 10px;
    padding: 4px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 14px;
    margin: 3px 6px;
    gap: 6px;
    border-left-width: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  }

  .dropdown-menu .dropdown-item::before {
    font-size: 12px;
    margin-right: 6px;
  }
}





































   .serG1 {
      font-family: "Noto Sans Bengali", sans-serif;
      background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 30px 10px;
      position: relative;
      overflow-x: hidden;
    }

    .serG1::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 10% 20%, rgba(120, 180, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(120, 180, 255, 0.1) 0%, transparent 20%);
      z-index: -1;
    }

    .serG2 {
      background: linear-gradient(135deg, #eaf2ff 0%, #d5e6ff 100%);
      border: 2px solid #c8ddff;
      border-radius: 30px;
      padding: 12px 25px;
      color: #0062ff;
      font-weight: 700;
      margin-bottom: 40px;
      box-shadow: 0 8px 20px rgba(0, 98, 255, 0.1);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .serG2::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.7s ease;
      z-index: -1;
    }

    .serG2:hover::before {
      left: 100%;
    }

    .serG3 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      width: 100%;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .serG3 {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        max-width: 900px;
      }
    }

    .serG4, .serG5, .serG6, .serG7, .serG8, .serG9, .serG10, .serG11 {
      background: linear-gradient(145deg, #ffffff, #eef4ff);
      border: 1.5px solid #b7d3ff;
      border-radius: 16px;
      text-align: center;
      padding: 30px 20px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 6px 15px rgba(0, 98, 255, 0.08);
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }

    .serG4.animate-in, .serG5.animate-in, .serG6.animate-in, .serG7.animate-in, 
    .serG8.animate-in, .serG9.animate-in, .serG10.animate-in, .serG11.animate-in {
      animation: serG12 0.7s ease-out forwards;
    }

    .serG4 { animation-delay: 0.1s; }
    .serG5 { animation-delay: 0.2s; }
    .serG6 { animation-delay: 0.3s; }
    .serG7 { animation-delay: 0.4s; }
    .serG8 { animation-delay: 0.5s; }
    .serG9 { animation-delay: 0.6s; }
    .serG10 { animation-delay: 0.7s; }
    .serG11 { animation-delay: 0.8s; }

    @keyframes serG12 {
      0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
      }
      70% {
        transform: translateY(-5px) scale(1.02);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .serG4::before, .serG5::before, .serG6::before, .serG7::before, 
    .serG8::before, .serG9::before, .serG10::before, .serG11::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .serG4::after, .serG5::after, .serG6::after, .serG7::after, 
    .serG8::after, .serG9::after, .serG10::after, .serG11::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      transition: left 0.7s ease;
    }

    .serG4:hover, .serG5:hover, .serG6:hover, .serG7:hover, 
    .serG8:hover, .serG9:hover, .serG10:hover, .serG11:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0, 98, 255, 0.2);
      border-color: #8abfff;
      background: linear-gradient(145deg, #ffffff, #e6f0ff);
    }

    .serG4:hover::after, .serG5:hover::after, .serG6:hover::after, .serG7:hover::after, 
    .serG8:hover::after, .serG9:hover::after, .serG10:hover::after, .serG11:hover::after {
      left: 100%;
    }

    .serG13, .serG14, .serG15, .serG16, .serG17, .serG18, .serG19, .serG20 {
      position: relative;
      margin-bottom: 15px;
      z-index: 2;
    }

    .serG4 i, .serG5 i, .serG6 i, .serG7 i, .serG8 i, .serG9 i, .serG10 i, .serG11 i {
      font-size: 40px;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: inline-block;
    }

    .serG4:hover i, .serG5:hover i, .serG6:hover i, .serG7:hover i, 
    .serG8:hover i, .serG9:hover i, .serG10:hover i, .serG11:hover i {
      transform: scale(1.2) rotate(-5deg);
    }

    .serG4 h4, .serG5 h4, .serG6 h4, .serG7 h4, .serG8 h4, .serG9 h4, .serG10 h4, .serG11 h4 {
      color: #0d1b3d;
      font-size: 17px;
      font-weight: 600;
      margin: 0;
      transition: color 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .serG4:hover h4, .serG5:hover h4, .serG6:hover h4, .serG7:hover h4, 
    .serG8:hover h4, .serG9:hover h4, .serG10:hover h4, .serG11:hover h4 {
      color: #0046d3;
    }

    .serG21, .serG22, .serG23, .serG24, .serG25, .serG26, .serG27, .serG28 {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 8px;
      height: 8px;
      background: #7db4ff;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 2;
    }

    .serG4:hover .serG21, .serG5:hover .serG22, .serG6:hover .serG23, .serG7:hover .serG24, 
    .serG8:hover .serG25, .serG9:hover .serG26, .serG10:hover .serG27, .serG11:hover .serG28 {
      opacity: 1;
    }

    .serG29, .serG30, .serG31, .serG32, .serG33, .serG34, .serG35, .serG36 {
      position: absolute;
      top: -8px;
      right: -8px;
      background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
      color: white;
      font-size: 10px;
      padding: 4px 8px;
      border-radius: 10px;
      transform: scale(0);
      transition: transform 0.3s ease;
      z-index: 3;
    }

    .serG4:hover .serG29, .serG7:hover .serG32 {
      transform: scale(1);
    }

    .serG37, .serG38, .serG39, .serG40, .serG41, .serG42, .serG43, .serG44 {
      position: relative;
      z-index: 2;
    }

    .serG45, .serG46, .serG47, .serG48, .serG49, .serG50, .serG51, .serG52 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(0, 98, 255, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .serG4:hover .serG45, .serG5:hover .serG46, .serG6:hover .serG47, .serG7:hover .serG48, 
    .serG8:hover .serG49, .serG9:hover .serG50, .serG10:hover .serG51, .serG11:hover .serG52 {
      opacity: 1;
    }

    .serG4 i { color: #4a6fff; }
    .serG5 i { color: #ff6b6b; }
    .serG6 i { color: #6bcf7f; }
    .serG7 i { color: #ffa94d; }
    .serG8 i { color: #9d4edd; }
    .serG9 i { color: #00b4d8; }
    .serG10 i { color: #f72585; }
    .serG11 i { color: #2a9d8f; }














































        .teaa1 {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      padding: 50px 20px;
    }

    .teaa2 {
      font-size: 2.6rem;
      background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 50%, #42a5f5 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 20px;
      font-weight: 800;
      position: relative;
      display: inline-block;
      letter-spacing: 1px;
    }

    .teaa2::after {
      content: '';
      position: absolute;
      bottom: -7px;
      left: 20%;
      width: 60%;
      height: 4px;
      background: linear-gradient(90deg, transparent, #1a73e8, transparent);
      border-radius: 3px;
    }

    .teaa3 {
      font-size: 1.15rem;
      color: #444;
      margin-bottom: 50px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      padding: 12px 25px;
      background: rgba(26, 115, 232, 0.08);
      border-radius: 30px;
      line-height: 1.6;
    }

    .teaa4 {
      position: relative;
      overflow: hidden;
      padding: 25px 10px;
      cursor: grab;
      user-select: none;
    }

    .teaa4:active {
      cursor: grabbing;
    }

    .teaa5 {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      gap: 25px;
      will-change: transform;
    }

    .teaa6 {
      flex: 0 0 calc(33.333% - 17px);
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(26, 115, 232, 0.15);
      overflow: hidden;
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
      min-height: 480px;
      position: relative;
    }

    .teaa6:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 25px 45px rgba(26, 115, 232, 0.25);
    }

    .teaa8 {
      width: 100%;
      height: 230px;
      object-fit: cover;
      transition: all 0.5s ease;
      filter: brightness(0.95);
    }

    .teaa6:hover .teaa8 {
      transform: scale(1.08);
      filter: brightness(1.05);
    }

    .teaa9 {
      font-size: 1.4rem;
      font-weight: 700;
      background: linear-gradient(135deg, #0d47a1, #1a73e8);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin: 20px 15px 6px;
      position: relative;
      display: inline-block;
    }

    .teaa9::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 35px;
      height: 2px;
      background: linear-gradient(90deg, #1a73e8, transparent);
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .teaa6:hover .teaa9::after {
      width: 100%;
    }

    .teaa10 {
      font-size: 0.95rem;
      color: #555;
      margin: 0 15px 12px;
      font-weight: 600;
      background: rgba(26, 115, 232, 0.1);
      padding: 6px 14px;
      border-radius: 20px;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .teaa6:hover .teaa10 {
      background: rgba(26, 115, 232, 0.15);
    }

    .teaa11 {
      font-size: 0.9rem;
      color: #444;
      margin: 0 15px 20px;
      flex-grow: 1;
      line-height: 1.6;
      padding: 12px;
      background: rgba(248, 249, 250, 0.8);
      border-radius: 12px;
      border-left: 3px solid #1a73e8;
      transition: all 0.3s ease;
    }

    .teaa6:hover .teaa11 {
      background: #fff;
      transform: translateX(3px);
    }

    .teaa12 {
      display: flex;
      justify-content: center;
      margin-top: 35px;
      gap: 15px;
    }

    .teaa13 {
      background: linear-gradient(135deg, #0d47a1, #1a73e8);
      color: white;
      border: none;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    }

    .teaa13:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(26, 115, 232, 0.5);
    }

    .teaa14 {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      gap: 10px;
    }

    .teaa15 {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .teaa15.active {
      background: linear-gradient(135deg, #0d47a1, #1a73e8);
      transform: scale(1.3);
    }

    @media (max-width: 992px) {
      .teaa6 {
        flex: 0 0 calc(50% - 13px);
        min-height: 460px;
      }
    }

    @media (max-width: 768px) {
      .teaa2 {
        font-size: 2rem;
      }
      .teaa3 {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 10px 15px;
      }
      .teaa6 {
        flex: 0 0 calc(100% - 20px);
        margin: 0 auto;
        min-height: 440px;
      }
      .teaa8 {
        height: 210px;
      }
      .teaa13 {
        width: 48px;
        height: 48px;
      }
    }

    @media (max-width: 480px) {
      .teaa2 {
        font-size: 1.6rem;
      }
      .teaa3 {
        font-size: 0.9rem;
      }
      .teaa1 {
        padding: 30px 12px;
      }
      .teaa6 {
        min-height: 420px;
      }
      .teaa8 {
        height: 190px;
      }
    }
    













































         .bpf1 {
           
            color: #333;
            min-height: 60vh;
            padding: 40px 20px;
        }

        .bpf2 {
            max-width: 1200px;
            margin: 0 auto;
        }

        .bpf3 {
            text-align: center;
            margin-bottom: 60px;
        }

        .bpf5 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #1a73e8, #0d47a1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .bpf7 {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }

        .bpf8 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        /* Clean Card Design */
        .bpf9 {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(26, 115, 232, 0.12);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: bpf10 0.6s ease forwards;
        }

        .bpf9:nth-child(1) { animation-delay: 0.1s; }
        .bpf9:nth-child(2) { animation-delay: 0.2s; }
        .bpf9:nth-child(3) { animation-delay: 0.3s; }

        .bpf9:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(26, 115, 232, 0.18);
        }

        /* Clean Header */
        .bpf12 {
            padding: 25px 25px 15px;
            text-align: center;
            background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
            border-bottom: 1px solid rgba(26, 115, 232, 0.1);
        }

        .bpf13 {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, #1a73e8, #0d47a1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
            position: relative;
            overflow: hidden;
        }

        /* Enhanced Icon Animations */
        .bpf14 {
            font-size: 1.8rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        /* Tooth Icon Animation */
        .bpf39 {
            animation: bpf40 2s ease-in-out infinite;
        }

        /* Star Icon Animation */
        .bpf41 {
            animation: bpf42 1.8s ease-in-out infinite;
        }

        /* Smile Icon Animation */
        .bpf43 {
            animation: bpf44 2.2s ease-in-out infinite;
        }

        /* Shine Effect */
        .bpf13::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
            transform: rotate(45deg);
            animation: bpf45 2.5s linear infinite;
        }

        .bpf15 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #1a73e8;
            font-weight: 600;
        }

        .bpf16 {
            color: #666;
            font-size: 1rem;
        }

        /* Clean Comparison Area */
        .bpf17 {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            cursor: col-resize;
            background: #f8fdff;
        }

        .bpf19, .bpf20 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .bpf19 {
            width: 50%;
            overflow: hidden;
            z-index: 2;
        }

        .bpf20 {
            z-index: 1;
        }

        .bpf35 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Clean Slider */
        .bpf22 {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: #1a73e8;
            z-index: 3;
            transition: left 0.2s ease;
        }

        .bpf22::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: #1a73e8;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(26, 115, 232, 0.8);
            transition: all 0.3s ease;
            cursor: grab;
            animation: bpf53 2s ease-in-out infinite;
        }

        .bpf22::after {
            content: '⟷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 16px;
            color: white;
            font-weight: bold;
        }

        .bpf17:hover .bpf22::before {
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Clean Labels */
        .bpf23 {
            position: absolute;
            top: 15px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 4;
        }

        .bpf24 {
            background: rgba(26, 115, 232, 0.9);
            color: white;
            padding: 8px 16px;
            border-radius: 15px;
            font-weight: 500;
            font-size: 0.8rem;
            backdrop-filter: blur(5px);
        }

        /* Clean Footer */
        .bpf27 {
            padding: 20px;
            background: #f8fdff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(26, 115, 232, 0.1);
        }

        .bpf28 {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .bpf29 {
            color: #1a73e8;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .bpf29::before {
            content: '⏱️';
            font-size: 1rem;
        }

        .bpf30 {
            color: #1a73e8;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .bpf30::before {
            content: '⭐';
            font-size: 1rem;
        }

        /* Instructions */
        .bpf31 {
            text-align: center;
            margin-top: 40px;
            padding: 25px;
            background: white;
            border-radius: 15px;
            max-width: 600px;
            margin: 50px auto 0;
            box-shadow: 0 8px 25px rgba(26, 115, 232, 0.1);
        }

        .bpf33 {
            margin-bottom: 10px;
            font-size: 1.3rem;
            color: #1a73e8;
            font-weight: 600;
        }

        .bpf34 {
            color: #666;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* Animations */
        @keyframes bpf10 {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced Icon Animations */
        @keyframes bpf40 {
            0%, 100% { 
                transform: scale(1) rotate(0deg); 
            }
            20% { 
                transform: scale(1.3) rotate(-10deg); 
            }
            40% { 
                transform: scale(1.2) rotate(10deg); 
            }
            60% { 
                transform: scale(1.4) rotate(-5deg); 
            }
            80% { 
                transform: scale(1.3) rotate(5deg); 
            }
        }

        @keyframes bpf42 {
            0%, 100% { 
                transform: scale(1) rotate(0deg); 
            }
            25% { 
                transform: scale(1.4) rotate(90deg); 
            }
            50% { 
                transform: scale(1.2) rotate(180deg); 
            }
            75% { 
                transform: scale(1.5) rotate(270deg); 
            }
        }

        @keyframes bpf44 {
            0%, 100% { 
                transform: scale(1); 
            }
            20% { 
                transform: scale(1.3); 
            }
            40% { 
                transform: scale(1.1); 
            }
            60% { 
                transform: scale(1.4); 
            }
            80% { 
                transform: scale(1.2); 
            }
        }

        @keyframes bpf45 {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        @keyframes bpf53 {
            0%, 100% { 
                box-shadow: 0 0 15px rgba(26, 115, 232, 0.8);
            }
            50% { 
                box-shadow: 0 0 25px rgba(26, 115, 232, 1), 0 0 35px rgba(26, 115, 232, 0.6);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .bpf5 {
                font-size: 2.2rem;
            }
            
            .bpf8 {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .bpf17 {
                height: 220px;
            }
            
            .bpf15 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .bpf5 {
                font-size: 1.8rem;
            }
            
            .bpf17 {
                height: 200px;
            }
            
            .bpf15 {
                font-size: 1.1rem;
            }
            
            .bpf7 {
                font-size: 1rem;
            }
        }















































        
        .revv1 {
         
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 5px;
            overflow-x: hidden;
           
        }

        .revv2 {
            max-width: 1400px;
            width: 100%;
            padding: 20px;
        }

        .revv3 {
            text-align: center;
            padding: 40px 0;
            margin-bottom: 40px;
            position: relative;
        }

        .revv4 {
            font-size: 3.5rem;
            margin-bottom: 15px;
           
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            display: inline-block;
            animation: revv5 3s ease-in-out infinite;
        }

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

        .revv4::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #1a73e8, #0d47a1);
            border-radius: 2px;
        }

        .revv6 {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #555;
        }

        .revv7 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            perspective: 1000px;
        }

        .revv8 {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.5);
            opacity: 0;
            transform: translateY(50px) rotateX(10deg);
            animation: revv9 0.8s forwards;
        }

        @keyframes revv9 {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .revv8:nth-child(1) { animation-delay: 0.1s; }
        .revv8:nth-child(2) { animation-delay: 0.2s; }
        .revv8:nth-child(3) { animation-delay: 0.3s; }
        .revv8:nth-child(4) { animation-delay: 0.4s; }
        .revv8:nth-child(5) { animation-delay: 0.5s; }
        .revv8:nth-child(6) { animation-delay: 0.6s; }
        .revv8:nth-child(7) { animation-delay: 0.7s; }
        .revv8:nth-child(8) { animation-delay: 0.8s; }
        .revv8:nth-child(9) { animation-delay: 0.9s; }
        .revv8:nth-child(10) { animation-delay: 1.0s; }
        .revv8:nth-child(11) { animation-delay: 1.1s; }
        .revv8:nth-child(12) { animation-delay: 1.2s; }
        .revv8:nth-child(13) { animation-delay: 1.3s; }
        .revv8:nth-child(14) { animation-delay: 1.4s; }
        .revv8:nth-child(15) { animation-delay: 1.5s; }

        .revv8::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1a73e8, #0d47a1, #1a73e8);
            background-size: 200% 100%;
            animation: revv10 3s infinite linear;
        }

        @keyframes revv10 {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .revv8:hover {
            transform: translateY(-15px) scale(1.03) rotate(1deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .revv11 {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .revv12 {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #0d47a1;
            border: 3px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .revv12::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(30deg);
            transition: all 0.5s ease;
        }

        .revv8:hover .revv12 {
            transform: scale(1.1) rotate(5deg);
        }

        .revv8:hover .revv12::after {
            transform: rotate(30deg) translate(20%, 20%);
        }

        .revv13 h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: #0d47a1;
        }

        .revv13 p {
            color: #666;
            font-size: 0.95rem;
            background: #f5f5f5;
            padding: 5px 10px;
            border-radius: 20px;
            display: inline-block;
        }

        .revv14 {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .revv14 i {
            transition: all 0.3s ease;
        }

        .revv8:hover .revv14 i {
            transform: scale(1.2);
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
        }

        .revv15 {
            flex-grow: 1;
            margin-bottom: 20px;
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
            position: relative;
            padding-left: 20px;
            transition: all 0.3s ease;
        }

        .revv15::before {
           
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 60px;
            color: #e3f2fd;
            font-family: Georgia, serif;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .revv8:hover .revv15::before {
            color: #bbdefb;
            transform: scale(1.1);
        }

        .revv17 {
            position: absolute;
            bottom: 15px;
            right: 15px;
            font-size: 24px;
            color: #e3f2fd;
            opacity: 0.7;
            transition: all 0.5s ease;
        }

        .revv8:hover .revv17 {
            transform: scale(1.5) rotate(15deg);
            color: #0d47a1;
            opacity: 1;
        }

        .revv8:nth-child(2n) {
            background: linear-gradient(135deg, #f8fdff 0%, #ffffff 100%);
        }

        .revv8:nth-child(3n) {
            transform: rotate(1deg);
        }

        .revv8:nth-child(3n):hover {
            transform: rotate(1deg) translateY(-15px) scale(1.03);
        }

        .revv8:nth-child(5n) {
            transform: rotate(-1deg);
        }

        .revv8:nth-child(5n):hover {
            transform: rotate(-1deg) translateY(-15px) scale(1.03);
        }

        .revv18 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .revv19 {
            position: absolute;
            width: 40px;
            height: 40px;
            background: rgba(26, 115, 232, 0.1);
            border-radius: 50%;
            animation: revv20 15s infinite linear;
        }

        .revv19:nth-child(1) {
            top: 10%;
            left: 5%;
            width: 30px;
            height: 30px;
            animation-delay: 0s;
        }

        .revv19:nth-child(2) {
            top: 70%;
            left: 80%;
            width: 50px;
            height: 50px;
            animation-delay: 2s;
        }

        .revv19:nth-child(3) {
            top: 40%;
            left: 90%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .revv19:nth-child(4) {
            top: 80%;
            left: 10%;
            width: 60px;
            height: 60px;
            animation-delay: 6s;
        }

        .revv19:nth-child(5) {
            top: 20%;
            left: 70%;
            width: 25px;
            height: 25px;
            animation-delay: 8s;
        }

        @keyframes revv20 {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(10px, 15px) rotate(90deg);
            }
            50% {
                transform: translate(20px, 5px) rotate(180deg);
            }
            75% {
                transform: translate(5px, 20px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        .revv21 {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 0.9rem;
            width: 100%;
            margin-top: 40px;
        }

        @media (max-width: 768px) {
            .revv4 {
                font-size: 2.5rem;
            }
            
            .revv7 {
                grid-template-columns: 1fr;
            }
            
            .revv8 {
                padding: 20px;
            }
            
            .revv12 {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .revv4 {
                font-size: 2rem;
            }
            
            .revv8 {
                padding: 15px;
            }
        }
