<---main css--->
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: #ffffff;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



/* ===== TOP BAR ===== */
.topbar {
    background: #000; 
    color: #ffffff;
    font-size: 14px;
  
}

.topbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left section */
.topbar-left span {
    margin-right: 15px;
    white-space: nowrap;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-right .social {
    width: 30px;
    height: 30px;
    border: 1px solid #ffffff;   /* border only */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* icon image */
.topbar-right .social img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1); /* white icons */
    transition: transform 0.3s ease;
}

/* hover – subtle fly only */
.topbar-right .social:hover {
    transform: translateY(-2px);
}

/* hover icon scale */
.topbar-right .social:hover img {
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .topbar-container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}




.text-pill {
    display: inline-block;
    padding: 4px 10px;
    background-color: #1E88E5;   /* dark gray */
    color: #ffffff;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.text-pill:hover {
    background-color: #38bdf8;  /* blue */
    color: #0f172a;
}



.header {
    background: #E3F2FD;             
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0px 2px 12px rgba(30, 136, 229, 0.6);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;               
    width: 100%;
}


.logo-img {
    height: 80px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.logo-fly {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-fly:hover {
    transform: translateY(-10px) scale(1.03);
    filter: drop-shadow(0 12px 25px rgba(59,130,246,0.5));
}


@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.logo-float {
    animation: float 3s ease-in-out infinite;
}

.welcome-bar {
    background: #1E88E5;
    color: #fff;
    font-size: 20px;
    padding: 8px;
}


.dropdown {
    position: relative;
}

.dropdown > a {
    display: inline-block;
    padding: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #1E88E5;
    border-radius: 8px;
    list-style: none;
    min-width: 180px;
    padding: 8px 0;
    display: none;
    z-index: 9999;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.12);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #E3F2FD;
    color: #0D47A1;
}
.slider {
    width: 100%;
    height: 420px;
    background: #E3F2FD;
    position: relative;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

/* ===== ARROWS ===== */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 38px;
    color: #FFFFFF;
    background: rgba(0,0,0,0.4);
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
}

.arrow:hover {
    background: rgba(30,136,229,0.9);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* ===== DOTS ===== */
.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dots span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}

.dots span.active {
    background: #1E88E5;
}
.center-wrap{
  text-align: center;
  
}

.serviceoffer {
  background:#1E88E5;
 
  color: #fff;
    padding:  6px 14px;
    border-radius: 20px;
    font-size: 22px;
    display: inline-block;
  
}


.about-heading {
    background: #E3F2FD;           
    text-align: center;
    padding: 5px;
}

.about-heading h2 {
    color: #1E88E5;            
    font-size: 36px;
}


.about-split {
  /*  background-color: #F5F7FA;  
  */
    padding: 70px 40px;
    display: flex;
    gap: 80px;
}

.about-box {
    flex: 1;
   /* border: 1px solid #DCE3EB;      
    border-radius: 14px;
  */
    padding: 3px;
    height: 600px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;           
}

.about-left {
    color: #1F2933;                
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    height: 600px;
    box-sizing: border-box;
}

.about-left h3 {
    color: #0D47A1;              
    font-size: 30px;
    margin-bottom: 20px;
}

.about-left p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.7s ease;
}

.about-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 10px 10px rgba(30,136,229,0.28),
        0 0 0 1px rgba(30,136,229,0.15);
}

@media (max-width: 768px) {
    .about-split {
        flex-direction: column;
    }

    .about-box {
        height: auto;
    }
}
/* ===== FLOATING ANIMATION ===== */
@keyframes softFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
.about-left {
    animation: softFloat 4s ease-in-out infinite;
}

.about-right {
    animation: softFloat 4s ease-in-out infinite;
}
.about-box:hover .about-right img {
    transform: scale(2.06);
}
/* ===== VISUAL COLOR OVERLAY EFFECT ===== */
.about-box {
    position: relative;
    overflow: hidden;
}

/* overlay layer */
.about-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(30,136,229,0.08),
        rgba(30,136,229,0.02)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 14px;
}

/* show overlay on hover */
.about-box:hover::before {
    opacity: 1;
}
.about-box:hover h3 {
    color: #1E88E5;
}

