body {
    font-family: Arial, sans-serif;
    background: #f8fbff;
}

/* Dropdown Parent */
.navbar-nav .dropdown {
    position: relative;
}

/* Dropdown Box */
.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    border: none;
    border-radius: 15px;
    padding: 12px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all .35s ease;
    z-index: 9999;
}

/* Show Dropdown */
.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Links */
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition: all .3s ease;
}

/* Hover Effect */
.dropdown-menu li a:hover {
    background: linear-gradient(90deg,#0066ff,#00bfff);
    color: #fff;
    padding-left: 28px;
}
@media(max-width:991px){

    .dropdown-menu{
        position: static;
        width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border-radius:10px;
        margin-top:10px;
        display:none;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }
}
.dropdown .fa-chevron-down{
    font-size:12px;
    margin-left:5px;
    transition:.3s;
}

.dropdown:hover .fa-chevron-down{
    transform:rotate(180deg);
}

.dropdown.active .fa-chevron-down{
    transform:rotate(180deg);
}
/* Floating Buttons */

.float-buttons{

    position:fixed;
    left:20px;
    bottom:30px;
    z-index:9999;

    display:flex;
    flex-direction:column;
    gap:15px;
}

.float-btn{

    width:60px;
    height:60px;

    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:24px;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);

    transition:0.4s;
    animation:pulse 2s infinite;
}

.float-btn:hover{

    transform:translateY(-5px) scale(1.1);

}

.call-btn{

    background:linear-gradient(135deg,#3B82F6,#2563EB);

}

.whatsapp-btn{

    background:linear-gradient(135deg,#10B981,#059669);

}

.top-btn{

    background:linear-gradient(135deg,#F59E0B,#EA580C);

}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(59,130,246,0.5);
    }

    70%{
        box-shadow:0 0 0 20px rgba(59,130,246,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(59,130,246,0);
    }
}

/* ===== HERO SLIDER ===== */

.hero-slider {
    position: relative;
    width: 100%;
    margin-top: 8%;
    height: 92vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 5;
    color: #fff;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-blue {
    background: #1746ff;
    color: white;
}

.btn-green {
    background: #36d44a;
    color: white;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

/* ===== MODERN ARROWS ===== */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slider-arrow:hover {
    background: #1746ff;
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background: #fff;
    width: 35px;
    border-radius: 30px;
}

/* Mobile */
@media(max-width:768px){

    .hero-slider{
        height: 75vh;
    }

    .hero-content{
        left: 20px;
        right: 20px;
    }

    .hero-content h1{
        font-size: 42px;
    }

    .hero-content p{
        font-size: 18px;
    }

    .slider-arrow{
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}
.hero-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 520px;
    z-index: 10;
    text-align: left;
}
.hero-content p {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-slider h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.35);
    margin-bottom: 20px;
}


.slider-buttons .btn-primary {
    background: linear-gradient(135deg, #4A6CF7, #6E8EFF);
    color: #fff;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
    border: none;
}

/* =========================
   Mission Vision Section
========================= */

.raise-mission-vision {
    overflow: hidden;
    background: #f5f9ff;
}

/* Card Design */
.raise-card {
    position: relative;
    min-height: 420px;
    padding: 70px 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: 0.5s ease;
}

/* Hover Animation */
.raise-card:hover {
    transform: translateY(-8px);
}

/* Gradient Backgrounds */
.mission-card {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.vision-card {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
}

/* Overlay */
.raise-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.12);
    z-index: 1;
}

/* Decorative Circle */
.raise-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

/* Content */
.raise-card .content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 520px;
}

/* Icon */
.top-icon {
    width: 75px;
    height: 75px;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
}

.top-icon i {
    font-size: 32px;
    color: #fff;
}

/* Headings */
.raise-card h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraphs */
.raise-card p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.95);
}

/* Button */
.raise-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #fff;
    color: #222;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    margin-top: 10px;
}

