* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f4f6f8;
}

/* Navbar */
.navbar {
    background:#fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    padding: 0px 20px;
    position: sticky;
    top: 0;
    z-index: 9;
    border-bottom: 5px solid;
    border-image:linear-gradient(to right, #43e0b6, #2bc0e4, #3e0a78);
    border-image-slice: 1;
}

.nav-container {
    width: 1200px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img{
   height: 90px;
   
}



/* Menu */
.nav-menu {
    list-style: none;
    margin: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-menu li {
    height: 100%;
    position: relative;
}

.nav-menu a {
    height: 100%;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* FULL HEIGHT HOVER */
.nav-menu li:hover > a {
    color: #1a73e8;
    font-size: 20px;
}
.nav-menu li.icon-only:hover > a {
    background: transparent;
    color: #1a73e8;
}



/* Icons */
.icon-only a {
    font-size: 17px;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    min-width: 200px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.dropdown-menu li a {
    padding: 12px 16px;
    height: auto;
    color: #333;
}

.dropdown-menu li a:hover {
    background: #e8f0fe;
    color: #1a73e8;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



.hero{
  position:relative;
  width: 100%;
}

.hero-slide{
  height:70vh;
  background-size:cover;
  width: 100%;
  background-position:center;
  position:relative;

}

/* LEFT 50% OVERLAY */
.hero-slide .overlay{
  position:absolute;
  inset:0;
  width:50%;
  background: linear-gradient(
    135deg,
    rgba(11, 79, 108, 0.25),
    rgba(31, 162, 166, 0.35)
);
}

/* CONTENT */
.hero-content{
  position:absolute;
  left:6%;
  top:50%;
  transform:translateY(-50%);
  max-width:500px;
}
.hero-content h2{
    font-weight: 600;
    color: #fff;
    font-size: 29px; 
    word-spacing: 2px;
}

.about-banner-clean {
  height: 150px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(312deg, #14ba2a, #1d0f79, #231244);

}

.about-banner-content {
 text-align: center;
}

.about-banner-content h1 {
  font-size: 45px;
  font-weight: 800;
  text-shadow: 0px 5px 25px rgba(0, 120, 200, 0.45);
}

.about-banner-content p {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1.6;
}






.hero-btn{
  display:inline-block;
  padding:14px 34px;
  background:#1a73e8;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border-radius:4px;
  transition:.3s;
  margin-top: 30px;
}

.hero-btn:hover{
  background:#e6f4f6;
}

.about-section{
  padding:30px 0;
   background:#ffffff;
}

.about-wrap{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
  padding:0 20px;
}

/* LEFT IMAGES */
.about-images{
  flex:1;
  position:relative;
}

.about-images img{
  width:100%;
  border-radius:12px;
  object-fit:cover;
}

.img-one{
  height:420px;
}

.img-two{
  position:absolute;
  width:70%;
  height:280px;
  bottom:-40px;
  right:-40px;

}

/* RIGHT CONTENT */
.about-content{
  flex:1;
  padding:60px;
  color:#1e3c72;
  border-radius:14px;
  background: #fff;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.4);
  margin: 25px 0px 0px;
}

.about-content h5{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  margin-bottom:12px;
  opacity:.9;
}

.about-content h2{
  font-size:38px;
  line-height:1.2;
  margin-bottom:20px;
}

.about-content p{
  font-size:15px;
  line-height:1.7;
  opacity:.95;
  margin-bottom:16px;
}

.about-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 34px;
  background:#134e5e;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border-radius:4px;
  transition:.3s;
}

.about-btn:hover{
  background:#041937;
  color: #fff;
}

.why-choose{
  padding:50px 0;
  background:#f7f9fb;
}

.why-wrap{
  max-width:1300px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

/* COMMON CARD */
.why-card{
  height:380px;
  overflow:hidden;
  position:relative;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

/* SPLIT CARDS */
.split{
  display:flex;
}

.split.reverse{
  flex-direction:row-reverse;
}

.why-img{
  width:50%;
  overflow: hidden;
}

.why-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.why-content{
  width:50%;
  padding:40px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.why-content h3{
  font-size:24px;
  margin-bottom:12px;
}

.why-content p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:8px;
  opacity:.95;
}

/* BUTTON */
.why-btn{
  margin-top:16px;
  align-self:flex-start;
  padding:12px 28px;
  border: 2px solid #fff;
  background:transparent;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:4px;
  transition:.3s;
}

.why-btn:hover{
  transform:translateY(-2px);
  background:#eaeaea;
}

.why-btn.light{
  background:#fff;
  color: #111;
}

/* FULL BG CARD */
.full-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.full-overlay{
  position:absolute;
  inset:0;
  padding:50px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* GRADIENTS (ALL DIFFERENT) */
.gradient-1{
  background:linear-gradient(135deg,#0b4f6c,#1fa2a6);
}

.gradient-2{
  background:linear-gradient(135deg,#3a1c71,#d76d77,#ffaf7b);
}

.gradient-3{
  background:linear-gradient(135deg,#134e5e,#71b280);
}

.gradient-4{
  background:linear-gradient(135deg,rgba(11,79,108,.9),rgba(0,0,0,.75));
}




.products{
  padding:20px 0;
  background:#f7f9fb;
}

.section-title{
  text-align:start;
  margin-bottom:30px;
}

.section-title h2{
  font-size:36px;
  color:#0b4f6c;
  font-weight:600;
}

/* GRID */
.product-grid{

  display:grid;
  position: relative;
  grid-template-columns:repeat(3,1fr);
  gap: 30px;
}

/* CARD */
.product-card-img{
  height: 300px;
  width: 100%;
  overflow: hidden;
   position: relative; 
}


.product-grid .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
}

.product-grid .owl-nav button {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
    background: linear-gradient(342deg, #11e72e, #160b5b, #231244) !important;
  color: #fff !important;
  font-size: 18px !important;
}

/* LEFT button */
.product-grid .owl-nav .owl-prev {
  left: -20px;
}

/* RIGHT button */
.product-grid .owl-nav .owl-next {
  right: -20px;
}

.product-grid .owl-nav button:hover {
  background: #1a5edb !important;
}

.product-grid .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: #2b7cff !important;
  color: #fff !important;
  font-size: 18px;
}

.product-grid .owl-nav button:hover {
  background: #1a5edb !important;
}
.owl-nav.disabled{
  display: block !important;
}
.product-card-img img{
height: 100%;
width: 100%;
transition: 0.3s;
object-fit: cover;
}
.product-card-img:hover img{
  transform: scale(1.3);
}
.product-card-content{
  padding: 20px 0px;

}
.product-card-content h2{
  font-size: 22px;
  font-weight: 750;
}
.product-card-content p{
  font-size: 14px;
  font-weight: 500;

}



.footprint-section{
  position: relative;
  padding: 60px 0;
  background: #f7fafc url('world-map-light.png') center/contain no-repeat;
}

/* Heading */
.footprint-heading{
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #3b5ba9;
  margin-bottom: 120px;
}

/* Blue Strip */
.footprint-strip{
  position: relative;
  background: linear-gradient(158deg, #8ea511, #2a2a8d);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

/* Circle Cards */
.footprint-circle{
  width: 200px;
  height: 200px;
  background: #ffffff;
  border-radius: 50%;
  text-align: center;
  padding: 50px 20px;
  position: relative;
  top: -40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Numbers */
.footprint-circle h3{
  font-size: 40px;
  margin-bottom: 10px;
  color: #3b5ba9;
}

/* Text */
.footprint-circle p{
  font-size: 15px;
  line-height: 1.4;
  color: #555;
}

/* Arc Borders */
.footprint-circle::before,
.footprint-circle::after{
  content:"";
  position:absolute;
  left:50%;
  width:85%;
  height:85%;
  border-radius:50%;
  transform:translateX(-50%);
}

.footprint-circle::before{
  top:-12%;
  border-top:6px solid;
}

.footprint-circle::after{
  bottom:-12%;
  border-bottom:6px solid;
}

/* Color Variants */
.footprint-circle.blue::before,
.footprint-circle.blue::after{
  border-color:#333;
}

.footprint-circle.green::before,
.footprint-circle.green::after{
  border-color:#5bb6a5;
}

.testimonial-section {
   
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 40px 0;
    color: #fff;
}

/* Dark overlay */
.testimonial-section::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background:linear-gradient(116deg, #2626d8, #2cba2c);

 
}

/* Container above overlay */
.testimonial-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.testimonial-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

/* Testimonial cards */
.testimonial-card {

    border-radius: 15px;
    padding: 50px 20px 20px 20px;
    min-height: 220px;
    text-align: center;
    color: #fff;
    position: relative;
}

/* Image wrapper */
.testimonial-card .img-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid #fbc02d;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Star rating */
.testimonial-card .stars {
    color: #fbc02d;
    margin: 50px 0;

}

/* Text styling */
.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 50px; /* space for circular image */
}

.testimonial-card h4 {
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
}

.testimonial-card small {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

/* Owl nav buttons */
.owl-nav button {
    background-color: #fbc02d;
    color: #000;
    border-radius: 50%;
    padding: 6px 12px;
    margin: 0 5px;
}



.footer {
  background: linear-gradient(342deg, #11e72e, #160b5b, #231244);
  color: #fff;
  font-family: Arial, sans-serif;
  padding-top: 50px;
}

/* Branding */
.footer-branding {
  font-size: 22px;
  font-weight: 600;
}

.brand-the {
  color: #8ea511;
}

.brand-company {
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-logo {
  height: 40px;
}

/* Divider */
.footer-divider {
  height: 2px;
  background: #ffff;
  margin: 25px 0;
}

/* Main Footer */
.footer-main h5 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  font-weight:700;
  text-transform:uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
 
  font-weight:500;
}
.last-sec{
    margin:25px 0px;
}

.footer-links a:hover {
  color: #fefece;
  padding-left: 4px;
}


.footer-main ul {
  list-style: none;
  padding: 0;
}

.footer-main ul li {
  font-size: 13px;
  margin-bottom: 8px;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.footer-main ul li:hover {
  color: #8ea511;
}

/* Social Right Side */
.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons i {
  font-size: 18px;
  background: #132c44;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}

.social-icons i:hover {
  background: #8ea511;
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 15px 0;
  text-align: right;
  font-size: 13px;
  color: #fff;
}

@media(max-width:768px){
    .footer-links{
        width:100%;
    }
    .footer-social{
        width:100%;
        justify-content:flex-start;
    }
}


.banner-container{
    background-image: url(../images/why2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; 
  height: 500px;
  position: relative;
}
.hello-sec{
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hello-sec-content{
  text-align: center;
}
.hello-sec h2{
  font-size: 60px;
  font-weight: 800;
  color: #fff;
   text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}
.hello-sec h4{
  font-size: 35px;
  color: #fff;
  font-weight: 650;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}




.steps-section {
    background: #f5faff; /* light bluish background */
    padding: 20px 20px;
    text-align: center;
}

.steps-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1e3c72;
}

/* Steps Row */
.steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Each Step Card */
.step-card {
    background: #fff;
    padding: 30px 20px 20px 20px;
    border-radius: 15px;
    flex: 1 1 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #1e3c72;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e3c72;
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .steps-row {
        flex-direction: column;
        gap: 30px;
    }
}

.links-sec{
    padding: 10px 20px 10px;
  
}
.links-sec h4{
    font-size:15px;
    color:blue;
}
.links-sec h4 span{
    font-size:15px;
    color:#111;
}


.about-premium {
    background: #f5faff;
    padding: 0px 20px;
}

.about-row {
    display: flex;
   
    align-items: center;
    justify-content:center;
}




.about-text h2 {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 25px;
    font-weight: 700;
    text-align:center;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}



.mission-sec {
  padding: 10px 0;
  background: #f5f9ff;
}

.mission-container {
  display: flex;
  align-items: center;
  position: relative;
}

/* LEFT BOX */
.mission-left {
  width: 55%;
  background: #fff;
  padding: 40px;
  height:600px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  margin-right:-50px;
  display:flex;
  
}
.mission-content {
    display:flex;
    align-items:flex-start;
    justify-content:center;
    flex-direction:column;
    padding:0px 20px;
}

.mission-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0b1c2d;
  font-weight:700;
  
  
}

.mission-left p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  
}

/* RIGHT IMAGE */
.mission-right {
  width: 50%;
  margin-top:80px;
}

.mission-right img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}



/* Stats Container */



.flip-cards-section {
    background: #f5faff;
    padding: 80px 20px;
    text-align: center;
}

.flip-cards-section h2 {
    font-size: 32px;
    color: #1e3c72;
    margin-bottom: 50px;
}

/* Container for all cards */
.flip-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Individual Card */
.flip-card {
    background-color: transparent;
    width: 300px;
    height: 400px;
    perspective: 1000px; /* 3D effect */
}

/* Inner container */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Flip on hover */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Front: Image */
.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Back: Content */
.flip-card-back {
    background: #1e3c72;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.flip-card-back h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.flip-card-back p {
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .flip-cards {
        flex-direction: column;
        align-items: center;
    }
}



.patient-safety {
    background: #eef5ff; /* subtle bluish background */
    padding: 50px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    margin: 50px auto;
    max-width: 900px;
}

.patient-safety h2 {
    font-size: 32px;
    color: #1e3c72;
    margin-bottom: 25px;
    font-weight: 700;
}

.patient-safety p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.safety-measures {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
}

.safety-measures h2 {
    font-size: 32px;
    color: #1e3c72;
    margin-bottom: 15px;
}

.safety-measures p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* Cards container */
.measures-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Individual card */
.measure-card {
    background: #eef5ff;
    border-radius: 15px;
    padding: 25px 20px;
    flex: 1 1 220px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.measure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icon */
.measure-icon {
    font-size: 28px;
    color: #1e3c72;
    background: #dbe9ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

/* Heading */
.measure-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e3c72;
}

/* Paragraph */
.measure-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}


.responsibility-section {
    background: linear-gradient(135deg, #041937, #edebf9);
    padding: 40px 20px;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Left Image */
.split-left {
    flex: 1 1 45%;
}

.split-left{
  height: 450px;
}
.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.5s;
}

.split-left img:hover {
    transform: scale(1.05);
}

/* Right Text */
.split-right {
    flex: 1 1 50%;
}

.split-right h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 800;
}

.split-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}



.gallery-section {
  width: 100%;
  padding: 10px 0px;
}
.gallery-section h2{
  font-size: 40px;
  padding: 10px 0px;
  text-align: center;
  font-weight: 700;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 8px;
}

/* Image Frame */
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Permanent Bluish Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 60, 120, 0.55),
    rgba(0, 120, 200, 0.45)
  );
  transition: 0.6s;
}
/* Hover Effects */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(
    135deg,
    rgba(20, 60, 120, 0.75),
    rgba(0, 120, 200, 0.65)
  );
}

/* Optional subtle shine effect */


.gallery-item:hover::after {
  transform: translateX(100%);
}



.event-section {
  padding: 40px 0;
  background: #f5f9ff;
}
.card-event{
    background:#efefec;
    padding:0px 0px 20px;
}
.img-event{
    width:100%;
    height:250px;
}
.img-event img{
    width:100%;
    height:100%;
}
.event-content{
    padding:20px 20px;
}
.event-content h4{
    font-size:18px;
    padding:8px 0px;
    color: #333;
    font-weight:650;
}
.event-content p{
    font-size:14px;
    color:#555;
    padding:5px 0px;
}
.event-content a{
    text-decoration:none;
    margin:20px 0px 0px;
    padding:10px 20px;
    color:#333;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    border:1px solid gray;
}
.event-content a i{
    font-size:20px;
    color:#111;
    font-weight:700;
}


.contact-section {
    height:450px;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  position:relative;
}

.contact-wrapper {
  display: flex;
   position:absolute;
   top:-50px;
   left:50%;
   transform:translate(-50%,0px);
  z-index:9;
  background:#fff;
  box-shadow:0px 5px 25px rgba(0,0,0,0.6);
  max-width: 1200px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
  
}

/* Left Content */
.contact-info {
  flex: 1 1 45%;
}

.contact-info h2 {
  font-size: 34px;
  color: #1e3c72;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

/* Right Form */
.contact-form {
  flex: 1 1 55%;
  padding: 40px;
  border-radius: 18px;
 
}

.form-group {
  margin-bottom: 20px;
  display:flex;
  gap:20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1e3c72;
}

.contact-form button {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30,60,114,0.3);
}

.map-section {
  width: 100%;
  position:relative;
}

.map-section iframe {
  display: block;
}



.product-listing {
  padding: 40px 0;
  background: #f5f9ff;
}

.product-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-item {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s;
}

.product-item:hover {
  transform: translateY(-8px);
}

.product-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.product-item h3 {
  margin: 20px 0 10px;
  color: #1e3c72;
  font-size: 25px;
  font-weight: 700;
}
.product-item p{
  color: #333;
}



.product-detail {
  padding: 40px 0;
}

.product-detail-wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.product-detail-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-detail-content {
  flex: 1;
}

.product-detail-content h2 {
  color: #1e3c72;
  margin-bottom: 20px;
}

.product-detail-content ul {
  margin-top: 20px;
}


.product-cta {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.product-cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  background: #fff;
  color: #1e3c72;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}



.blog-section {
  padding: 50px 0;
  background: #f7f9fc;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b1b3f;
}

.section-head p {
  font-size: 16px;
  color: #6b7280;
  margin-top: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

.blog-image {
  position: relative;
  height: 230px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 27, 63, 0.65),
    rgba(11, 27, 63, 0)
  );
}

.blog-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 19px;
  font-size: 18px;
  font-weight: 600;
  color: #0b1b3f;
  z-index: 2;
}

.blog-content {
  padding: 28px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b1b3f;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #5f6b7a;
}

.career-content{
    padding:20px 20px;
    background:efecef;
}
.career-content h4{
    font-size:35px;
    font-weight:750;
    text-align:center;
    margin-bottom:10px;
}
.career-content p{
    font-size:15px;
    color:#111;
    padding:0px 20px;
    text-align: center;
}
.more-content{
    display:none;
}
.read-text, .less-text{
    color:#0b5ed7;
    font-weight:600;
    cursor:pointer;
}

career-form-section{
    background:#f5f7fa;
}
.card-career{
    background:#ffffff;
    border-radius:10px;
}
.career-form-sec{
    box-shadow:0px 5px 25px rgba(0,0,0,0.6);
}
.form-control, .form-select{
    border-radius:6px;
    padding:10px;
    font-size:14px;
}

.btn-primary{
    background:#0b2c4d;
    border:none;
    font-weight:600;
}

.btn-primary:hover{
    background:#083055;
}

.privacy{
    padding:50px 20px;
}

.privacy-content h2{
    text-align:center;
    font-size:40px;
    font-weight:750;
    margin-bottom:50px;
}
.privacy-content p{
    text-align:start;
    font-size:20px;
    color:#222;
    font-weight:500;
    max-width:900px;
    margin:auto;
}


.product-sec{
   background:linear-gradient(180deg, #e8e8e8d1 28%, transparent 100%);
}

.content-product{
    margin-top:40px;
}

/* LEFT MENU */
.product-nav {
  position: sticky;
  top: 100px;
  padding: 34px 26px;
  border-radius: 18px;

  box-shadow: 0 30px 80px rgba(16,24,40,0.08);
  border: 1px solid #eef1f6;
  min-height: 400px;
}

/* TITLE */
.nav-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #0f2744;
  letter-spacing: .5px;

}

/* LIST */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* MAIN LINKS */
.nav-list > li {
  margin-bottom: 14px;
  border-bottom: 4px solid #22055d;
}

.nav-list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;

  transition: all .35s cubic-bezier(.4,0,.2,1);
  background: #f8fafc;
}

.nav-list > li > a:hover {
  background: #0b2c4d;
  color: #fff;

  box-shadow: 0 10px 25px rgba(11,44,77,.25);
}

/* SUB GROUP */
.nav-group > a i {
  font-size: 12px;
  transition: .3s;
}

/* SUBMENU */
.nav-sub {
  list-style: none;
  padding-left: 18px;
  margin-top: 8px;
  display: none;
}

.nav-sub li a {
  display: block;
  padding: 10px 12px;
  font-size: 20px;
  color: #4b5563;
  border-radius: 8px;
  text-decoration: none;
  transition: .3s;
}

.nav-sub li a:hover {
  background: #eaf1ff;
  color: #0b2c4d;
  transform: translateX(5px);
}

/* HOVER OPEN */
.nav-group:hover .nav-sub {
  display: block;
}

.nav-group:hover > a i {
  transform: rotate(90deg);
}

/* MOBILE */
@media(max-width: 768px){
  .product-nav { position: relative; top: 0; margin-bottom: 25px; }
}

/* RIGHT BOX */
.content-side-product h2{
    font-size:30px;
    border-bottom:3px solid #00a8ea;
    font-weight:600;
}
.content-side-product p{
    padding:20px 0px;
    font-size:16px;
    color:#333;
    font-weight:500;
    word-spacing:2px;
}
.products-img-right{
    display:flex;
    align-items:center;
    justify-content:center;
    
}
.toggle-header{
    font-weight:700;
    color:#0b2c4d;
}

#toggleIcon{
    font-size:22px;
    transition:0.3s;
}
.table-heading{
    background:#0b2c4d;
    Color:#fff;
}
.products-section-content{
    text-align:start;
    font-size:18px;
    color:#333;
    padding:50px 0px;
    
}


.product-highlight-sec{
    position:relative;
    padding-top:120px;
}

/* Background Image */
.bg-image{
    background:url('https://images.unsplash.com/photo-1581093588401-16ec3e8c6b6e?w=1400') center/cover no-repeat;
    height:300px;
    width:100%;
}

/* Overlapping White Box */
.product-highlight-box{
    background:rgba(255,255,255,0.95);
    margin-top:-80px;   /* overlap effect */
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
}

/* Product Tags */
.product-tags{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.product-tag{
    padding:10px 18px;
    border-radius:30px;
    background:#f1f5f9;
    color:#0b2c4d;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.product-tag:hover{
    background:#0b2c4d;
    color:#fff;
}

.oncology-main{
  position: relative;
}
.oncology-menu{
  position: absolute;
  display: none;
  left: 100%;
  top: 0;
  background: #fff;
  height: auto;
  width: 250px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.12);
}
.oncology-main:hover .oncology-menu{
  display: block;
}

.oncology-menu ul{
  list-style: none;
  
}
.oncology-menu ul li{
display: flex;
flex-direction: column;
}


.table-main-title {
  font-weight: 700;
  background: #0b2c4d;
  color: #ffffff;
  margin-bottom: 5px;
  padding: 5px 10px;
  width: fit-content;
  border-bottom: 5px solid #1a7e82;
}

.table-tagline {
  color: #555;
  margin-bottom: 25px;
  font-size: 15px;
}

.custom-product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.custom-product-table thead {
  background: linear-gradient(312deg, #14ba2a, #1d0f79, #231244);
  color: #fff;
}

.custom-product-table th,
.custom-product-table td {
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #041937;
}

.custom-product-table tbody tr:hover {
  background: #cdcfd3;
}

.custom-product-table td:last-child {
  line-height: 1.6;
}