.about-box:hover p {
    color: #1F2933;
}




 .features {
    width: 100%;
    background: #F5F7FA;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}

.feature-card {
    width: 23%;
    background: #FFFFFF;
    border: 1px solid #DCE3EB;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s ease;
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #1E88E5;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #1F2933;
    font-size: 14px;
    line-height: 22px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(30, 136, 229, 0.25);
}

.services-cards {
   background-color: #fff!important;  
    color: #FFF !important;  
    padding: 25px 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: 280px;
    background:  #1E88E5;
    border-color: #DCE3EB !important; 
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s ease;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-title {
  background-color: #1E88E5;   
    color: #FFFFFF !important;  
    
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 14px 10px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(30, 136, 229, 0.25);
}

@media (max-width: 1200px) {
    .services-cards {
        flex-wrap: wrap;
    }
}

/* ===== MARQUEE SECTION ===== */
.services-marquee {
    background: #fff;
    overflow: hidden;
    padding: 20px 0;
}

/* scrolling row */
.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 8s linear infinite;
}

/* same size as service cards */
.marquee-card {
    width: 280px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

/* image fit */
.marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 key line */
}

/* animation */
@keyframes scrollMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.enquiry-section {
    background-color: #F5F7FA;
    padding: 80px 40px;
    display: flex;
    gap: 40px;
}

.enquiry-left {
    width: 50%;
    min-height: 600px;
    border: 1px solid #DCE3EB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #000;
}

.enquiry-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.enquiry-right {
    width: 50%;
    min-height: 600px;
    border: 1px solid #DCE3EB;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFFFF;
}

.enquiry-right h2 {
    color: #1E88E5;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    background-color: #FFFFFF !important;
    color: #1F2933 !important;
    border: 1px solid #CBD5E0 !important;
}


.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #6B7280 !important;
}

.enquiry-form button {
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
  background-color: #1E88E5 !important;   
    color: #FFFFFF !important;
    border: none !important;
}

.enquiry-form button:hover {
    background-color: #1565C0 !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .enquiry-section {
        flex-direction: column;
    }

    .enquiry-left,
    .enquiry-right {
        width: 100%;
        min-height: auto;
    }

    .enquiry-left {
        height: 320px;
    }
}
/* ===== INITIAL STATE (NO BLANK PAGE) ===== */
.enquiry-left,
.enquiry-right {
    opacity: 0;
}

/* LEFT BOX COMES FROM LEFT */
.enquiry-left {
    transform: translateX(-140px);
}

/* RIGHT BOX COMES FROM RIGHT */
.enquiry-right {
    transform: translateX(140px);
}

/* ACTIVE STATE */
.enquiry-section.active .enquiry-left,
.enquiry-section.active .enquiry-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease;
}
/* STAGGER DELAY */
.enquiry-section.active .enquiry-left {
    transition-delay: 0.15s;
}