.raise-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:991px){

    .raise-card{
        min-height: auto;
        padding: 60px 30px;
    }

    .raise-card h2{
        font-size: 34px;
    }

    .raise-card p{
        font-size: 15px;
    }
}

@media(max-width:576px){

    .raise-card{
        padding: 50px 25px;
    }

    .raise-card h2{
        font-size: 28px;
    }

    .top-icon{
        width: 65px;
        height: 65px;
    }

    .top-icon i{
        font-size: 26px;
    }
}


/* ===================================
   MISSION VISION ALIGNMENT FIX
=================================== */

.raise-mission-vision .row{
    display: flex;
    flex-wrap: wrap;
}

/* Equal Height */
.raise-card{
    height: 100%;
    min-height: 520px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 55px;
    position: relative;
}

/* Same Heading Height */
.raise-card h2{
    min-height: 80px;
    display: flex;
    align-items: center;
}

/* Same Paragraph Alignment */
.raise-card p{
    margin-bottom: 18px;
    line-height: 1.9;
}

/* Button Alignment */
.raise-btn{
    margin-top: auto;
    align-self: flex-start;
}

/* Equal Content Width */
.raise-card .content{
    width: 100%;
    max-width: 540px;
}

/* Better Column Spacing */
.raise-mission-vision .col-lg-6{
    display: flex;
}

/* Mobile Responsive */
@media(max-width:991px){

    .raise-card{
        min-height: auto;
        padding: 60px 35px;
    }

    .raise-card h2{
        min-height: auto;
    }
}

@media(max-width:767px){

    .raise-card{
        padding: 50px 28px;
    }

    .raise-btn{
        width: 100%;
        text-align: center;
    }
}

.mission-card,
.vision-card{
    border-radius: 30px;
    overflow: hidden;
}
/* ====================================
   EMPOWERING SECTION PREMIUM DESIGN
==================================== */

.empowering-section{
    position: relative;
    padding: 110px 20px;
    overflow: hidden;

    background:
    linear-gradient(rgba(5,15,45,0.88),
    rgba(5,15,45,0.88)),
    url('assets/images/therapy-banner.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Center Content */
.empowering-wrapper{
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Decorative Shapes */
.shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    z-index: -1;
}

.shape-one{
    width: 260px;
    height: 260px;
    background: rgba(0,188,212,0.18);
    top: -70px;
    left: -80px;
}

.shape-two{
    width: 300px;
    height: 300px;
    background: rgba(255,193,7,0.16);
    bottom: -120px;
    right: -100px;
}

/* Tag */
.section-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;
    margin-bottom: 28px;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);

    color: #fff;
    font-size: 15px;
    font-weight: 600;

    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.section-tag i{
    color: #ffcc00;
}

/* Heading */
.empowering-section h2{
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empowering-section h2 span{
    color: #00d9ff;
    display: block;
}

/* Paragraph */
.empowering-section p{
    max-width: 900px;
    margin: auto;

    font-size: 20px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);

    margin-bottom: 40px;
}

/* Buttons */
.empowering-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Main Button */
.btn-main{
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    color: #fff;
    padding: 16px 38px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,114,255,0.35);
}

.btn-main:hover{
    transform: translateY(-5px);
    color: #fff;
}

/* Outline Button */
.btn-outline{
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 16px 38px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s ease;
    background: rgba(255,255,255,0.05);
}

.btn-outline:hover{
    background: #fff;
    color: #111;
}

