/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:#0F4C81;

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-bar a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.top-bar a:hover{

    color:#7dd3fc;

}

.top-contact i{

    margin-right:6px;

}

.social{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:34px;

    height:34px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    margin-left:8px;

    transition:.3s;

}

.social:hover{

    background:#1CB5E0;

    color:#fff;

    transform:translateY(-2px);

}

/*=============================================
HEADER
=============================================*/

#mainHeader{

    position:sticky;

    top:0;

    z-index:9999;

    background:#ffffff;

    box-shadow:0 5px 25px rgba(0,0,0,.06);

}

.navbar{

    padding:15px 0;

}

.navbar-brand img{

    transition:.3s;

}

.navbar-nav .nav-link{

    color:#1F2937;

    font-weight:500;

    margin:0 10px;

    transition:.3s;

    position:relative;

}

.navbar-nav .nav-link:hover{

    color:#0F4C81;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:#0F4C81;

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.dropdown-menu{

    border:none;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    padding:10px;

}

.dropdown-item{

    border-radius:10px;

    padding:10px 15px;

}

.dropdown-item:hover{

    background:#F1F5F9;

    color:#0F4C81;

}

.btn-primary{

    background:#0F4C81;

    border:none;

}

.btn-primary:hover{

    background:#1CB5E0;

}

.btn-outline-primary{

    border-color:#0F4C81;

    color:#0F4C81;

}

/*==================================================
HERO
==================================================*/

.hero-section{

    position:relative;

    background:linear-gradient(135deg,#0F4C81,#1CB5E0);

    color:#fff;

    overflow:hidden;

    padding:120px 0 180px;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 20px;

    border-radius:30px;

    backdrop-filter:blur(10px);

}

.hero-title{

    font-size:56px;

    font-weight:700;

}

.hero-subtitle{

    color:#dbeafe;

    margin-bottom:25px;

}

.hero-description{

    font-size:18px;

    line-height:1.8;

    opacity:.95;

}

.hero-features div{

    margin-bottom:12px;

    font-size:17px;

}

.hero-features i{

    color:#4ADE80;

    margin-right:10px;

}

.hero-buttons .btn{

    margin-bottom:15px;

}

.hero-doctor{

    max-height:650px;

    animation:floatDoctor 4s ease-in-out infinite;

}

.hero-card{

    position:absolute;

    background:#fff;

    color:#1F2937;

    padding:18px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    min-width:170px;

    text-align:center;

}

.hero-card i{

    color:#0F4C81;

    font-size:28px;

}

.card-1{

    left:0;

    top:80px;

}

.card-2{

    right:0;

    top:180px;

}

.card-3{

    left:40px;

    bottom:50px;

}

.hero-wave{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

}

@keyframes floatDoctor{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=============================================
QUICK APPOINTMENT
=============================================*/

.quick-appointment{

    margin-top:-90px;

    position:relative;

    z-index:100;

}

.quick-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.quick-card label{

    font-weight:600;

    color:#1F2937;

}

.quick-card .form-control,

.quick-card .form-select{

    height:52px;

    border-radius:12px;

}

.quick-card .btn{

    height:52px;

    border-radius:12px;

}

/*=====================================
STATISTICS
======================================*/

.statistics-section{

    background:#F8FAFC;

}

.section-tag{

    display:inline-block;

    background:#E0F2FE;

    color:#0F4C81;

    padding:8px 20px;

    border-radius:30px;

    font-weight:600;

}

.section-title{

    font-size:40px;

    font-weight:700;

    color:#1F2937;

}

.section-subtitle{

    color:#64748B;

    font-size:18px;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.stat-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0F4C81,#1CB5E0);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.stat-card h2{

    font-size:42px;

    font-weight:700;

    color:#0F4C81;

}

.stat-card p{

    color:#64748B;

    margin:0;

    font-size:17px;

}

/*=====================================
TREATMENTS
======================================*/

.treatment-section{

    background:#ffffff;

}

.treatment-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    border:1px solid #E5E7EB;

    height:100%;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.treatment-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(15,76,129,.15);

}

.treatment-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:linear-gradient(135deg,#0F4C81,#1CB5E0);

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    margin:0 auto 25px;

}

.treatment-card h4{

    font-size:24px;

    color:#1F2937;

    font-weight:600;

    margin-bottom:15px;

}

.treatment-card p{

    color:#64748B;

    min-height:70px;

    line-height:1.7;

}

.treatment-card .btn{

    margin-top:15px;

    padding:10px 28px;

    font-weight:600;

}

/*=====================================
WHY CHOOSE
======================================*/

.why-section{

    background:#F8FAFC;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    border:1px solid #EEF2F7;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(15,76,129,.12);

}

.feature-icon{

    width:72px;

    height:72px;

    background:#EAF4FF;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.feature-icon img{

    width:42px;

    height:42px;

}

.feature-card h5{

    font-weight:600;

    color:#1F2937;

    margin-bottom:12px;

}

.feature-card p{

    color:#64748B;

    line-height:1.7;

    margin-bottom:0;

}

/*=========================================
HOSPITALS
=========================================*/

.hospital-card{

    border-radius:20px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.hospital-card:hover{

    transform:translateY(-12px);

}

.hospital-image{

    width:100%;

    height:250px;

    object-fit:cover;

}

.hospital-body{

    padding:25px;

}

.hospital-body h4{

    font-weight:700;

    margin-bottom:15px;

}

.hospital-body p{

    color:#64748B;

    min-height:60px;

}

/*======================================
MEET DOCTOR
=======================================*/

.doctor-section{

    background:#ffffff;

}

.doctor-image img{

    border-radius:25px;

}

.doctor-list{

    list-style:none;

    padding:0;

}

.doctor-list li{

    padding:12px 0;

    border-bottom:1px solid #eee;

    position:relative;

    padding-left:30px;

}

.doctor-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#22C55E;

    font-weight:bold;

    font-size:20px;

}

/*=========================================
ADVANCED TECHNOLOGY
=========================================*/

.technology-section{

    background:#F8FAFC;

}

.technology-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.technology-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.technology-image{

    height:220px;

    overflow:hidden;

}

.technology-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.technology-card:hover img{

    transform:scale(1.08);

}

.technology-card h4{

    padding:20px 20px 10px;

    color:#0F4C81;

    font-weight:700;

}

.technology-card p{

    padding:0 20px 25px;

    color:#64748B;

    line-height:1.8;

}

/*=========================================
PATIENT JOURNEY
=========================================*/

.journey-section{

    background:#ffffff;

}

.journey-timeline{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    position:relative;

    flex-wrap:wrap;

}

.journey-step{

    flex:1;

    min-width:180px;

    text-align:center;

    position:relative;

    padding:20px;

}

.journey-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0F4C81,#1CB5E0);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:36px;

    margin-bottom:20px;

    box-shadow:0 15px 30px rgba(15,76,129,.20);

}

.journey-step h5{

    font-weight:700;

    margin-bottom:12px;

    color:#1F2937;

}

.journey-step p{

    color:#64748B;

    font-size:15px;

    line-height:1.7;

}

.journey-line{

    height:4px;

    background:#D6EAF8;

    flex:0.3;

    margin-top:45px;

}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonial-section{

    background:#F8FAFC;

}

.testimonial-card{

    max-width:850px;

    margin:auto;

    background:#fff;

    border-radius:25px;

    padding:50px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    text-align:center;

}

.stars{

    color:#F59E0B;

    font-size:28px;

    letter-spacing:4px;

    margin-bottom:20px;

}

.testimonial-text{

    font-size:20px;

    line-height:1.9;

    color:#475569;

    font-style:italic;

}

.testimonial-user{

    margin-top:35px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

}

.testimonial-user img{

    width:80px;

    height:80px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #0F4C81;

}

.testimonial-user h5{

    margin:0;

    font-weight:700;

}

.testimonial-user small{

    color:#64748B;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:#0F4C81;

    border-radius:50%;

    padding:20px;

}

/*=========================================
FAQ
=========================================*/

.faq-section{

    background:#ffffff;

}

.accordion-item{

    border:none;

    border-radius:15px !important;

    margin-bottom:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.accordion-button{

    background:#fff;

    font-weight:600;

    font-size:17px;

    padding:22px;

}

.accordion-button:not(.collapsed){

    background:#0F4C81;

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:22px;

    line-height:1.8;

    color:#64748B;

}

/*=========================================
CONTACT
=========================================*/

.contact-section{

    background:#F8FAFC;

}

.contact-info,
.contact-form{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    margin-bottom:25px;

}

.contact-icon{

    width:60px;

    height:60px;

    background:linear-gradient(135deg,#0F4C81,#1CB5E0);

    color:#ffffff;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-right:20px;

    flex-shrink:0;

}

.contact-item h6{

    margin-bottom:5px;

    font-weight:700;

}

.contact-item p{

    margin:0;

    color:#64748B;

}

.contact-form .form-control,
.contact-form .form-select{

    height:52px;

    border-radius:12px;

}

.contact-form textarea{

    height:auto !important;

}

.map-card{

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*=========================================
FOOTER
=========================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

}


.footer-heading{

    color:#0B2B50;

    font-size:22px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-top{

    background:linear-gradient(135deg,#0F4C81,#1CB5E0);

    color:#fff;

    padding:60px 0;

}

.footer-top h2{

    font-weight:700;

    margin-bottom:10px;

}

.footer-main{

    padding:70px 0 40px;

}

.footer-logo{

    color:#fff;

    font-weight:700;

    margin-bottom:20px;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

}
.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#2c3e50;

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    transition:.3s;

}

.footer-links a:hover{

    color:#0d6efd;

    padding-left:8px;

}
.footer-contact i{

    color:#1CB5E0;

    margin-right:10px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#1E293B;

    color:#fff;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-right:10px;

    transition:.3s;

}

.footer-social a:hover{

    background:#1CB5E0;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:20px 0;

    font-size:14px;

}

.footer-bottom a{

    color:#CBD5E1;

    text-decoration:none;

}


.treatment-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;

    display:flex;
    flex-direction:column;
}

.treatment-card:hover{
    transform:translateY(-8px);
}

.treatment-card img{
    width:100%;
    height:260px;      /* Same height for all images */
    object-fit:cover;  /* Crop without stretching */
    object-position:center;
}

.treatment-card .card-body{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.treatment-card h4{
    min-height:60px;
    font-weight:700;
}

.treatment-card p{
    flex:1;
    line-height:1.8;
}

.treatment-card .btn{
    margin-top:auto;
}

.page-header{
    background:#f8fbff;
}

.page-header img{
    max-height:420px;
    width:100%;
    object-fit:cover;
}

.page-header h1{
    font-size:3rem;
    color:#0b3d91;
}

.page-header .lead{
    font-size:1.15rem;
}

.breadcrumb{
    background:none;
    padding:0;
}

.section-title{

    font-size:28px;

    font-weight:700;

    color:#0b3d91;

}

.card{

    border-radius:18px;

}

.card-body{

    padding:30px;

}

.card ul{

    margin-bottom:0;

}

.card ul li{

    margin-bottom:12px;

}

.card p:last-child{

    margin-bottom:0;

}
.doctor-image{
    width:100%;
    max-width:350px;
    border-radius:20px;
}

.doctor-info-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
    border-radius:12px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.doctor-info-card:hover{
    transform:translateY(-5px);
}

.doctor-info-card i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.doctor-info-card p{
    margin:0;
    color:#666;
}

.section-tag{
    display:inline-block;
    padding:6px 18px;
    border-radius:50px;
    background:#e9f4ff;
    color:#0d6efd;
    font-weight:600;
}

.education-item{

    display:flex;

    gap:25px;

    margin-bottom:35px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.education-item:hover{

    transform:translateY(-5px);

}

.education-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    flex-shrink:0;

}

.education-content{

    flex:1;

}

.education-year{

    display:inline-block;

    padding:6px 15px;

    border-radius:30px;

    background:#eaf4ff;

    color:#0d6efd;

    font-weight:600;

    margin-bottom:15px;

}

.education-content h4{

    font-weight:700;

    margin-bottom:8px;

}

.education-content h6{

    margin-bottom:10px;

}

@media(max-width:768px){

.education-item{

    flex-direction:column;

    text-align:center;

}

.education-icon{

    margin:auto;

}

}

/*=====================================
    EDUCATION TIMELINE
======================================*/

.education-section{
    background:#f8fbff;
    padding:80px 0;
}

.education-timeline{
    position:relative;
    max-width:1100px;
    margin:auto;
}

.education-timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:4px;
    background:#0d6efd;
    transform:translateX(-50%);
}

/* Timeline Item */

.timeline-item{
    position:relative;
    width:50%;
    padding:20px 50px;
    margin-bottom:40px;
}

/* Left */

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

/* Right */

.timeline-item:nth-child(even){
    left:50%;
    text-align:left;
}

/* Timeline Circle */

.timeline-icon{
    position:absolute;
    top:30px;
    width:60px;
    height:60px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    z-index:2;
    box-shadow:0 5px 20px rgba(13,110,253,.35);
}

/* Left Icon */

.timeline-item:nth-child(odd) .timeline-icon{
    right:-30px;
}

/* Right Icon */

.timeline-item:nth-child(even) .timeline-icon{
    left:-30px;
}

/* Card */

.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.timeline-content:hover{
    transform:translateY(-6px);
}

.timeline-year{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:#eaf3ff;
    color:#0d6efd;
    font-weight:600;
    margin-bottom:15px;
}

.timeline-content h4{
    font-weight:700;
    margin-bottom:8px;
}

.timeline-content h6{
    color:#0d6efd;
    margin-bottom:10px;
}

.timeline-content p{
    margin-bottom:0;
    color:#666;
}

/*==========================
        MOBILE
===========================*/

@media(max-width:991px){

.education-timeline::before{
    left:30px;
}

.timeline-item{
    width:100%;
    left:0 !important;
    text-align:left;
    padding-left:90px;
    padding-right:20px;
}

.timeline-icon{
    left:0 !important;
    right:auto !important;
}

}

/*=================================
        Awards
==================================*/

.award-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.award-card:hover{

    transform:translateY(-8px);

}

.award-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#FFD700;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    box-shadow:0 8px 25px rgba(255,193,7,.35);

}

.award-year{

    display:inline-block;

    background:#eaf3ff;

    color:#0d6efd;

    padding:6px 18px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:18px;

}

.award-card h4{

    font-weight:700;

    margin-bottom:10px;

}

.award-card h6{

    color:#0d6efd;

    margin-bottom:15px;

}

.award-card p{

    color:#666;

    margin-bottom:0;

    line-height:1.8;

}

/*==============================
      Memberships
==============================*/

.membership-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.membership-card:hover{

    transform:translateY(-8px);

}

.membership-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

}

.membership-year{

    display:inline-block;

    padding:6px 16px;

    border-radius:25px;

    background:#eaf3ff;

    color:#0d6efd;

    font-weight:600;

    margin-bottom:15px;

}

.membership-card h4{

    font-weight:700;

    margin-bottom:10px;

}

.membership-card h6{

    color:#0d6efd;

    margin-bottom:15px;

}

.membership-card p{

    margin-bottom:0;

    color:#666;

    line-height:1.8;

}
/*==================================
    Treatment Hero
===================================*/

.page-banner{

    position:relative;

    overflow:hidden;

}

.banner-image{

    height:420px;

    object-fit:cover;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;

    align-items:center;

}

.banner-title{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.banner-description{

    color:#fff;

    font-size:18px;

    line-height:1.8;

    margin-bottom:30px;

}

.breadcrumb{

    background:none;

    padding:0;

    margin-bottom:20px;

}

.breadcrumb a{

    color:#fff;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#ddd;

}

@media(max-width:768px){

.banner-image{

    height:300px;

}

.banner-title{

    font-size:34px;

}

}

/*====================================
        Treatment Overview
=====================================*/

.treatment-content{

    font-size:17px;

    line-height:1.9;

    color:#555;

}

.treatment-content p{

    margin-bottom:18px;

}

.treatment-content ul{

    padding-left:20px;

}

.treatment-content li{

    margin-bottom:10px;

}

/*==================================
        Symptoms
===================================*/

.treatment-content{

    font-size:17px;

    line-height:1.9;

    color:#555;

}

.treatment-content p{

    margin-bottom:18px;

}

.treatment-content ul{

    padding-left:22px;

}

.treatment-content li{

    margin-bottom:10px;

}

.treatment-content strong{

    color:#0d6efd;

}

.treatment-content{

    font-size:17px;

    line-height:1.9;

    color:#555;

}

.treatment-content p{

    margin-bottom:18px;

}

.treatment-content ul{

    padding-left:22px;

}

.treatment-content li{

    margin-bottom:10px;

}

.treatment-content strong{

    color:#0d6efd;

}

/*=====================================
        FAQ
======================================*/

.accordion-item{

    border-radius:15px;

    overflow:hidden;

}

.accordion-button{

    font-size:18px;

    font-weight:600;

    padding:20px;

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#0d6efd;

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:25px;

    line-height:1.9;

    color:#555;

}


/*==================================
        CTA Section
===================================*/

.cta-section{

    background:#0d6efd;

    color:#fff;

}

.cta-section h2{

    font-weight:700;

}

.cta-section .btn{

    min-width:180px;

}
/*=========================================
Public Gallery
=========================================*/

.gallery-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    transition:.35s;

    height:100%;
}

.gallery-card:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 35px rgba(0,0,0,.15);

}

.gallery-image{

    position:relative;

    overflow:hidden;

}

.gallery-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-content{

    padding:20px;

}

.gallery-content h5{

    font-weight:600;

    margin-bottom:10px;

}

.gallery-content p{

    color:#666;

    font-size:14px;

    margin-bottom:15px;

}

.gallery-badge{

    position:absolute;

    top:15px;

    right:15px;

    background:#198754;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

    font-weight:600;

}

.logo {
    width: 130px;
    height: auto;
    display: block;
}

    /* =========================================================
   ADMIN SIDEBAR SCROLL
   ========================================================= */

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;

    width: 260px;

    height: 100vh;

    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: thin;
}

/* Chrome / Edge / Safari */
.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    border-radius: 10px;
}