/********** Template CSS **********/
:root {
    --primary: #0E6FBC;
    --secondary: #00c2ff;
    --light: #EFF5F9;
    --dark: #EFF5F9;
    --dark-soft: #11182a;
    --text: #333;
}
body {
  
   font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
  background: var(--dark);
  color: var(--text);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: 0.25px;
}


.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--color);
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.hero-header {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay for readability */
.hero-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Make content above video */
.hero-header .container {
    position: relative;
    z-index: 2;
}
.service-item {
    background: #ffffff;
    border: 2px solid rgb(230, 235, 238);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
    font-family: kallisto, sans-serif !important;
}

.service-item .service-icon {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.service-item .service-icon i {
    transform: rotate(15deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.service-item:hover .service-img img {
    transform: scale(1.05);
}

.service-item h4 {
    color: rgb(25, 36, 91);
    font-weight: 600;
}

.service-item p {
    color: #333;
    font-size: 14px;
}

.main-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgb(25, 36, 91);
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}

.main-arrow-btn:hover {
    transform: translateY(6px);
    background: #0d6efd;
}


.price-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 8px 8px 50% 50%;
    z-index: -1;
}

.price-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

@media (min-width: 576px) {
    .team-item .row {
        height: 350px;
    }
}

.team-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}
@media (max-width: 768px) {
    .top-bar {
        font-size: 13px;
    }
}

.top-bar {
    font-size: 14px;
      background: linear-gradient(90deg, #1f1c83, #1f1c83);
/*min-height: 48px;*/
  /* Background image */
  /* background: 
    linear-gradient(
      rgba(74, 42, 156, 0.85),
      rgba(82, 28, 163, 0.85)
    ),
    url("../img/jaipur.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

/* Text & icons */
.top-bar a,
.top-bar span,
.top-bar i {
  color: #FFF !important;
}

/* Hover accent (TCT blue) */
.top-bar a:hover,
.top-bar a:hover i {
  color: #00c2ff !important;
}

.ratings-banner {
    background: #f8f9fa;
}

.rating-box {
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    border-radius: 12px;
    border: 2px solid rgb(230, 235, 238);
    transition: all 0.3s ease;
    height: 100%;
}

.rating-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.rating-stars {
    font-size: 22px;
    color: #ffc107;
    letter-spacing: 4px;
}

.rating-score {
    font-size: 20px;
    font-weight: 600;
    color: #0d6efd;
}

.main-rating-heading {
    color: rgb(25, 36, 91) !important;
    font-weight: 700;
}


.about-section {
    background: #f8f9fa;
}

.about-main-heading {
    color: rgb(25, 36, 91);
    font-weight: 700;
}

.about-subheading {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.about-card {
     background: #ffffff;
    border: 2px solid rgb(230, 235, 238);
    border-radius: 14px;
    transition: 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.about-body {
    color: #333;
    line-height: 1.8;
}



.stat-card {
    background: #ffffff;
    border: 2px solid rgb(230, 235, 238);
    border-radius: 14px;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.bkcolor{
    background-color: #0d6efd;
    color : #FFFFFF;
}
.navbar-brand img {
    height: 60px;   /* adjust size as needed */
    width: auto;
}
.stat-icon {
    font-size: 40px;
    color: rgb(25, 36, 91);
    margin-bottom: 15px;
    display: inline-block;
}

.stat-number {
    font-weight: 700;
    color: rgb(25, 36, 91);
    margin-bottom: 10px;
}

.stat-text {
    color: #6c757d;
    font-size: 15px;
}
.stats-section{
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
}
.certs-section {
   background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
}

.certs-title {
    color: #FFFFFF;
    font-weight: 700;
}

.certs-subtitle {
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
}

/* Scroller */
.certs-scroller {
    overflow: hidden;
    position: relative;
}

.certs-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Certificate Card */
.cert-card {
    min-width: 250px;
    background: #ffffff;
    border: 2px solid rgb(230, 235, 238);
    border-radius: 14px;
    padding: 15px;
    transition: all 0.3s ease;
}

.cert-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.testimonial-section {
    padding: 100px 0;
    background-image: url('../img/review.png'); /* your quote background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-wrapper {
     overflow: hidden;
}

.testimonial-track {
   display:flex;
    transition:0.6s ease;
}

.testimonial-card {
    min-width: 100%;
}

.testimonial-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-content img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

.testimonial-name {
    text-align: right;
    color: rgb(25, 36, 91);
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
}


.video-card {
    background: #ffffff;
    border: 2px solid rgb(230, 235, 238);
    border-radius: 14px;
    padding: 15px;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.footer-card {
   background: linear-gradient(rgba(74, 42, 156, 0.85), rgba(82, 28, 163, 0.85));
    padding: 30px;
    border-radius: 14px;
    
    color: #ffffff;
    height: 100%;
    transition: 0.3s ease;
}

.footer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.footer-title {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-card ul li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.footer-card a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s;
}

.footer-card a:hover {
    color: #4fc3f7;
}

.footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #d1d5db;
}

.footer-social a:hover {
    color: #4fc3f7;
}

/* =====================================================
   RESPONSIVE FIXES (DO NOT REMOVE EXISTING CSS)
===================================================== */

/* ================= NAVBAR FIX ================= */
@media (max-width: 991.98px) {

    .navbar-light .navbar-nav {
        text-align: center;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
        margin-left: 0;
    }

}


/* ================= HERO FIX ================= */
@media (max-width: 768px) {

    .hero-header {
        min-height: 60vh;
        padding: 60px 15px;
        text-align: center;
    }

    .hero-header h1 {
        font-size: 26px !important;
    }

    .hero-header h5 {
        font-size: 14px;
    }

}


/* ================= SERVICE FIX ================= */
@media (max-width: 768px) {

    .service-img img {
        height: 180px;
    }

    .service-item {
        margin-bottom: 20px;
    }

}


/* ================= ABOUT SECTION FIX ================= */
@media (max-width: 991.98px) {

    .about-section .row {
        flex-direction: column;
        text-align: center;
    }

    .image-container img {
        height: auto;
    }

}


/* ================= STATS FIX ================= */
@media (max-width: 768px) {

    .stat-card {
        margin-bottom: 20px;
    }

}


/* ================= CERTIFICATE FIX ================= */
@media (max-width: 768px) {

    .cert-card {
        min-width: 200px;
    }

}


/* ================= TESTIMONIAL FIX ================= */
@media (max-width: 768px) {

    .testimonial-track {
        flex-direction: column;
    }

    .testimonial-card {
        min-width: 100% !important;
    }

    .testimonial-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-name {
        text-align: center;
    }

}


/* ================= VIDEO FIX ================= */
@media (max-width: 768px) {

    .video-card {
        margin-bottom: 20px;
    }

}


/* ================= FOOTER FIX ================= */
@media (max-width: 768px) {

    .footer-card {
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-card ul li {
        justify-content: center;
        gap: 10px;
    }

}


/* ================= GENERAL FIX ================= */
@media (max-width: 576px) {

    h1 {
        font-size: 24px !important;
    }

    h2 {
        font-size: 22px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    p {
        font-size: 14px;
    }

}

.page-title {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(25, 36, 91, 0.75); /* Your theme color */
    z-index: 2;
}

.page-title .container {
    position: relative;
    z-index: 3;
}

.page-heading {
    color: #ffffff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}

.breadcrumb-text {
    color: #ffffff;
    font-weight: 400;
}

.breadcrumb-text a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-text a:hover {
    text-decoration: underline;
}
.section-title h2 {
    font-weight: 700;
}

.divider {
    width: 60px;
    height: 3px;
    background: #0d6efd;
}

.mission-section {
    position: relative;
}

.mission-box {
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all .3s ease;
    height:100%;
    }

.mission-box:hover {
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.mission-icon {
    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    color:#fff;
    font-size:28px;
}

.mission-box h5{
font-weight:700;
margin-bottom:10px;
}

/* Text */

.mission-box p{
color:#333;
font-size:15px;
line-height:1.6;
}

.section-title h2{
font-weight:700;
}

.section-title p{
color:#333;
}

.divider {
    width: 60px;
    height: 3px;
    background: #ffffff;
}

/* ===== Contact Section ===== */

.contact-section {
    background: #f8f9fa;
}

.contact-info {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-info i {
    font-size: 18px;
    width: 25px;
}

.contact-section .bg-primary {
    background: linear-gradient(135deg, #0d6efd, #0a58ca) !important;
}

.contact-section iframe {
    display: block;
}

/* ===== Section Style ===== */
.testimonials-section {
    background: #f8f9fa;
}

.section-title h2 {
    font-weight: 700;
}

.divider {
    width: 60px;
    height: 3px;
    background: #0d6efd;
}

/* ===== Card Style ===== */
.testimonial-card {
    min-width:100%;
    background: rgba(255,255,255,0.7);
    padding:40px;
    border-radius:12px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* Clamp text */
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-box iframe,
.video-box video {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
}

.video-caption {
    padding: 5px 5px 0 5px;
}

.expertise-section {
    background: #f8f9fa;
}

.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #0d6efd;
}

.service-head {
    display: flex;
    gap: 4%;
    margin-bottom: 10px;
}

.service-icon {
    font-size: 24px;
    color: #0d6efd;
}

.service-card h5 {
    font-weight: 600;
}


.custom-gradient-btn {
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 50px; /* round pill */
    font-weight: 500;
    transition: 0.3s ease;
    margin: 15px 0; /* space top & bottom */
}

.custom-gradient-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: #fff;
}
.service-img {
    width: 100%;
    height: 180px;      /* your reduced height */
    object-fit: contain; /* show full image */
    background-color: #f8f9fa; /* empty space background */
}

.btn-wrapper {
    gap: 20px;                 /* equal space between buttons */
            /* responsive for mobile */
}

.gallery-section {
    background:#f8fbff;
}

.gallery-card {
   border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
background:#fff;
}

.gallery-card:hover {
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Filter Buttons */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Divider */
.divider {
    width:60px;
    height:3px;
    background:linear-gradient(90deg,#1f1c83,#04a5e2);
    border-radius:5px;
}

.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

/* Fixed size wrapper */
.media-wrapper {
    position:relative;
    overflow:hidden;
}

/* Image & Video Same Size */
.gallery-media {
    width:100%;
    height:260px;
    object-fit:cover;
    border:0;
}

/* Zoom Effect */
.gallery-card:hover .gallery-media {
   transform:scale(1.05);
}
.gallery-item{
transition:all .4s ease;
}

/* Lift Card Effect */
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.cta-modern-section {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5') center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

/* Dark + Gradient Overlay */
.cta-overlay {
    background:rgba(0,0,0,0.55);
    padding:100px 0;
}

.cta-box {
    position: relative;
    z-index: 2;
}

.cta-title {
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1.4;
}

.cta-title span {
    color:#04a5e2;
}

.cta-subtitle {
    color:#ddd;
    font-size:18px;
    margin:20px 0 30px;
}

.cta-banner-section{
  background:url('../img/offerYou.jpeg') center center no-repeat;
  background-size:contain; /* show full image */
  min-height:250px;
  width:100%;
}

.cta-image-gallary{
   width:100%;
    height:auto;
    min-height:250px; /* minimum height */
    object-fit:contain; 
}
.cta-btn {
    padding:12px 28px;
    font-size:16px;
}

.cta-split-section {
    background:url('../img/offerYou.jpeg') center center/cover no-repeat;
    padding:120px 0;
    position:relative;
}

.cta-content {
    padding-right: 30px;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cta-title span {
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* Image Style */
.cta-image-wrapper {
    position: relative;
}

.cta-image {
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.cta-image:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 992px) {
    .cta-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.innovation-banner{
    padding:80px 0;
    background:#FFFFFF;
}

/* Rounded Gradient Card */

.innovation-card{
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    padding:50px 40px;
    border-radius:20px;
    color:#fff;
    margin:auto;
}

/* Title */

.innovation-title{
    font-size:38px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

/* Subtitle */

.innovation-subtitle{
    font-size:20px;
    opacity:0.95;
}

/* Responsive */

@media (max-width:768px){

.innovation-title{
    font-size:26px;
}

.innovation-subtitle{
    font-size:16px;
}

.innovation-card{
    padding:35px 20px;
}

}

/* .testimonial-section{
     padding:80px 0;
    background:#F3E6C8;  
    position:relative;
    overflow:hidden;
} */

/* Title */

.testimonial-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#1e6bb8;
    margin-bottom:40px;
}

/* Wrapper */

.testimonial-wrapper{
    max-width:900px;
    margin:auto;
    text-align:center;
}

/* Card */

.testimonial-card{
    padding:20px;
}

/* Text */

.testimonial-text{
    font-size:18px;
    font-style:italic;
    text-align:center;
    max-width:800px;
    margin:auto;
    color:#333;
}

/* Name */

.testimonial-name{
    text-align:center;
    margin-top:20px;
    font-weight:600;
}

/* Slider dots */

.testimonial-dots{
    margin-top:30px;
}

.dot{
    height:10px;
    width:10px;
    margin:0 5px;
    background:#bbb;
    border-radius:50%;
    display:inline-block;
}

.dot.active{
    background:#0d6efd;
}

.testimonial-section::before{
    content:"“";
    position:absolute;
    font-size:250px;
    color:rgba(230,210,150,0.4);
    left:5%;
    top:20%;
}

.testimonial-section::after{
    content:"”";
    position:absolute;
    font-size:250px;
    color:rgba(230,210,150,0.4);
    right:5%;
    bottom:10%;
}

.appointment-section{
    padding:100px 0;
    background:#FFF9E8;
    
}

.appointment-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
}

.appointment-subtitle{
    max-width:600px;
    margin:auto;
    color:#555;
}

/* LEFT SIDE */

.appointment-left{
    text-align:center;
}

.appointment-img{
    max-width:420px;
    border-radius:15px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.appointment-call{
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
}

.appointment-phone{
    font-size:20px;
    color:#1e6bb8;
}

/* FORM CARD */

.call-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    background:#fff;
    padding:15px 25px;
    border-radius:50px;
    width:fit-content;
    margin:auto;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.call-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
}

.about-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
}

.call-text{
    margin:0;
    font-size:14px;
    color:#777;
}

.call-number{
    margin:0;
    font-size:20px;
    font-weight:700;
}

/* FORM */

.appointment-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.form-title{
    text-align:center;
    margin-bottom:25px;
    font-weight:700;
}

.form-control{
    height:50px;
    border-radius:8px;
}

textarea.form-control{
    height:auto;
}

/* BUTTON */

.custom-gradient-btn{
    padding:10px 20px;
    border-radius:30px;
    border:1px solid #e0e0e0;
    background:#fff;
    font-weight:600;
    transition:all .3s ease;
    display:inline-flex;
    align-items:center;
}



/* INPUT STYLE */

.appointment-form .form-control{
    height:50px;
    border-radius:8px;
}

.appointment-form textarea{
    height:auto;
}

/* BUTTON */



/* MOBILE */

@media (max-width:768px){

.appointment-img{
    max-width:220px;
}

.appointment-form{
    padding:25px;
}

}

/* Left Section Background */

.clinic-info{
background: linear-gradient(135deg, rgb(31, 28, 131), rgb(4, 165, 226));
color:#fff;
}

/* Contact Row */

.contact-item{
display:flex;
align-items:center;
gap:15px;
margin-bottom:25px;
}

/* Icon Circle */

.contact-icon{
width:50px;
height:50px;
border-radius:50%;
background:#fff;
color:#1f1c83;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
flex-shrink:0;
}

/* Text */

.contact-text h6{
margin:0;
font-weight:600;
font-size:15px;
}

.contact-text p{
margin:0;
font-size:14px;
opacity:.9;
}

/* Hover effect */

.contact-item:hover .contact-icon{
transform:scale(1.1);
transition:.3s;
}

.premium-contact-section{
background:#FFF9E8;
}

/* Section title */

.section-title{
font-weight:700;
}

.section-subtitle{
color:#666;
}

/* Contact Cards */

.contact-cards{
display:flex;
flex-direction:column;
gap:20px;
}

/* Card */

.contact-card{
display:flex;
align-items:center;
gap:15px;
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* Icon */

.contact-card i{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:18px;

background: linear-gradient(
90deg,
rgb(31, 28, 131),
rgb(4, 165, 226)
);
}

/* Text */

.contact-card h6{
margin:0;
font-weight:600;
}

.contact-card p{
margin:0;
font-size:14px;
color:#555;
}

/* Map */

.map-card{
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.wave-divider{
line-height:0;
}

.wave-divider svg{
display:block;
width:100%;
height:90px;
}

.wave-divider path{
fill:#1F1C83; /* your brand dark blue */
}

.doctor-banner{
    width:100%;
    height:auto; /* reduce height */
    overflow:hidden;
}

.anil-banner-img{
    width:100%;
    height:100%;
    object-fit:cover; /* keeps image responsive */
    object-position: 70% center;
}

.btn-wrapper{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.custom-gradient-btn{
  min-width:130px;
  padding:10px 18px;
  border-radius:30px;
  font-weight:600;
  border:1px solid #e0e0e0;
  background:#fff;
  color:#444;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.3s ease;
}

.custom-gradient-btn i{
  font-size:14px;
}

/* Hover */
.custom-gradient-btn:hover{
 background:linear-gradient(90deg,#1f1c83,#04a5e2);
color:#fff;
border-color:transparent;
}

/* Active Button */
.custom-gradient-btn.active{
    background:linear-gradient(90deg,#1f1c83,#04a5e2);
    color:#fff;
    border:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}


.btn-wrapper{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.custom-gradient-btn{
  min-width:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.contact-box{
    background:#FFFF;
    padding:30px;
    border-radius:10px;
    text-align:center;
    height:200px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.footer-card p {
    font-size: 14px;
}

.contact-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.map-card iframe {
    border-radius: 10px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.icon-box{
    width:70px;
    height:70px;
    background:linear-gradient(90deg,#1f1c83,#04a5e2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.icon-box i{
    color:#fff;
    font-size:28px;
}

.image-frame{
    width:100%;
    height:500px; /* frame height */
    overflow:hidden; /* prevent scroll */
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8f9fa;
}

.image-frame img{
    max-width:100%;
    max-height:100%;
    object-fit:contain; /* show full image inside frame */
}

@media (max-width:576px){
    .doctor-banner{
        height:180px;
    }
}

/* Tablet */
@media (max-width:992px){
    .image-frame{
        height:280px;
    }
}

/* Mobile */
@media (max-width:576px){
    .image-frame{
        height:200px;
    }
}

.custom-gradient-btn{
    background:linear-gradient(90deg,#1f1c83,#04a5e2);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: 0.3s;
}

.custom-gradient-btn:hover{
    background:linear-gradient(90deg,#1f1c83,#04a5e2);
    color:#fff;
}
.text-muted{
    color: #333 !important;
}

.modal-content-custom p{
    color:#333 !important;
}
.medical-content h4{
    font-weight:700;
    margin-bottom:15px;
}

.medical-content h5{
    margin-top:15px;
    font-weight:600;
    color:#222;
}

.medical-content p{
    color:#333;
    line-height:1.7;
}

.medical-content ul{
    padding-left:20px;
}

.medical-content ul li{
    margin-bottom:8px;
}

.service-item{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-item:hover{
    transform:translateY(-6px);
}

/* Image frame */
.service-img{
    height:220px;
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Text */
.service-item h4{
    font-weight:600;
}

.service-item p{
    color:#555;
    font-size:15px;
    line-height:1.6;
}

.testimonial-card{
    position: relative;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* Avatar circle */
.avatar-circle{
    position:absolute;
    top:15px;
    right:15px;
    width:45px;
    height:45px;
    border-radius:50%;
    background: linear-gradient(90deg, #1f1c83, #04a5e2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    text-transform:uppercase;
}

.social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px;
    border-radius: 10px;

       background: linear-gradient(rgba(74, 42, 156, 0.85), rgba(82, 28, 163, 0.85));
    border: 1px solid #FFFF;

    color: #FFFF;
    text-decoration: none;
    font-weight: 500;

    transition: all 0.3s ease;
    
}

/* Icon */
.social-card i {
    font-size: 18px;
    color: #FFFF;
}

/* Hover Effect (Your Gradient) */
.social-card:hover {
    background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
    color: #FFFF;
    transform: translateY(-2px);
}

/* Icon + Text White on Hover */
.social-card:hover i,
.social-card:hover span {
    color: #ffffff;
}
.social-section a{
    color: #ffffff !important;
}
.research-section{
background:#FFF9E8; /* same soft theme */
}

/* Card */
.research-card{
background:#fff;
border-radius:15px;
padding:25px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all 0.3s ease;
height:100%;
}

.research-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* Icon */
.research-icon{
width:70px;
height:70px;
margin:0 auto 15px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#fff;
}

/* PDF Icon Gradient */
.research-icon.pdf{
background:linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
}

/* Text Icon Light */
.research-icon.text{
background:#6c757d;
}

/* Title */
.research-title{
font-weight:600;
margin-bottom:10px;
}

/* Description */
.research-desc{
font-size:14px;
color:#666;
margin-bottom:20px;
}

/* Button already using your theme */
.custom-gradient-btn{
background: linear-gradient(90deg, rgb(31, 28, 131), rgb(4, 165, 226));
color:#fff;
border:none;
border-radius:30px;
padding:10px 20px;
transition:0.3s;
}

.custom-gradient-btn:hover{
opacity:0.9;
color:#fff;
}

.blog-hero-img {
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-title {
    font-size: 32px;
    font-weight: 700;
    color: rgb(25, 36, 91);
}

.blog-content {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 25px;
    color: #19245b;
}

.blog-content ul {
    padding-left: 20px;
}
.doctor-banner {
    position: relative;
    width: 100%;
    background: #000; /* black background for empty space */
}

.banner-video {
    width: 100%;
    height: auto;       /* 🔥 important */
    max-height: 100vh;  /* full screen limit */
    object-fit: contain; /* 🔥 no crop */
}

.ms-custom-9{
    margin-left: 16% !important;
}
h1 {
    line-height: 1.2;
}

p {
    opacity: 0.9;
}

