 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   font-family: Arial, sans-serif;
 }


 /* ===========================
 ===========================
  section animation
============================
============================ */

 section {

   opacity: 0;
   transform: translateY(50px);
   transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }

 section.visible {
   opacity: 1;
   transform: translateY(0);
 }

 .fade-in {
   transform: none;
 }

 .drop-in {
   transform: translateY(-50px);
 }

 .slide-in {
   transform: translateX(-50px);
 }

 /* Animation active state */
 section.show {
   opacity: 1;
   transform: translateY(0);
 }

 /* Top Bar */
 header {
   position: sticky;
   top: 0;
   z-index: 10000;
 }

 .top-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 5%;
   background: #fff;
 }

 .logo img {
   height: 50px;
 }

 .contact-info {
   text-decoration: none;
   display: flex;
   gap: 20px;
   align-items: center;
   color: #003087;
   font-size: 14px;
 }

 .contact-info .info-head {
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .contact-info a {
   text-decoration: none;
   color: #159EEC;
 }

 .info-item {
   display: flex;
   align-items: center;
 }

 .info-item img {
   width: 24px;
   height: 24px;
   display: inline;
   margin-right: 8px;
   color: #003087;
 }

 .hamburger {
   display: none;
   font-size: 22px;
   cursor: pointer;
   color: #00237E;
 }

 /* Main nav */
 .main-nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #00237E;
   padding: 0px 5%;
   height: 60px;
 }

 .nav-item {
   display: flex;
   list-style: none;
   gap: 22px;
   align-items: center;
 }

 .nav-item>li {
   position: relative;
   display: flex;
   align-items: center;
   height: 60px;
 }

 .nav-item a {
   color: #fff;
   text-decoration: none;
   padding: 8px 0;
   display: block;
   font-size: 15px;
 }

 .nav-item a:hover,
 .nav-item a.active {
   color: #00bfff;
 }

 /* Submenu base */
 .sub-menu {
   display: none;
   position: absolute;
   top: 100%;
   margin-right: 20px;
   background: #0039a6;
   min-width: 200px;
   list-style: none;
   padding: 6px 0;
   border-radius: 4px;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
   z-index: 99999999999999999;
 }

 .sub-menu li a {
   display: block;
   padding: 10px 14px;
   color: #fff;
   font-size: 14px;
 }

 .sub-menu li a:hover {
   background: #00237E;
 }

 /* Desktop: show only hovered submenu */
 @media (min-width:769px) {
   .nav-item li:hover>.sub-menu {
     display: block;
   }
 }

 /* Mobile layout */
 .nav-right {
   display: flex;
   align-items: center;
   gap: 14px;
 }

 .btns {
   background: linear-gradient(90deg, #00bfff, #007bff);
   padding: 8px 14px;
   color: #fff;
   border-radius: 20px;
   text-decoration: none;
 }

 @media (max-width:768px) {
   .contact-info {
     display: none;
   }

   .hamburger {
     display: block;
   }

   .main-nav {
     flex-direction: column;
     align-items: flex-start;
     display: none;
     width: 100%;
     height: fit-content;
   }

   .main-nav.show {
     display: flex;
   }

   .nav-item {
     flex-direction: column;
     gap: 0;
     width: 100%;
   }

   .nav-item>li {
     width: 100%;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     display: block;
     height: fit-content;

   }

   .nav-item a {
     padding: 12px 16px;
     width: 100%;
   }

   /* mobile submenus become static (stacked) */
   .sub-menu {
     position: static;
     width: 100%;
     box-shadow: none;
     border-radius: 0;
     padding-left: 0;
   }

   .sub-menu li a {
     padding-left: 30px;
   }

   /* show only the opened submenu */
   .nav-item li.open>.sub-menu {
     display: block;
   }

   .nav-right {
     display: none;
   }
 }




 /* footer section  */
 .footer {
   background-color: #1d2c5e;
   color: #fff;
   font-family: Arial, sans-serif;
   padding: 50px 10%
 }

 .footer-container {
   display: flex;
   justify-content: space-between;

   align-items: start;
   gap: 30px;
 }

 .footer-about {
   max-width: 30%;
 }

 .footer-about p {
   font-size: 14px;
   line-height: 1.6;
 }

 .footer-logo {
   max-width: 180px;
   margin-bottom: 15px;
 }

 .footer-links h4,
 .footer-contact h4 {
   font-size: 16px;
   margin-bottom: 12px;
   font-weight: bold;
 }

 .footer-links ul {
   list-style: none;
   padding: 0;
 }

 .footer-links ul li {
   margin-bottom: 8px;
 }

 .footer-links ul li a {
   text-decoration: none;
   color: #fff;
   font-size: 14px;
   transition: color 0.3s;
 }

 .footer .footer-contact a{
      text-decoration: none;
   color: #fff;
   font-size: 14px;
   transition: color 0.3s;
 }

 .footer-links ul li a:hover {
   color: #01A1FF
 }

 .footer-contact p {
   font-size: 14px;
   margin-bottom: 10px;
 }

 .footer-contact div {
   display: flex;
   justify-content: start;
   align-items: center;
   gap: 10px;
   padding-bottom: 10px;
 }

 .footer-contact div i {
   width: 24px;
   height: 24px;
   background-color: #01A1FF;
   color: white;
   margin-right: 8px;

   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   font-size: 12px;
 }

 hr {
   border: none;
   border-top: 1px solid #4a5b9d;
   margin: 20px 0;
 }

 .footer-bottom {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   gap: 15px;
 }

 .footer-bottom p {
   font-size: 12px;
 }

 .footer-policies a {
   font-size: 12px;
   color: #fff;
   margin-right: 15px;
   text-decoration: none;
 }

 .footer-policies a:hover {
   color: #01A1FF;
 }

 .footer-socials {
   display: flex;
 }

 .footer-socials a {
   color: #fff;
   margin-left: 10px;
   font-size: 16px;
   transition: color 0.3s;
 }

 .footer-socials a i {
   width: 30px;
   height: 30px;
   background-color: #BFD2F8;
   color: #002366;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .footer-socials a:hover {
   color: #01A1FF;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .footer-container {
     display: grid;
     grid-template-columns: 1fr;
   }

   .footer-about {
     max-width: 100%;
   }

   .footer-bottom {
     flex-direction: column;
     text-align: center;
   }
 }

 /* home pages */

 .swiper {
   width: 100%;
   max-height: 700px;
 }

 .swiper-slide {
   display: flex;
   justify-content: center;
   align-items: center;
   color: white;
   font-size: 2rem;
   text-align: center;
   background-size: cover;
   background-position: center;
 }

 /* Dark overlay */
 .swiper-slide::before {
   content: "";
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   z-index: 1;
 }



 /* Text content */
 .slide-content {
   position: relative;
   z-index: 2;
   padding: 70px 70px 0 70px;
   height: 600px;
   
   display: flex;
   justify-content: space-between;
   align-items: center;
   text-align: left;


 }

  .slide-body {
    max-width: 700px;
  }

 .slide-body h2 {
   font-size: 50px;
   color: #003087;

 }

 .slide-body p {
   font-size: 19px;
   color: black;
 }

 .slide-body .slider-btn .learn-btn {
   background-color: transparent;
   border: solid 2px #003087;
   color: #003087;
   padding: 15px;

   border-radius: 8px;
   width: 200px;
   transition: background-color 0.3s, color 0.3s, border-color 0.3s;
 }

 .slide-body .slider-btn .learn-btn:hover {
   background-color: #003087;
   color: white;
   border-color: white;
 }

 .slide-body .slider-btn .request-call-btn {
   background-color: #159EEC;
   color: white;
   padding: 15px;
   border-color: white;

   border-radius: 8px;
   width: 200px
 }

 .slide-body .slider-btn .request-call-btn:hover {
   background-color: #0086bb;
   color: white;
   border-color: white;
 }


 .slide-body {
   position: relative;
   z-index: 2;
   /* width: 600px; */


   height: fit-content;
   display: flex;
   flex-direction: column;
   text-align: left;
   justify-content: center;
   gap: 30px;
 }

 .slide-content .slide-images{
  height: 100%;
  display: flex;
  align-items: end;
 }

 .slide-images img {
   width: 500px;
   
 }




 h1 {
   font-size: clamp(2rem, 5vw, 4rem);
   margin-bottom: 10px;
 }

 p {
   font-size: clamp(1rem, 2.5vw, 1.5rem);
 }

 /* Pagination styling */
 .swiper-pagination-bullet {
   background: white;
   opacity: 0.8;
 }

 .swiper-pagination-bullet-active {
   background: #ffcc00;
 }

 /* Navigation Arrows */
 .swiper-button-next,
 .swiper-button-prev {
   color: white;
   transition: 0.3s;
 }

 .swiper-button-next:hover,
 .swiper-button-prev:hover {
   color: #007bff;
 }

 /* responsiveness for heros section  */

 @media (max-width: 1270px) {
   .slide-body h2 {
     font-size: 40px;
   }
 }

 @media (max-width: 1162px) {
   .slide-body h2 {
     font-size: 30px;
   }

   .slide-content {
     padding: 50px 50px 0 50px;
   }

 }

 @media (max-width: 996px) {
   .slide-content .slide-images img {
     width: 400px;
   }

 }

 @media (max-width: 927px) {
   /* .swiper {
     height: 450px;
   } */

  


   .slide-body h2 {
     font-size: 25px;
   }

   .slide-body p {
     font-size: 15px;
   }

   .slide-body .slider-btn .learn-btn {

     width: 80%;


   }

   .slide-body .slider-btn .request-call-btn {

     width: 80%;

   }

   .slide-content {
     padding: 30px 30px 0 30px;
   }
 }

 /* @media (max-width:800px){
  
      .slide-body{
        width:450px;
        align-items: center;
      }
      .slide-body .slider-btn{
        width:100%;
        display: flex;
        justify-content: space-between;
      }
    } */

 @media (max-width:776px) {
   .swiper .slide-content {
     padding: 30px;
   }

   /* .slide-body{
        width:400px;
      } */
   .swiper .swiper-button-next {
     display: none;
   }

   .swiper .swiper-button-prev {
     display: none;
   }


 }

 @media (max-width:600px) {
   .swiper {
     height: 800px;
   }

   .slide-content .slide-images {
     display: none;
   }

   .swiper .slide-content {
     padding: 20px 20px 0 20px;
     height: 400px;
   }

   .slide-body {
     height: fit-content;
     justify-content: start;
   }

   .slide-body h2 {
     font-size: 25px;
   }

   /* .slide-body{
        width:400px;
      } */
   .swiper .swiper-button-next {
     display: none;
   }

   .swiper .swiper-button-prev {
     display: none;
   }

   .slide-body .slider-btn button {
     width: 100% !important;
   }


 }




 @media (max-width:456px) {
   .slide-body h2 {
     font-size: 20px;
   }
 }



 /* ============================
============================
     partner logo section
============================
============================ */


 .partner-logo-section {
   width: 100%;
   padding: 50px 5%;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #ECF7FD;
 }

 .logo-section {
   width: 70%;

   text-align: center;
 }

 .logo-section h2 {
   font-size: 1.8rem;
   font-weight: bold;
   color: #002366;
   margin-bottom: 30px;
 }

 .logo-slider {
   overflow: hidden;
   position: relative;
 }

 .logo-track {
   display: flex;
   animation: scroll 20s linear infinite;
   width: max-content;
 }

 .logo-slide {
   flex: 0 0 auto;
   margin: 0 20px;
 }

 .logo-slide img {
   width: 150px;
   height: auto;
   display: block;
   background: white;
   padding: 10px;
   border-radius: 8px;
   box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
 }

 @keyframes scroll {
   0% {
     transform: translateX(0);
   }

   100% {
     transform: translateX(-50%);
   }
 }

 @media (max-width: 768px) {
   .logo-slide img {
     width: 110px;
     padding: 8px;
   }
 }

 @media (max-width: 480px) {
   .logo-slide img {
     width: 90px;
     padding: 6px;
   }
 }







 /* ============================
   ============================

   seconde section code
   ============================
   ============================ */

 .info-section {
   padding: 50px 5%;
 }

 .info-container {
   display: flex;
   align-items: center;
   justify-content: space-between;

   gap: 40px;
   /* flex-wrap: wrap; */
 }

 .small-screen-text {
   display: none;
   margin-bottom: 30px;
   text-align: left;
   color: #1F2B6C;
 }

 .info-text {
   flex: 1;
   min-width: 300px;
 }

 .info-text h2 {
   color: #1F2B6C;
   font-size: 1.8rem;
   margin-bottom: 15px;
   text-align: left;
 }

 .info-text p {
   font-size: 0.95rem;
   line-height: 1.6;
   margin-bottom: 15px;
   color: #333;
   text-align: left;
 }

 .info-text .btn {
   display: inline-block;
   background-color: #159EEC;
   color: white;
   padding: 10px 20px;
   border-radius: 25px;
   text-decoration: none;
   font-size: 0.9rem;
   transition: background-color 0.3s ease;
 }

 .info-text .btn:hover {
   background-color: #003087;
 }

 .info-image {
   flex: 1;
   min-width: 280px;
   display: flex;
   justify-content: center;
 }

 .info-image img {
   max-width: 100%;
   height: auto;
   border-radius: 12px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 /* Responsive adjustments */
 @media (max-width: 1024px) {
   .info-section {
     padding: 40px 5%;
   }
 }

 @media (max-width: 948px) {


   .larg-screen-text {
     display: none;
   }

   .small-screen-text {
     display: block;
   }
 }

 @media (max-width: 768px) {

   .info-container {
     flex-direction: column-reverse;
     text-align: center;
   }

   .info-text h2 {
     font-size: 1.5rem;
   }

   .info-text p {
     font-size: 0.9rem;
   }
 }




 /* ============================
   ============================

   New section start
   ============================
   ============================ */




 /* .information-section{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 60px 10%;
        flex-wrap: wrap;
    } */

 /* Left side - images */
 .image-container {
   display: grid;
   grid-template-columns: 250px 250px;
   /* fixed column widths */
   grid-template-rows: 250px 250px;
   /* fixed row heights */
   gap: 15px;
 }

 .left-top {
   grid-column: 1 / 2;
   grid-row: 1 / 2;
 }

 .left-bottom {
   grid-column: 1 / 2;
   grid-row: 2 / 3;
 }

 .right-image {
   grid-column: 2 / 3;
   grid-row: 1 / 3;
   /* spans two rows */
 }

 .left-column {
   display: flex;
   flex-direction: column;
   gap: 15px;
 }

 .image-container img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 12px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
   transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .image-container img:hover {
   transform: scale(1.05);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
 }

 /* Right side - text */
 .content {
   flex: 1;
   min-width: 300px;
   animation: fadeInRight 1s ease forwards;
   text-align: left;
 }

 .content h2 {
   color: #0047AB;
   font-size: 1.8rem;
   font-weight: bold;
   margin-bottom: 20px;
 }

 .content p,
 .content ul {
   margin-bottom: 15px;
   font-size: 1rem;
   color: #555;
   text-align: left;
 }

 .content ul {
   margin-left: 20px;
 }

 .btn {
   display: inline-block;
   padding: 12px 25px;
   background: #00AEEF;
   color: #fff;
   font-size: 1rem;
   border-radius: 30px;
   text-decoration: none;
   transition: background 0.3s ease, transform 0.3s ease;
 }

 .btn:hover {
   background: #0086bb;
   transform: translateY(-2px);
 }

 /* Animations */
 @keyframes fadeInLeft {
   from {
     opacity: 0;
     transform: translateX(-50px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 @keyframes fadeInRight {
   from {
     opacity: 0;
     transform: translateX(50px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 /* Responsive */
 @media (max-width: 1024px) {
   .section {
     gap: 30px;
     padding: 40px 5%;
   }
 }

 @media (max-width: 945px) {
   .fourth-container {
     flex-direction: column;
   }
 }

 @media (max-width: 768px) {
   .fourth-container {
     flex-direction: column;
     text-align: center;
   }

   .image-grid {
     grid-template-columns: 1fr;
     max-width: 300px;
   }
 }

 @media (max-width: 576px) {
   .content h2 {
     font-size: 1.4rem;
   }

   .content p {
     font-size: 0.95rem;
   }

   .image-container {
     display: block;
   }


   .left-bottom {
     display: none;
   }

   .right-image {
     display: none;
   }

   .left-column {
     display: block
   }
 }


 @media (max-width: 5px) {
   .content h2 {
     font-size: 1.4rem;
   }

   .content p {
     font-size: 0.95rem;
   }

   .image-container {
     display: grid;
     grid-template-columns: 150px 150px;
     /* fixed column widths */
     /* grid-template-rows: 250px 250px;    fixed row heights */
     gap: 15px;
   }

   .left-top {
     grid-column: 1 / 2;
     grid-row: 1 / 2;
   }

   .left-bottom {
     grid-column: 1 / 2;
     grid-row: 2 / 3;
   }

   .right-image {
     grid-column: 2 / 3;
     grid-row: 1 / 3;
     /* spans two rows */
   }

   .left-column {
     display: flex;
     flex-direction: column;
     gap: 15px;
   }
 }



 /* =======================
    =======================
        state section
    =======================
    =======================     */



 .stats-section {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 40px;
   padding: 60px 20px;
   background: #f8f9fc;
   text-align: center;
 }

 .stat-box {
   flex: 1 1 200px;
 }

 .stat-number {
   font-size: 24px;
   font-weight: bold;
   color: #009cff;
 }

 .stat-label {
   font-size: 16px;
   font-weight: bold;
   color: #002060;
   margin-top: 5px;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .stats-section {
     gap: 20px;
   }

   .stat-number {
     font-size: 20px;
   }
 }



 /* =======================
    =======================
        Partner section
    =======================
    =======================     */

 .partner-section {
   display: flex;
   flex-wrap: wrap;
   align-items: start;
   justify-content: center;
   gap: 40px;
   min-height: 500px;
 }

 .partner-text {

   max-width: 450px;
 }

 .partner-text h2 {
   color: #002c77;
   font-size: 1.8rem;
   font-weight: bold;
   line-height: 1.4;
   margin-bottom: 15px;
 }

 .partner-text p {
   font-size: 0.95rem;
   line-height: 1.6;
   color: #555;
   margin-bottom: 20px;
 }

 .partner-text button {
   padding: 10px 25px;
   border: 2px solid #002c77;
   background: transparent;
   color: #002c77;
   font-size: 0.95rem;
   border-radius: 25px;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .partner-text button:hover {
   background: #002c77;
   color: #fff;
 }

 .cards-container {

   background: linear-gradient(to right, #d9e6f7, #a7c8eb);
   border-radius: 10px;
   display: flex;
   gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
   padding: 20px;
   height: 250px;
 }

 .card {
   background: #fff;
   border-radius: 12px;
   padding: 25px 20px;
   text-align: center;
   width: 250px;
   height: 300px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   opacity: 0;
   animation: fadeInUp 0.6s ease forwards;
 }

 /* Animate staggered cards */
 .card:nth-child(1) {
   animation-delay: 0.2s;
 }

 .card:nth-child(2) {
   animation-delay: 0.4s;
   transform: translateY(-20px);
 }

 .card:nth-child(3) {
   animation-delay: 0.6s;
 }

 .card:nth-child(1) {
   position: relative;
   top: 80px
 }

 .card:nth-child(2) {
   position: relative;
   top: 50px
 }

 .card:nth-child(3) {
   position: relative;
   top: 80px
 }

 /* Hover effect */
 .card:hover {
   transform: translateY(-28px);
   /* adds extra lift even for middle card */
   box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
 }

 .icon {
   width: 60px;
   height: 60px;
   margin: 0 auto 15px;
   border-radius: 50%;
   background: #002c77;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 28px;
 }

 .card h3 {
   color: #002c77;
   font-size: 1.1rem;
   margin-bottom: 10px;
 }

 .card p {
   font-size: 0.9rem;
   color: #555;
   line-height: 1.5;
 }

 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(20px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Responsive */

 @media (max-width: 1464px) {
   .card {
     width: 200px;
   }
 }

 @media (max-width: 1292px) {
   .partner-text {
     max-width: 100%;
   }

   .partner-text h2 {
     text-align: center;
   }

   .partner-text h2 br {
     display: none;
   }

   .card {
     width: 250px;
   }
 }

 @media (max-width:924px) {
   .partner-section .card {
     width: 200px;
   }

   .partner-section {
     height: 700px;
     flex-wrap: nowrap;
     flex-direction: column;
     justify-content: start;
   }
 }

 @media (max-width: 768px) {
   .partner-section {
     flex-direction: column;
     text-align: center;
     height: fit-content;
   }

   .cards-container {
     flex-direction: column;
     align-items: center;

     padding: 0;
     height: 800px;
   }

   .partner-section .card {
     width: 80%;
     height: fit-content;

   }

   .card:nth-child(1) {
     top: 0;


   }

   .card:nth-child(2) {
     top: 0;

   }

   .card:nth-child(3) {
     top: 0;

   }

 }

 @media (max-width: 366px) {
    .cards-container{
      flex-direction: row;
      height: fit-content;
      padding-top: 20px;
      padding-bottom: 20px;
    }
 }


 /* 
    =====================
    =====================
       service section
    =====================
    ===================== */


 .services-section {
   padding: 60px 20px;
   max-width: 1200px;
   margin: auto;
   text-align: center;
 }

 .services-section h2 {
   color: #002c77;
   font-size: 1.8rem;
   font-weight: bold;
   margin-bottom: 40px;
 }

 .logo-head {
   display: flex;
   gap: 20px;
 }

 .services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
 }

 .service-card {
   background: #fff;
   border-radius: 12px;
   padding: 25px 20px;
   text-align: left;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: flex;
   flex-direction: column;
   gap: 15px;
 }

 .service-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
 }

 .logo-head .icon {
   width: 50px;
   height: 50px;
   border-radius: 8px;
   background: #007bff;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 24px;
   margin: 0;
 }



 .service-title {
   font-size: 1rem;
   font-weight: bold;
   color: #002c77;
 }

 .service-desc {
   font-size: 0.9rem;
   line-height: 1.5;
   color: #555;
 }

 /* Responsive text alignment for small screens */
 @media (max-width: 500px) {
   .service-card {
     text-align: center;
     align-items: start;
   }

   .service-desc {
     text-align: left;
   }
 }



 /* =====================
        =====================
          new section 
        =====================
        ===================== */

 .why-section {
   text-align: center;
   padding: 50px 20px;
   max-width: 1100px;
   margin: auto;
 }

 .why-section h2 {
   color: #002c77;
   font-size: 1.8rem;
   font-weight: bold;
   margin-bottom: 20px;
   line-height: 1.4;
 }

 .why-section p {
   font-size: 0.95rem;
   line-height: 1.6;
   color: #444;
   margin-bottom: 15px;
 }

 .image-box {
   position: relative;
   margin-top: 30px;
   overflow: hidden;
   border-radius: 8px;
 }

 .image-box img {
   width: 100%;
   height: auto;
   display: block;
   transition: transform 0.4s ease;
 }

 /* Overlay Shapes */
 .overlay-shape {
   position: absolute;
   top: 0;
   left: 0;
   width: 180px;
   height: 100%;
   background: rgba(0, 74, 173, 0.15);
   clip-path: circle(60% at left 50%);
   pointer-events: none;
 }

 /* Hover zoom effect */
 .image-box:hover img {
   transform: scale(1.05);
 }

 /* Responsive text sizing */
 @media (max-width: 768px) {
   .why-section h2 {
     font-size: 1.4rem;
   }

   .why-section p {
     font-size: 0.9rem;
   }
 }


 /* =================================
 =================================
    Testimonials section
==================================
================================== */


 .testimonial-section {

   padding: 60px 20px;
   color: #fff;
   position: relative;
 }

 .testimonial-slide {
   margin: auto;
   text-align: center;
   border-radius: 12px;
   display: flex;
   flex-direction: column;
   align-items: center;
 }

 .quote-icon {
   font-size: 40px;
   color: #fff;
   margin-bottom: 20px;
 }

 .testimonial-content {
   width: 80%;
   display: flex;
   justify-content: space-between;
   gap: 10px;
   text-align: left;
 }

 .testimonial-text {
   font-size: 1rem;
   line-height: 1.6;
   margin-bottom: 25px;
 }

 .author {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
   flex-wrap: wrap;
 }

 .testimonial-content .profile {
   width: 60px;

 }

 .testimonial-content .profile img {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid #fff;
 }

 .author-testimonial-text {
   width: 90%;
 }

 .author-info {
   text-align: left;
 }

 .author-info strong {
   display: block;
   font-size: 1rem;
 }

 .author-info span {
   font-size: 0.85rem;
   opacity: 0.9;
   border-bottom: 1px solid;
   padding-bottom: 10px;
 }

 /* Pagination styling */
 .swiper-pagination-bullet {
   background: #fff;
   opacity: 0.7;
 }

 .swiper-pagination-bullet-active {
   opacity: 1;
 }

 /* Responsive text */
 @media (max-width: 600px) {
   .testimonial-text {
     font-size: 0.9rem;
   }

   .author-info {
     text-align: left
   }
 }


 /* ============================
============================
     faq section
============================
============================ */

 .faq-section {
   padding: 50px 5%;
 }

 .faq-container {
   max-width: 800px;
   margin: auto;
 }

 .faq-title {
   text-align: center;
   font-size: 2rem;
   font-weight: bold;
   margin-bottom: 30px;
   color: #002366;
 }

 .faq-item {
   border-bottom: 1px solid #e0e0e0;
   padding: 15px 0;
 }

 .faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   font-size: 1rem;
   color: #002366;
   font-weight: 500;
 }

 .faq-question span {
   font-weight: bold;
   margin-right: 8px;
 }

 .faq-icon {
   width: 28px;
   height: 28px;
   border-radius: 4px;
   background-color: #002366;
   color: white;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 20px;
   font-weight: bold;
   transition: transform 0.3s ease;
 }

 .faq-answer {
   max-height: 0;
   overflow: hidden;
   background-color: #e6f0ff;
   color: #333;
   padding: 0 15px;
   font-size: 0.95rem;
   transition: max-height 0.4s ease, padding 0.3s ease;
 }

 .faq-item.active .faq-answer {
   max-height: 500px;
   padding: 15px;
 }

 .faq-item.active .faq-icon {
   background-color: #002366;
 }

 @media (max-width: 600px) {
   .faq-title {
     font-size: 1.5rem;
   }

   .faq-question {
     font-size: 0.95rem;
   }

   .faq-answer {
     font-size: 0.9rem;
   }
 }





 /* ============================
============================
     contact-form
============================
============================ */

 .contact-form-section {
   padding: 50px 10%;
   background-color: #e6f0ff;
   ;
 }

 .contact-container {
   display: flex;
   justify-content: space-around;
   gap: 30px;
   align-items: center;
 }

 /* Left side - Working Hours */
 .working-hours {
   background: white;
   padding: 30px;
   padding-bottom: 0;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   width: 35%;
 }

 .working-hours h3 {
   font-size: 1.3rem;
   color: #002366;
   margin-bottom: 20px;
 }

 .hours-list {
   margin-bottom: 20px;
 }

 .hours-item {
   display: flex;
   justify-content: space-between;
   margin-bottom: 8px;
   font-size: 0.95rem;
 }

 .hours-item span:last-child {
   font-weight: bold;
 }

 .doctor-img {
   margin-top: 20px;
   text-align: center;
 }

 /* .doctor-img img {
        width: 150px;
        height: auto;
    } */
 /* Right side - Form */
 .contact-form {
   background: white;
   padding: 30px;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   width: 60%;
 }

 .contact-form h3 {
   font-size: 1.3rem;
   color: #002366;
   margin-bottom: 20px;
 }

 .form-group {
   margin-bottom: 15px;
   position: relative;
   display: flex;
   align-items: center;
 }

 .form-group img {
   position: absolute;
   left: 12px;
   color: #888;
   font-size: 1rem;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
   width: 100%;
   padding: 12px 40px;
   border: 1px solid #d6e0f0;
   border-radius: 6px;
   outline: none;
   font-size: 0.95rem;
   transition: 0.3s ease;
 }

 .form-group select {
   padding-left: 40px;
   cursor: pointer;
   background: white;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
   border-color: #002366;
   box-shadow: 0 0 5px rgba(0, 35, 102, 0.3);
 }

 .form-group textarea {
   resize: none;
   height: 120px;
   padding-top: 12px;
 }

 .phone-group {
   display: flex;
   gap: 10px;
 }

 .phone-group select {
   width: 50%;
 }

 .phone-group input {
   width: 65%;
 }

 .btn-submit {
   width: 100%;
   background: #002366;
   color: white;
   padding: 12px;
   border: none;
   border-radius: 25px;
   font-size: 1rem;
   font-weight: bold;
   cursor: pointer;
   transition: background 0.3s ease, transform 0.2s ease;
 }

 .spinner-btn {
   width: 30px;
   height: 30px;
   vertical-align: text-bottom;
   border: 0.15em solid currentColor;
   border-right-color: transparent;
   border-radius: 50%;
   animation: spinner-border .75s linear infinite;
 }

 @keyframes spinner-border {
   100% {
     transform: rotate(360deg);
   }
 }


 .loading-btn {
 
   width: 100%;
   background: #002366;
   color: white;
   padding: 12px;
   border: none;
   border-radius: 25px;
   font-size: 1rem;
   font-weight: bold;
   cursor: pointer;
   transition: background 0.3s ease, transform 0.2s ease;
   text-align: center;
   display: none;
   justify-content: center;
   align-items: center;
 }



 .btn-submit:hover {
   background: #001b4d;
   transform: translateY(-2px);
 }

 .error {
   color: red;
   font-size: 0.8rem;
   margin-top: 3px;
   display: none;
 }

 .d-none{
  color:green
 }

 .text-success {
   color: green;
 }

 .text-danger {
  color:red;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .contact-container {
     flex-direction: column;
   }

   .working-hours,
   .contact-form {
     width: 100%;
   }

   .phone-group {
     flex-direction: column;
   }

   .phone-group select,
   .phone-group input {
     width: 100%;
   }
 }

 @media (max-width:360px) {
     .doctor-img img {
      width: 200px;
   margin-top: 20px;
   text-align: center;
 }
 }





 /* ===========================
 ===========================
  section animation
============================
============================ */



 .commitment-section {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 50px 5%;
   gap: 40px;
   flex-wrap: wrap;
   background-color: #ECF7FD;
 }

 .commitment-text {
   flex: 1 1 450px;
 }

 .commitment-text h2 {
   color: #0a2e72;
   font-size: 2rem;
   font-weight: bold;
   margin-bottom: 10px;
 }

 .commitment-text p {
   font-size: 1rem;
   color: #444;
   line-height: 1.6;
   margin-bottom: 30px;
 }

 .commitment-text h3 {
   color: #0096e0;
   font-size: 1.5rem;
   margin-bottom: 10px;
 }

 /* Image Circle Container */
 .commitment-image {
   flex: 1 1 350px;
   display: flex;
   justify-content: center;
 }

 .circle-wrapper {
   width: 350px;
   height: 350px;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .circle-wrapper img {
   width: 100%;
   height: auto;
   object-fit: cover;
 }

 @media (max-width: 768px) {
   .commitment-section {
     padding: 30px 5%;
     flex-direction: column-reverse;
     text-align: center;
   }

   .commitment-text h2 {
     font-size: 1.8rem;
   }

   .commitment-text h3 {
     font-size: 1.3rem;
   }

   .circle-wrapper {
     width: 250px;
     height: 250px;
   }
 }

 @media (max-width: 480px) {
   .circle-wrapper {
     width: 200px;
     height: 200px;
   }
 }



 /* ===========================
 ===========================
  health-care-section
============================
============================ */


 .health-care-section {
   width: 100%;
   padding: 50px 5%;
 }

 .healthcare-section-title {
   color: #003087;
   font-size: clamp(22px, 2.2vw, 32px);
   font-weight: bold;
   line-height: 1.3;
   margin-bottom: 10px;
 }

 .healthcare-section-subtitle {
   color: #555;
   font-size: clamp(14px, 1.5vw, 16px);
   line-height: 1.6;
   max-width: 900px;
 }

 /* Container for all services */
 .healthcare-services-container {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   margin-top: 40px;
 }

 /* Each service item */
 .healthcare-service-card {
   flex: 1 1 300px;
   max-width: 300px;
 }

 /* Number circle */
 .healthcare-service-circle {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background-color: #00a6ff;
   color: #fff;
   font-weight: bold;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 16px;
   font-size: 14px;
 }

 /* Service title */
 .healthcare-service-title {
   color: #003087;
   font-size: 16px;
   font-weight: bold;
   margin-bottom: 8px;
 }

 /* Service description */
 .healthcare-service-description {
   font-size: 14px;
   color: #555;
   line-height: 1.5;
 }

 /* Mobile adjustments */
 @media (max-width: 768px) {
   .healthcare-services-container {
     gap: 24px;
   }
 }

 @media (max-width: 480px) {
   .healthcare-service-circle {
     width: 38px;
     height: 38px;
     font-size: 13px;
   }
 }



 /* ===========================
 ===========================
  health-care-section
============================
============================ */


 /* Section background */
 .radiology-section {
   background-color: #0a1f66;
   /* dark blue */
   color: #fff;
   padding: 50px 5%;
 }

 /* Main heading */
 .radiology-title {
   font-size: clamp(22px, 2.4vw, 34px);
   font-weight: bold;
   line-height: 1.3;
   margin-bottom: 15px;
 }

 /* Intro text */
 .radiology-intro {
   max-width: 1000px;
   font-size: clamp(14px, 1.3vw, 16px);
   line-height: 1.6;
   margin-bottom: 30px;
 }

 /* List container */
 .radiology-services-list {
   display: flex;
   flex-wrap: wrap;
   gap: 20px 60px;
   margin-bottom: 40px;
 }

 /* Each list group (column) */
 .radiology-services-column {
   flex: 1 1 220px;
 }

 /* List style */
 .radiology-services-column ul {
   list-style: disc;
   padding-left: 20px;
 }

 .radiology-services-column li {
   font-size: 16px;
   font-weight: bold;
   margin-bottom: 12px;
 }

 /* Subheading */
 .radiology-subtitle {
   font-size: clamp(18px, 2vw, 22px);
   font-weight: bold;
   margin-bottom: 12px;
 }

 /* Bottom paragraph */
 .radiology-description {
   max-width: 1000px;
   font-size: clamp(14px, 1.3vw, 16px);
   line-height: 1.6;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
   .radiology-services-list {
     gap: 16px 30px;
   }
 }

 @media (max-width: 480px) {
   .radiology-section {
     padding: 30px 16px;
   }
 }


 /* ===========================
 ===========================
  Teams section
============================
============================ */





 .management-team-section {
   padding: 50px 5%;
   background-color: #fff;
   text-align: center;
 }

 /* Title */
 .management-team-title {
   font-size: clamp(22px, 2.5vw, 32px);
   font-weight: bold;
   color: #003087;
   margin-bottom: 50px;
 }

 /* Team grid */
 .management-team-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
 }

 /* Each team member */
 .management-team-member {
   flex: 1 1 220px;
   max-width: 250px;
   text-align: center;
 }

 /* Profile image */
 .management-team-photo {
   width: fit-content;
   height: auto;
   border-radius: 12px;
   object-fit: cover;
   margin-bottom: 16px;
 }

 /* Name */
 .management-team-name {
   font-size: 16px;
   font-weight: bold;
   margin-bottom: 4px;
 }

 /* Position */
 .management-team-position {
   font-size: 14px;
   font-weight: bold;
   color: #000;
   margin-bottom: 12px;
 }

 /* Bio */
 .management-team-bio {
   font-size: 14px;
   color: #555;
   line-height: 1.5;
 }

 /* Responsive tweaks */
 @media (max-width: 768px) {
   .management-team-grid {
     gap: 24px;
   }
 }

 @media (max-width: 480px) {
   .management-team-section {
     padding: 30px 16px;
   }
 }






 /* ===========================
 ===========================
  Banner section
============================
============================ */

 .banner {
   position: relative;
   width: 100%;
   height: 250px;
   /* similar height to screenshot */
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;

   padding: 50px 5%;
 }

 .banner::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   /* dark overlay */
   z-index: 1;
 }

 .banner h2 {
   position: relative;
   color: #fff;
   font-size: 28px;
   font-weight: bold;
   text-align: center;
   z-index: 2;
   margin: 0;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
   .banner {
     height: 140px;
   }

   .banner h2 {
     font-size: 22px;
   }
 }

 @media (max-width: 480px) {
   banner {
     height: 120px;
   }

   .banner h2 {
     font-size: 20px;
   }
 }





 /* ===========================
 ===========================
  reporting section 
============================
============================ */

 .reporting-advantages-section {
   padding: 60px 8%;
   background: #ffffff;
   font-family: Arial, Helvetica, sans-serif;
   color: #333;
   line-height: 1.7;
 }

 .reporting-advantages-section h2 {
   font-size: 2rem;
   color: #0a2e80;
   /* deep blue */
   font-weight: bold;
   margin-bottom: 10px;
 }

 .reporting-advantages-section h3 {
   font-size: 1.8rem;
   color: #0a2e80;
   font-weight: bold;
   margin-bottom: 20px;
 }

 .reporting-advantages-section p {
   font-size: 1rem;
   margin-bottom: 20px;
   color: #444;
 }

 .highlight {
   color: #00AEEF;
   font-weight: bold;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .reporting-advantages-section {
     padding: 40px 5%;
   }

   .reporting-advantages-section h2 {
     font-size: 1.6rem;
   }

   .reporting-advantages-section h3 {
     font-size: 1.4rem;
   }

   .reporting-advantages-section p {
     font-size: 0.95rem;
   }
 }

 @media (max-width: 480px) {
   .reporting-advantages-section {
     padding: 30px 5%;
   }

   .reporting-advantages-section h2 {
     font-size: 1.4rem;
   }

   .reporting-advantages-section h3 {
     font-size: 1.2rem;
   }

   .reporting-advantages-section p {
     font-size: 0.9rem;
   }
 }





 /* =======================
    =======================
        blog page 
    =======================
    =======================     */



 .blog-section {
   padding: 60px 20px;
   text-align: center;
   background: #fff;
 }

 .blog-section h5 {
   font-size: 14px;
   color: #555;
   text-transform: uppercase;
   margin-bottom: 10px;
   letter-spacing: 1px;
 }

 .blog-section h2 {
   font-size: 32px;
   font-weight: bold;
   color: #002060;
   margin-bottom: 40px;
 }

 .blog-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
   max-width: 1200px;
   margin: 0 auto;
 }

 .blog-card {
   background: #fff;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
   height: 100%;
   transition: transform 0.3s ease;
 }

 .blog-card:hover {
   transform: translateY(-6px);
 }

 .blog-card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
 }

 .blog-content {
   padding: 20px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
 }

 .blog-content h3 {
   font-size: 18px;
   font-weight: bold;
   color: #002060;
   margin-bottom: 12px;
   text-align: left;
 }

 .blog-content p {
   font-size: 14px;
   color: #444;
   text-align: left;
   flex-grow: 1;
   margin-bottom: 16px;
   line-height: 1.5;
 }

 .blog-content .btn {
   display: inline-block;
   background: #009cff;
   color: #fff;
   padding: 10px 18px;
   border-radius: 25px;
   text-decoration: none;
   font-size: 14px;
   font-weight: bold;
   transition: background 0.3s ease;
 }

 .blog-content .btn:hover {
   background: #007acc;
 }






 /* =======================
    =======================
        contact page
    =======================
    =======================     */

 .contact-box {
   max-width: 1100px;
   margin: 50px auto;
   background: #002060;
   color: #fff;
   border-radius: 12px;
   padding: 30px;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 20px;
   flex-wrap: wrap;
 }

 .contact-item {
   flex: 1 1 250px;
   display: flex;
   align-items: flex-start;
   gap: 12px;
 }

 .contact-item i {
   font-size: 20px;
   color: #00aaff;
   margin-top: 4px;
 }

 .contact-item h4 {
   font-size: 16px;
   margin: 0 0 5px;
   font-weight: bold;
 }

 .contact-item p,
 .contact-item a {
   font-size: 14px;
   margin: 0;
   color: #fff;
   text-decoration: none;
   line-height: 1.5;
 }

 .contact-item a:hover {
   text-decoration: underline;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .contact-box {
     flex-direction: column;
     text-align: left;
   }
 }


 /* =======================
    =======================
        map section 
    =======================
    =======================     */

 .map-section {
   width: 100%;
   max-width: 1200px;
   margin: 40px auto;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .map-section iframe {
   width: 100%;
   height: 400px;
   border: none;
   display: block;
 }

 @media (max-width: 768px) {
   .map-section iframe {
     height: 300px;
   }
 }

 @media (max-width: 480px) {
   .map-section iframe {
     height: 250px;
   }
 }





 /* =======================
    =======================
        popup contact page section
    =======================
    =======================     */



 /* Container for popup UI */
 .popup-ui {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   background: #f8f9fb;
   padding: 20px;
 }

 /* Popup box */
 .popup {
   background: #fff;
   width: 100%;
   max-width: 400px;
   padding: 25px;
   border-radius: 12px;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
   position: relative;
 }

 /* Title */
 .popup h2 {
   font-size: 20px;
   font-weight: 600;
   text-align: center;
   color: #002060;
   margin-bottom: 20px;
 }

 /* Close button (UI only, no JS) */
 .popup .close-btn {
   position: absolute;
   top: 12px;
   right: 15px;
   font-size: 20px;
   font-weight: bold;
   color: #002060;
   cursor: pointer;
 }



 /* Submit button */
 .popup button {
   width: 100%;
   padding: 12px;
   background: #002060;
   border: none;
   border-radius: 30px;
   color: #fff;
   font-size: 15px;
   font-weight: bold;
   cursor: pointer;
   transition: background 0.3s ease;
 }

 .popup button:hover {
   background: #013080;
 }

 /* Responsive tweaks */
 @media (max-width: 480px) {
   .popup {
     padding: 20px;
   }

   .popup h2 {
     font-size: 18px;
   }

   .popup button {
     font-size: 14px;
     padding: 10px;
   }
 }