/* Stats */
.empowering-stats{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box{
    min-width: 220px;
    padding: 30px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 24px;
    backdrop-filter: blur(8px);

    transition: 0.4s ease;
}

.stat-box:hover{
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
}

.stat-box h3{
    font-size: 42px;
    font-weight: 800;
    color: #00d9ff;
    margin-bottom: 10px;
}

.stat-box span{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */

@media(max-width:991px){

    .empowering-section{
        padding: 90px 20px;
        background-attachment: scroll;
    }

    .empowering-section h2{
        font-size: 42px;
    }

    .empowering-section p{
        font-size: 17px;
    }

    .stat-box{
        min-width: 180px;
    }
}

@media(max-width:767px){

    .empowering-section{
        padding: 70px 15px;
    }

    .empowering-section h2{
        font-size: 32px;
        line-height: 1.3;
    }

    .empowering-section p{
        font-size: 15px;
        line-height: 1.8;
    }

    .section-tag{
        font-size: 13px;
        padding: 10px 18px;
    }

    .btn-main,
    .btn-outline{
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .stat-box{
        width: 100%;
    }
}

@media(max-width:480px){

    .empowering-section h2{
        font-size: 26px;
    }

    .stat-box h3{
        font-size: 34px;
    }
}

/* =====================================
   DIRECTOR SECTION PREMIUM DESIGN
===================================== */

.director-section{
    padding: 110px 0;
    background: linear-gradient(to bottom,#ffffff,#f7fbff);
    overflow: hidden;
    position: relative;
}

/* Content */
.director-content{
    position: relative;
    z-index: 2;
}

/* Tag */
.director-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;

    background: rgba(0,114,255,0.08);
    color: #0072ff;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 25px;
}

.director-tag i{
    color: #0072ff;
}

/* Heading */
.director-content h2{
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 25px;
}

/* Paragraph */
.director-text{
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 22px;
}

/* Features */
.director-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.feature-box{
    display: flex;
    align-items: center;
    gap: 12px;

    background: #fff;
    padding: 18px 22px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: 0.4s ease;
}

.feature-box:hover{
    transform: translateY(-5px);
}

.feature-box i{
    color: #00c853;
    font-size: 20px;
}

.feature-box span{
    font-weight: 600;
    color: #222;
}

/* Buttons */
.director-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-primary-custom{
    display: inline-block;

    padding: 16px 34px;

    background: linear-gradient(135deg,#00c6ff,#0072ff);

    color: #fff;
    text-decoration: none;

    border-radius: 60px;

    font-weight: 700;

    transition: 0.4s ease;

    box-shadow: 0 12px 30px rgba(0,114,255,0.3);
}

.btn-primary-custom:hover{
    transform: translateY(-4px);
    color: #fff;
}

/* Outline Button */
.btn-outline-custom{
    display: inline-block;

    padding: 16px 34px;

    border: 2px solid #0072ff;

    color: #0072ff;
    text-decoration: none;

    border-radius: 60px;

    font-weight: 700;

    transition: 0.4s ease;
}

.btn-outline-custom:hover{
    background: #0072ff;
    color: #fff;
}

/* Image Wrapper */
.director-image-wrapper{
    position: relative;
    text-align: center;
}

/* Decorative Shape */
.image-shape{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    border-radius: 40px;
    top: 25px;
    left: 25px;
    z-index: 1;
}

/* Image */
.director-image{
    position: relative;
    z-index: 2;

    width: 100%;
    border-radius: 40px;

    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Floating Experience Card */
.experience-card{
    position: absolute;
    bottom: 30px;
    left: -20px;

    background: #fff;

    padding: 25px 30px;

    border-radius: 24px;

    z-index: 3;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.experience-card h3{
    font-size: 42px;
    font-weight: 800;
    color: #0072ff;
    margin-bottom: 5px;
}

.experience-card span{
    color: #666;
    font-weight: 600;
}

/* Responsive */

@media(max-width:991px){

    .director-section{
        padding: 80px 0;
    }

    .director-content h2{
        font-size: 40px;
    }

    .director-text{
        font-size: 16px;
    }

    .director-image-wrapper{
        margin-top: 50px;
    }
}

@media(max-width:767px){

    .director-content h2{
        font-size: 32px;
    }

    .director-features{
        grid-template-columns: 1fr;
    }

    .director-buttons{
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width: 100%;
        text-align: center;
    }

    .experience-card{
        left: 10px;
        bottom: 10px;
        padding: 18px 24px;
    }

    .experience-card h3{
        font-size: 32px;
    }
}

@media(max-width:480px){

    .director-section{
        padding: 70px 0;
    }

    .director-content h2{
        font-size: 28px;
    }

    .director-text{
        font-size: 15px;
        line-height: 1.8;
    }

    .image-shape{
        top: 15px;
        left: 15px;
    }
}


/* ===================================
   SERVICES SECTION
=================================== */

.services-section{
    background: #f7fbff;
    padding: 100px 0;
}

/* Heading */
.section-heading h2{
    font-size: 52px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.section-heading p{
    color: #666;
    font-size: 18px;
}

.section-badge{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;

    background: rgba(0,114,255,0.08);

    color: #0072ff;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 20px;
}

/* Card */
.service-card{
    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    transition: .4s ease;

    height: 100%;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.service-card:hover{
    transform: translateY(-10px);
}

/* Image */
.service-image img{
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Content */
.service-content{
    padding: 30px;
    text-align: center;
}

/* Icon */
.service-icon{
    width: 70px;
    height: 70px;

    margin: -65px auto 20px;

    border-radius: 20px;

    background: linear-gradient(135deg,#00c6ff,#0072ff);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    box-shadow: 0 12px 30px rgba(0,114,255,.35);
}

.service-icon i{
    color: #fff;
    font-size: 28px;
}

/* Title */
.service-content h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Button */
.service-btn{
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: linear-gradient(135deg,#00c6ff,#0072ff);

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: .4s;
}

.service-btn:hover{
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:767px){

    .section-heading h2{
        font-size: 32px;
    }

    .service-image img{
        height: 220px;
    }
}
/* ===================================
   SERVICES GAP FIX
=================================== */

/* Equal Column Height */
.services-section .col-lg-4,
.services-section .col-md-6{
    display: flex;
}

/* Card Full Height */
.service-card{
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    border-radius: 28px;
    overflow: hidden;
}

/* Equal Image Height */
.service-image{
    height: 250px;
    overflow: hidden;
}

.service-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Layout */
.service-content{
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 35px 25px;
}

/* Equal Title Height */
.service-content h3{
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 28px;
    line-height: 1.3;

    margin-bottom: 20px;
}

/* Push Button Bottom */
.service-btn{
    margin-top: auto;
}

/* Proper Row Gap */
.services-section .row{
    row-gap: 35px;
}

/* Remove Uneven White Space */
.service-card{
    margin-bottom: 0 !important;
}

/* Responsive */
@media(max-width:767px){

    .service-content h3{
        min-height: auto;
        font-size: 22px;
    }

    .service-image{
        height: 220px;
    }
}
/* Floating Social Buttons */
.floating-social{
    position: fixed;
    left: 15px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn{
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 24px;

    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}

.float-btn:hover{
    transform: scale(1.12);
    color: #fff;
}

/* Colors */
.call{
    background: linear-gradient(135deg,#00b4ff,#007bff);
}

.whatsapp{
    background: linear-gradient(135deg,#25d366,#128c7e);
}

.facebook{
    background: linear-gradient(135deg,#1877f2,#0d47a1);
}

.instagram{
    background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af);
}

/* Mobile Responsive */
@media(max-width:768px){

    .floating-social{
        left: 10px;
        bottom: 15px;
        gap: 10px;
    }

    .float-btn{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.nav-link.active,
.dropdown-item.active{
    background: linear-gradient(135deg,#0d2c91,#1565ff);
    color: #fff !important;
}

/* ======================
   FAQ SECTION
====================== */

.faq-section{
    padding:100px 0;
    background:#f7f9ff;
}

.faq-heading span{
    color:#1565ff;
    font-weight:700;
    letter-spacing:1px;
}

.faq-heading h2{
    font-size:48px;
    font-weight:800;
    margin:15px 0;
}

.faq-heading p{
    color:#666;
    max-width:650px;
    margin:auto;
}

.faq-wrapper{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    background:#fff;
    border-radius:20px;
    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.4s ease;
}

.faq-item:hover{
    transform:translateY(-4px);
}

.faq-question{
    width:100%;

    border:none;
    background:#fff;

    padding:25px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:18px;
    font-weight:700;

    cursor:pointer;
}

.faq-icon{
    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eef3ff;
    color:#1565ff;

    transition:.4s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .5s ease;
}

.faq-answer p{
    padding:0 30px 30px;
    color:#666;
    line-height:1.9;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-icon{
    background:#1565ff;
    color:#fff;
    transform:rotate(45deg);
}

.faq-item.active{
    border-left:6px solid #1565ff;
}

/* Mobile */

@media(max-width:768px){

    .faq-section{
        padding:70px 0;
    }

    .faq-heading h2{
        font-size:34px;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer p{
        padding:0 20px 25px;
    }
}
/* =========================
   STICKY HEADER
========================= */

#mainHeader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;

    background: #fff;
    transition: all .35s ease;
}

#mainHeader.scrolled{
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(10px);
}

#mainHeader .navbar-brand img{
    height: 85px;
    transition: .35s ease;
}

#mainHeader.scrolled .navbar-brand img{
    height: 65px;
}

.top-navbar{
    transition: .35s ease;
    padding: 15px 0;
}

#mainHeader.scrolled .top-navbar{
    padding: 6px 0;
}

/* Prevent content hiding behind fixed header */
/* body{
    padding-top: 145px;
} */
@media(max-width:991px){

   /*  body{
        padding-top:120px;
    } */

    #mainHeader .navbar-brand img{
        height:65px;
    }

    #mainHeader.scrolled .navbar-brand img{
        height:55px;
    }

    .top-navbar{
        padding:10px 0;
    }
}
#mainHeader.scrolled .top-bar{
    height:0;
    overflow:hidden;
    padding:0;
    opacity:0;
    transition:.3s;
}

/* Banner */

.page-banner{
    position: relative;
    height: 350px;
    margin-top:10%;
    
    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;
}
.gallery-banner{
    background:url('/public/assets/images/gallery.jpg')
               center center/cover;

}
.about-banner{
    background:url('/public/assets/images/service.jpg')
               center center/cover;
}
.page-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.page-banner .container{
    position:relative;
    z-index:2;
}

.page-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
}

.page-banner p{
    color:#fff;
}

/* Gallery */

.gallery-section{
    padding:90px 0;
    background:#f8faff;
}

.gallery-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;
}

.gallery-item{
    position:relative;

    overflow:hidden;

    border-radius:20px;

    display:block;

    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.gallery-item img{

    width:100%;
    height:280px;

    object-fit:cover;

    transition:.6s ease;
}

.gallery-overlay{

    position:absolute;
    inset:0;

    background:
    rgba(13,44,145,.75);

    display:flex;

    align-items:center;
    justify-content:center;

    opacity:0;

    transition:.4s;
}

.gallery-overlay i{
    color:#fff;
    font-size:40px;
}

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

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

/* ==========================
   VIDEO SECTION
========================== */

.video-section{
    padding:100px 0;
    background:#f8fbff;
}

.section-heading span{
    color:#3cc15c;
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    margin:15px 0;
    color:#0b2f7a;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:60px;
}

.video-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.4s;
}

.video-card:hover{
    transform:translateY(-10px);
}

.video-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.video-card:hover img{
    transform:scale(1.08);
}

.video-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.15)
    );
}

.video-content{
    position:absolute;
    bottom:20px;
    left:20px;
    right:20px;
    z-index:5;
    color:#fff;
}

.video-content h4{
    margin-bottom:5px;
    font-weight:700;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    border-radius:50%;
    background:#ff3b3b;
    z-index:10;

    display:flex;
    align-items:center;
    justify-content:center;

    animation:pulse 2s infinite;
}

.play-btn i{
    color:#fff;
    font-size:28px;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,59,59,.7);
    }
    70%{
        box-shadow:0 0 0 25px rgba(255,59,59,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,59,59,0);
    }
}

.services-hero{
background:
linear-gradient(rgba(0,0,0,.55),
rgba(0,0,0,.55)),
url('/public/assets/images/slider1.jpg');
background-size:cover;
background-position:center;
height:90vh;
display:flex;
align-items:center;
color:white;
}

.hero-content{
max-width:700px;
}

.hero-content span{
color:#7CFF4F;
font-weight:600;
letter-spacing:2px;
}

.hero-content h1{
font-size:65px;
font-weight:800;
margin:20px 0;
}

.hero-content p{
font-size:20px;
}

.hero-btn{
display:inline-block;
margin-top:20px;
padding:15px 40px;
background:#0d6efd;
color:white;
border-radius:50px;
text-decoration:none;
}

.services-section{
padding:100px 0;
background:#f8fbff;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title span{
color:#0d6efd;
font-weight:600;
}

.section-title h2{
font-size:50px;
font-weight:700;
}

.service-card{
background:white;
padding:35px;
text-align: center;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-icon{
width:80px;
height:80px;
background:linear-gradient(135deg,#0d6efd,#00d4ff);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:white;
margin-bottom:20px;
}

.service-card h3{
font-weight:500;
font-size:23px;
margin-bottom:15px;
}
.service-card .btn-readmore, .service-card .btn-readmore:hover{
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 16px 38px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.35);
}
.service-card a{
text-decoration:none;
font-weight:600;
color:#0d6efd;
}

.counter-section{
padding:80px 0;
background:#0d6efd;
color:white;
}

.counter-section h2{
font-size:50px;
font-weight:800;
}

.cta-section{
padding:100px 20px;
text-align:center;
background:
linear-gradient(135deg,#0d6efd,#00c8ff);
color:ffffff;
}
.cta-section p{
    color:#ffffff;
    font-size:24px !important;
    padding-bottom:30px;
}

.cta-btn{
display:inline-block;
margin-top:20px;
padding:15px 45px;
background:white;
color:#0d6efd;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

@media(max-width:768px){

.hero-content h1{
font-size:38px;
}

.section-title h2{
font-size:32px;
}

.services-hero{
height:70vh;
text-align:center;
}

}


.contact-banner{
background: url(/public/assets/images/contact_us.jpg) center center / cover;
/* background:linear-gradient(135deg,#0f4cdb,#00b8ff); */

margin-top:10%;

}

.contact-banner h1{
font-size:58px;

}

.contact-section{
padding:100px 0;
background:#f8f9fa;
}

.contact-info{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
}

.contact-form{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.info-box{
display:flex;
align-items:center;
margin-bottom:25px;
}

.info-box i{
width:60px;
height:60px;
background:#0f4cdb;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
margin-right:15px;
}

.form-control{
height:55px;
border-radius:12px;
}

textarea.form-control{
height:auto;
}

.btn-contact{
background:#0f4cdb;
color:#fff;
padding:14px 40px;
border:none;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn-contact:hover{
background:#00b8ff;
}

.map-section iframe{
width:100%;
height:500px;
border:0;
}

@media(max-width:768px){

.contact-banner{
padding:80px 0;
}

.contact-banner h1{
font-size:38px;
}

.contact-section{
padding:60px 0;
}

.contact-info,
.contact-form{
padding:25px;
}

}

.ot-hero{
padding:120px 0;
background:linear-gradient(135deg,#0b4ad9,#00bfff);
color:#fff;
overflow:hidden;
}

.hero-tag{
background:rgba(255,255,255,.15);
padding:10px 18px;
border-radius:50px;
display:inline-block;
margin-bottom:20px;
}

.ot-hero h1{
font-size:60px;
color:#ffffff;
font-weight:800;
margin-bottom:20px;
}

.ot-btn,
.cta-btn{
display:inline-block;
padding:15px 35px;
background:#fff;
color:#0b4ad9;
border-radius:50px;
font-size:22px !important;
font-weight:700;
text-decoration:none;
}

.hero-image{
animation:float 4s ease-in-out infinite;
}

@keyframes float{
50%{transform:translateY(-15px);}
}

.ot-about,
.therapy-area,
.ot-process{
padding:20px 0;
}

.ot-conditions{
padding:40px 0;
background:#f8fbff;
}

.section-title{
margin-bottom:30px;
}

.section-title span{
color:#0b4ad9;
font-size:20px;
font-weight:600;
}

.section-title h2{
font-size:48px;
font-weight:800;
}

.ot-list{
    list-style:none;
    padding:0;
    margin-top:25px;
    margin-left:0px !important;
}

.ot-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size:17px;
    font-weight:500;
    color:#444;
}

.ot-list li i{
    color:#1565ff;
    font-size:18px;
    flex-shrink:0;
}
.margin-30b{
    margin-bottom: 30px !important;
}

.condition-card,
.therapy-card{
background:#fff;
padding:25px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}



.condition-card:hover,
.therapy-card:hover{
transform:translateY(-10px);
}

.condition-card i,
.therapy-card i{
font-size:45px;
color:#0b4ad9;
margin-bottom:20px;
}




.therapy-card{

    background:#fff;

    border-radius:25px;

    padding:35px 25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    text-align:center;

    height:100%;

    transition:.3s;

}

.therapy-card:hover{

    transform:translateY(-8px);

}
.therapy-card i{

    font-size:48px;

    color:#1565ff;

    margin-bottom:20px;

}

.therapy-card h4{

    font-size:24px;

    font-weight:700;

    min-height:60px;

    margin-bottom:15px;

}

.therapy-card p{

    margin-bottom:0;

    line-height:1.8;

    color:#666;

}
.therapy-area .therapy-card{
    width:100%;
}


.process-wrap{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.process-box{
background:#fff;
padding:35px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.process-box span{
width:70px;
height:70px;
background:#0b4ad9;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:auto auto 20px;
font-size:24px;
font-weight:700;
}

.ot-cta{
padding:100px 0;
background:linear-gradient(135deg,#0b4ad9,#00bfff);
color:#fff;
}

.ot-cta h2{
font-size:50px;
color:#ffffff !important;
text-shadow: 2px 2px 10px #000000;
font-weight:800;
margin-bottom:20px;
}
.ot-cta p{
    font-size:22px !important;
}

@media(max-width:991px){

.process-wrap{
grid-template-columns:repeat(2,1fr);
}

.ot-hero h1{
font-size:42px;
}

.section-title h2{
font-size:34px;
}

}

@media(max-width:768px){

.ot-hero{
padding:80px 0;
text-align:center;
}

.process-wrap{
grid-template-columns:1fr;
}

.ot-cta h2{
font-size:32px;
}

.hero-image{
margin-top:30px;
}

}

/* ==========================
   Breadcrumb
========================== */

.breadcrumb-section{

    background:#f8f9fc;

    padding:18px 0;

    border-bottom:1px solid #e9ecef;

}

.breadcrumb{

    margin:0;

    background:none;

}

.breadcrumb-item{

    font-size:18px;

    font-weight:500;

}

.breadcrumb-item a{

    color:#1565ff;

    text-decoration:none;

}

.breadcrumb-item a:hover{

    color:#0d47d9;

}

.breadcrumb-item.active{

    color:#666;

    font-weight:600;

}

.breadcrumb-item + .breadcrumb-item::before{

    content:"›";

    color:#999;

    font-size:18px;

    padding:0 10px;

}