.enquiry-section.active .enquiry-right {
    transition-delay: 0.35s;
}
/* FLOATING EFFECT */
@keyframes gentleFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.enquiry-section.active .enquiry-left,
.enquiry-section.active .enquiry-right {
    animation: gentleFloat 2s ease-in-out infinite;
}
/* ===== STRONG GLOW HOVER ===== */
.enquiry-left,
.enquiry-right {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.enquiry-left:hover,
.enquiry-right:hover {
    box-shadow:
        0 0 0 1px #1E88E5,
        0 20px 50px rgba(30,136,229,0.45);
    transform: translateY(-12px) scale(1.01);
}
.enquiry-left img {
    transition: transform 0.8s ease;
}

.enquiry-left:hover img {
    transform: scale(1.05);
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(30,136,229,0.35);
    backdrop-filter: blur(6px);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.modal-overlay.active{
    display:flex;
}

/* ===== MODAL BOX ===== */
.modal-box{
    width:100%;
    max-width:460px;
    background:#fff;
    padding:28px 26px;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
    position:relative;
    animation:scaleIn 0.25s ease;
}

@keyframes scaleIn{
    from{transform:scale(0.9);opacity:0}
    to{transform:scale(1);opacity:1}
}

/* ===== CLOSE BUTTON ===== */
.close-btn{
    position:absolute;
    top:14px;
    right:18px;
    font-size:26px;
    cursor:pointer;
    color:#1E88E5;
    font-weight:700;
}

/* ===== TITLE ===== */
.modal-title{
    text-align:center;
    color:#1E88E5;
    margin-bottom:22px;
    font-size:22px;
    font-weight:800;
}

/* ===== FORM LAYOUT ===== */
.modal-box form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.modal-box label{
    font-size:14px;
    font-weight:600;
    color:#1f2933;
}

/* ===== INPUTS ===== */
.modal-box input,
.modal-box textarea,
.modal-box select{
    width:100%;
    padding:12px 14px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    font-size:14px;
    background:#fff;
}

.modal-box textarea{
    resize:none;
    height:90px;
}

.modal-box input:focus,
.modal-box textarea:focus,
.modal-box select:focus{
    border-color:#1E88E5;
    outline:none;
    box-shadow:0 0 0 3px rgba(30,136,229,0.15);
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn{
    margin-top:10px;
    background:#1E88E5;
    color:#fff;
    padding:13px;
    font-size:16px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-weight:700;
    transition:0.3s;
}

.submit-btn:hover{
    background:#1565c0;
}

/* ===== MOBILE ===== */
@media(max-width:480px){
    .modal-box{
        margin:0 14px;
    }
}

.testimonials {
    background: #F5F9FF !important; /* light blue-white background */
    padding: 80px 40px;
    text-align: center;
}

.testimonials h2 {
    color: #1E88E5 !important; /* primary blue */
    font-size: 36px;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: slideTestimonials 10s linear infinite;
}

.testimonial-card {
    min-width: 300px;
    background: #FFFFFF !important;
    border: 2px solid #1E88E5 !important;
    border-radius: 14px;
    padding: 30px;
    color: #1F2933 !important;
    transition: 0.8s ease;
    box-shadow: 0 6px 18px rgba(30, 136, 229, 0.15);
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #374151 !important;
}

.testimonial-card h4 {
    font-size: 18px;
    color: #1E88E5 !important;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 14px;
    color: #6B7280 !important;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 28px rgba(30, 136, 229, 0.45) !important;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-660px);
    }
}

.insurance-partners {
    width: 100%;
    padding: 60px 40px;
    background: #F5F9FF;
}

.partners-heading {
    font-size: 36px;
    color: #1E88E5;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.partners-subheading {
    font-size: 18px;          
    color: #4B5563;           
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.partners-cards {
    display: grid;
    grid-template-columns: repeat(7, 1fr); 
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* smaller card */
.partner-card {
    width: 100%;
    height: 110px;
    background: #FFFFFF;
    border-radius: 16px;

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

    transition: 0.4s ease;
    cursor: pointer;
}

/* image fit properly */
.partner-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* hover effect */
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(30,136,229,0.3);
}

.partner-link {
    text-decoration: none;
    display: block;
}
@media (max-width: 1200px) {
    .partners-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-card {
        height: 100px;
    }
}

/* footer  */


.footer {
  background: #000000 !important;      /* light blue-white */
  padding: 60px 40px 20px 40px;
  color: #ffffff !important;
  border-top: 2px solid #ffffff !important; /* primary blue */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-box {
  width: 33%;
}

.footer-box h3 {
  font-size: 22px;
  color: #ffffff !important;
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff !important;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #fff !important;
  transition: 0.3s ease;
}

.footer-box ul li a:hover {
  color: #fff !important;
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(30, 136, 229, 0.3) !important;
}

.footer-bottom p {
  font-size: 14px;
  color: #fff !important;
}


.footer-bottom a {
 background:#fff;
  padding:5px;
  border-radius:10px;
  font-size: 14px;
  color: #000 !important;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-box {
    width: 100%;
  }
}
.footer-socials {
    display: flex;
    gap: 14px;
  text-align:center;
    margin-top: 16px;
}

.footer-socials2 {
    display: flex;
    gap: 10px;
  text-align:center;
    margin-top: 2px;
}

/* SAME SIZE BOX FOR ALL */
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;   /* ✅ IMPORTANT */
    background-size: 70% 70%;    /* controls logo size */
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.35s ease;
}

/* ICON IMAGES */
.social-icon.whatsapp {
    background-image: url("../images/wp.png");
}

.social-icon.facebook {
    background-image: url("../images/facebook.png");
}

.social-icon.instagram {
    background-image: url("../images/insta.png");
}


.social-icon.justdial {
    background-image: url("/images/icons/justdial.png");
}


.social-icon.google {
    background-image: url("../images/google.png");
}

/* HOVER EFFECT */
.social-icon:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(30,136,229,0.4);
}
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 25px;
    right: 25px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37,211,102,0.6);
}
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.5);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}




.whatsapp-float1 {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 100px;
    right: 25px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.whatsapp-float1 img {
    width: 28px;
    height: 28px;
}

.whatsapp-float1:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37,211,102,0.6);
}
.whatsapp-float1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.5);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
/*  ---- Gallery  --->
*/


.home-gallery {
    padding: 60px 20px;
    background: #f8f9fc;
}

.gallery-title {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Mobile View */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 26px;
    }
}


/*
<---Healthians--->

*/
.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}


.healthians-hero {
    text-align: center;
    padding: 80px 20px;
    background: #F5F9FF;
}

.healthians-hero h1 {
    font-size: 48px;
    color: #1E88E5;
    margin-bottom: 10px;
  margin-left: auto;
    margin-right: auto;
}

.healthians-hero h2 {
    font-size: 26px;
    color: #5F6F91;
  margin-left: auto;
    margin-right: auto;
}


.package-card {
    min-width: 320px;
    background: linear-gradient(145deg, #FFFFFF, #F1F6FF);
  /*  border: 2px solid #1E88E5 !important;
  */
    border-radius: 18px;
    padding: 26px;
    transition: 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(30,136,229,0.35);
}

.package-card h3 {
    font-size: 18px;
    color: #1E88E5 !important;
    margin-bottom: 14px;
}





.tests {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF !important;
    background: #1E88E5 !important;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.package-card p {
    font-size: 14px;
    color: #4F5D75;
    margin-bottom: 18px;
    line-height: 22px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1E88E5;
}

.book-btn {
    width: 100%;
    padding: 12px;
    background-color: #1E88E5 !important;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.book-btn:hover {
    background-color: #1565C0 !important;
}



@media (max-width: 768px) {
    .package-card {
        min-width: 280px;
    }
}

.health-category {
    padding: 60px 40px;
    background: #F5F9FF;
}

.health-category h2,
.health-category h3 {
    font-size: 30px;
    color: #1E88E5;
    margin-bottom: 30px;
    text-align: center;
}
.healthians-hero{
    width:1500px;
    height:300px;
    margin:0 auto;                 /* center horizontally */
    background:#EAF4FF;            /* light blue overlay */
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:12px;
}

.healthians-hero h1{
    font-size:48px;
    color:#1E88E5;
    margin-bottom:10px;
    font-weight:700;
}

.healthians-hero h2{
    font-size:24px;
    color:#5F6F91;
    font-weight:500;
}

@media (max-width: 1500px){
    .healthians-hero{
        width:100%;
        border-radius:0;
    }
}

/*<---contact us--->

*/
.contact-section {
    width: 100%;
    background-color: #F5F9FF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-row {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Enquiry + Info boxes */
.enquiry-box,
.info-box2 {
    color: #1E88E5;
    width: 50%;
    background: linear-gradient(145deg, #FFFFFF, #F1F6FF);
    border: 2px solid #1E88E5;
    border-radius: 20px;
    padding: 40px;
}

/* Headings */
.enquiry-box h2,
.info-box2 h2 {
    color: #1E88E5;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Form */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    background-color: #FFFFFF;
    border: 1px solid #1E88E5;
    border-radius: 8px;
    color: #1F2933;
}

.enquiry-form textarea {
    height: 120px;
    resize: none;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #8A9BB8;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #1565C0;
    box-shadow: 0 0 6px rgba(30,136,229,0.35);
}

/* Submit Button */
.enquiry-form button {
    margin-top: 10px;
    height: 48px;
    background-color: #1E88E5;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.enquiry-form button:hover {
    background-color: #1565C0;
}

/* Info box text */
.info-box2 p {
    font-size: 15px;
    line-height: 26px;
    color: #374151;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(30,136,229,0.3);
}

.info-box2 p:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.info-box2 strong {
    display: block;
    color: #1E88E5;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Map */
.map-box {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    border: 2px solid #1E88E5;
    border-radius: 20px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Responsive */
@media (max-width: 1250px) {
    .contact-row,
    .map-box {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .contact-row {
        flex-direction: column;
    }

    .enquiry-box,
    .info-box2 {
        width: 100%;
    }
}








/* ============================= */
/* ===== MOBILE FIX PATCH ====== */
/* ============================= */

@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */
  body {
    overflow-x: hidden;
  }

  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }
  p  { font-size: 14px !important; }

  /* ---------- TOP BAR ---------- */
  .topbar-container {
    flex-direction: column;
    gap: 6px;
  }

  .topbar-left span {
    display: block;
    margin: 2px 0;
  }

  /* ---------- HEADER / NAV ---------- */
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .logo-img {
    height: 60px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 14px;
  }

  /* ---------- SLIDER ---------- */
  .slider {
    height: 240px;
  }

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

  .arrow {
    font-size: 26px;
    padding: 6px 8px;
  }

  /* ---------- ABOUT SECTION ---------- */
  .about-split {
    padding: 30px 20px;
    gap: 30px;
  }

  .about-left,
  .about-right {
    height: auto;
    padding: 20px;
    animation: none !important;
  }

  .about-box:hover .about-right img {
    transform: none;
  }

  /* ---------- FEATURES ---------- */
  .features {
    flex-direction: column;
    padding: 30px 20px;
  }

  .feature-card {
    width: 100%;
  }

  /* ---------- SERVICES ---------- */
  .services-cards {
    flex-direction: column;
    padding: 30px 20px;
  }

  .service-card {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  /* ---------- ENQUIRY SECTION ---------- */
  .enquiry-section {
    padding: 40px 20px;
  }

  .enquiry-left,
  .enquiry-right {
    min-height: auto;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  .enquiry-left {
    height: 260px;
  }

  /* ---------- MODAL ---------- */
  .modal-box {
    width: 92%;
  }

  /* ---------- TESTIMONIALS ---------- */
  .testimonial-track {
    animation: none;
    overflow-x: auto;
  }

  .testimonial-card {
    min-width: 260px;
  }

  /* ---------- PARTNERS ---------- */
  .partner-card {
    width: 150px;
    height: 100px;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    gap: 30px;
  }

  /* ---------- HEALTHIANS ---------- */
  .healthians-hero {
    padding: 40px 20px;
  }

  .healthians-hero h1 {
    font-size: 30px;
  }

  .healthians-hero h2 {
    font-size: 18px;
  }

  .slider-section {
    padding: 20px;
  }

  /* ---------- CONTACT PAGE ---------- */
  .contact-row,
  .map-box {
    width: 100%;
    padding: 0 15px;
  }

  .enquiry-box,
  .info-box2 {
    padding: 25px;
  }

  /* ---------- WHATSAPP FLOAT ---------- */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}



/*   --------Health page --->     */


  .hover-box {
    background: #F5F9FF;
    border: 2px solid #1E88E5;
    border-radius: 14px;
    padding: 25px;
     margin: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hidden text */
.hover-text {
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
    font-size: 14px;
    color: #333;
}

/* Desktop hover */
.hover-box:hover {
    background: #1E88E5;
    color: #fff;
}

.hover-box:hover .hover-text {
    opacity: 1;
    max-height: 120px;
    margin-top: 12px;
    color: #fff;
}

/* Mobile tap support */
.hover-box:active {
    background: #1E88E5;
    color: #fff;
}

.hover-box:active .hover-text {
    opacity: 1;
    max-height: 120px;
    margin-top: 12px;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hover-box {
        padding: 20px;
    }
    .hover-text {
        font-size: 13px;
    }
}
  



