
        .body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
            background-color: #f4f4f4; /* Light background for contrast */
        }

        .a {
            text-decoration: none;
            color: #17449E;
        }

        h1, h2, h3, h4, h5, h6 {
            margin: 0;
        }

        .header {
            background-color: #ffffff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            width: 290px;
            height: auto;
        }

        .top-bar {
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-grow: 1;
        }

        .top-bar .contact-info {
            display: flex;
            align-items: center;
            margin-left: auto;
            flex-direction: column;
            text-align: right;
        }

        .top-bar .contact-info div {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            font-size: 16px;
            font-weight: 500;
        }

        .top-bar .contact-info i {
            margin-right: 10px;
            color: #17449E;
        }

        /* Navigation Styles */
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .navbar ul {
            list-style: none;
            padding: 0;
            display: flex; /* Flexbox for horizontal layout */
            justify-content: center; /* Center the navigation items */
        }

        .navbar ul li {
            margin: 0 15px;
        }

        .navbar ul li a {
            padding: 10px 15px;
            font-weight: 600;
            color: #17449E;
            transition: color 0.3s;
        }

        .navbar ul li a:hover {
            color: #0d3b7e;
        }

        /* Main Content Styles */
        .main-content {
            padding: 20px;
            max-width: 2000px; /* Limit the width for better readability */
            margin: auto; /* Center the content */
        }

        .welcome-box {
            position: relative; /* Position relative for absolute children */
            background-color: rgba(23, 68, 158, 0.8); /* Dark blue background with opacity */
            color: #fff;
            border-radius: 10px;
            padding: 60px; /* Increased padding for a larger box */
            text-align: center;
            margin-bottom: 30px; /* Negative margin to overlap with the service box */
            overflow: hidden; /* Hide overflow for the watermark */
        }

        .welcome-box h1 {
            font-size: 48px; /* Larger font size for the welcome message */
            margin-bottom: 20px;
        }

        .welcome-box p {
            font-size: 20px; /* Slightly larger font for the paragraph */
            line-height: 1.5; /* Improved line height for readability */
        }

        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 110%;
            height: 110%;
            background-image: url('path/to/your/watermark-image.png'); /* Path to your watermark image */
            background-size: cover; /* Cover the entire box */
            background-position: center; /* Center the image */
            opacity: 0.1; /* Adjust opacity for solidity */
            transform: translate(-50%, -50%); /* Center the watermark */
            z-index: 0; /* Send the watermark behind the text */
        }

        /* Service Box Styles */
        .service-box {
            background-color: White;
            color: White;
            border-radius: 0px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            position: relative; /* Position relative for overlapping */
            z-index: 1; /* Bring the service box above the welcome box */
        }

        .service-item {
            flex: 1;
            margin: 0 10px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .service-item:hover {
            transform: scale(1.05);
        }

        /* Stats Box Styles */
        .stats-box {
            display: flex;
            justify-content: space-around; /* Space items evenly */
            align-items: center;
            background-color: #fff; /* White background for the stats box */
            border: none; /* No border radius */
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for 3D effect */
            margin: 20px auto; /* Center the box with margin */
            width: 90%; /* Slightly narrower than usual */
            max-width: 1000px; /* Maximum width for larger screens */
        }

        .stat-item {
            text-align: center; /* Center the text */
            flex: 1; /* Allow items to grow equally */
        }

        .stat-item h3 {
            font-size: 24px; /* Font size for the numbers */
            margin: 10px 0; /* Margin for spacing */
        }

        .stat-item p {
            font-size: 16px; /* Font size for the descriptions */
            color: #666; /* Gray color for descriptions */
        }

             /* Service Grid Container */
        .service-grid {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .service-title {
            color: #8c97ad;
            text-align: center;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva,
                Verdana, sans-serif;
            font-size: 36px;
            margin-bottom: 40px;
        }

        /* Make the container flexbox with wrap */
        .service-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        /* Square shaped boxes - 3 per row */
        .department-box {
            background-color: #17449e;
            color: #fff;
            border-radius: 5px;
            padding: 20px;
            width: calc((100% - 40px) / 3); /* 3 boxes per row with 20px gap on both sides */
            aspect-ratio: 1 / 1; /* Makes the height equal to width, square shape */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: pointer;
            position: relative;
            transition: transform 0.3s ease;
        }

        .department-box:hover {
            transform: scale(1.05);
        }

        /* Popup style */
        .department-popup {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80%;
            max-width: 220px;
            transform: translate(-50%, -50%);
            background-color: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 15px;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
            z-index: 10;
            font-size: 14px;
            line-height: 1.4;
        }

        .department-box:hover .department-popup {
            display: block;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .department-box {
                width: calc((100% - 20px) / 2);
            }
        }

        @media (max-width: 600px) {
            .department-box {
                width: 100%;
            }
        }

        .department-box {
            background-color: #17449E;
            color: #fff;
            border-radius: 5px;
            padding: 20px;
            margin: 10px;
            width: calc(30% - 20px); /* Set width for square shape */
            height: 200px; /* Fixed height for square shape */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .department-box:hover {
            transform: scale(1.05);
        }

    .expertise-title {
    color: #8c97ad;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 36px;
    letter-spacing: 0px;
    text-transform: none;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Container for all the cards */
.expertise-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; /* Space between cards */
    max-width: 1000px;
    margin: 0 auto;
}



        

           .expertise-box {
            background-color: #bdbcbc; /* White background for expertise boxes */
            border: 1px solid #797676; /* Light border */
            border-radius: 5px; /* Slightly rounded corners */
            padding: 20px;
            margin: 10px 4px; /* Space between boxes */
            box-shadow: 5px 7px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
            position: static; /* Ensure the box is positioned relative for absolute children */
            width: 500px; /* Set width for square shape */
            height: 200px; /* Fixed height for square shape */
            transition: transform 0.3s; /* Transition for hover effect */
            flex-direction: column; /* Stack icon and text vertically */
            align-items: center; /* Center items horizontally */
            justify-content: center; /* Align items to the top */
            font-size: 36px;
        }
         .expertise-row {
              display: flex;
              justify-content: center;
              gap: 40px;
              margin-bottom: 40px;
}  
         .expertise-box:hover {
            transform: scale(1.05); /* Pop-up effect on hover */
        }
        .expertise-box {
            font-size: 20px; /* Font size for expertise titles */
            margin: 10px 30px; /* Space below title */
            text-align: center; /* Center text */
        }
        .expertise-box p {
            font-size: 14px; /* Font size for expertise descriptions */
            color: #666; /* Gray color for descriptions */
            text-align: center; /* Center text */
        }

        .sign-icon {
            font-size: 60px; /* Adjust size as needed */
            position: absolute; /* Position it absolutely */
            right: 0px; /* Adjust left position */
            top: 50%; /* Center vertically */
            transform: translateY(50%); /* Adjust for perfect centering */
            color: rgba(23, 68, 158, 0.8); /* Dark blue color for visibility */
            z-index: 1; /* Ensure it appears above the background */
        }
                  
        .doctor-section {
            padding: 40px; /* Increased padding for more space */
            margin: 0 auto; /* Center the section horizontally */
            text-align: center; /* Center the title */
            background-color: #f9f9f9; /* Light background for contrast */
            border-radius: 10px; /* Rounded corners for the section */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for the section */
            max-width: 1200px; /* Maximum width for the section */
            margin-top: 30px;
            
        
        }
        .doctor-title {
            color: #060606;
            text-align: center;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            font-size: 36px;
            letter-spacing: 0px;
            text-transform: none;
        }

        .doctor-slider {
            display: flex;
            overflow: hidden; /* Hide overflow for slider effect */
            width: 100%; /* Full width */
            margin: auto; /* Center the slider */
            position: relative; /* For positioning arrows */
        }

        .doctor-grid {
            display: flex;
            transition: transform 0.5s ease; /* Smooth transition for sliding */
        }

        .doctor-box {
            background-color: #17449E;
            color: #fff;
            border-radius: 10px;
            width: 250px; /* Width of the box */
            height: 350px; /* Height of the box */
            margin: 10px; /* Margin for spacing */
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
        }

        .doctor-photo {
            width: 200px; /* Increased width for larger photo */
            height: 250px; /* Increased height for larger photo */
            margin-bottom: 10px; /* Space between photo and text */
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
            border: none;
            border-radius: 50%;
            cursor: pointer;
            padding: 10px;
            z-index: 10; /* Ensure arrows are above the slider */
            transition: background-color 0.3s;
        }

        .slider-arrow:hover {
            background-color: rgba(255, 255, 255, 1); /* Fully opaque on hover */
        }

        .left-arrow {
            left: 10px; /* Position left arrow */
        }

        .right-arrow {
            right: 10px; /* Position right arrow */
        }

        .arrow-icon {
            font-size: 24px; /* Size of the arrow icon */
            color: #b0b2b5; /* Color of the arrow */
        }

          .introduction-grid {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 10px;
  }
  .introduction-row {
    display: flex;
    flex-direction: row;
    padding: 10px;
    margin-top: 20px;
    box-shadow: inset 5px 5px  #ddd; /* subtle left border for entire row */
    border-radius: 8px;
    overflow: hidden;
  }
  .introduction-set {
    flex: 1 1 0;
    padding: 30px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    /* shadow line on right except last element */
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    transition: box-shadow 0.3s ease;
  }
  /* Distinct background colors with descending intensity */
  .introduction-set:nth-child(1) {
    background-color: #0d6efd; /* Strong blue */
  }
  .introduction-set:nth-child(2) {
    background-color: #4a8cff; /* lighter blue */
  }
  .introduction-set:nth-child(3) {
    background-color: #7db1ff; /* lighter blue */
  }
  .introduction-set:nth-child(4) {
    background-color: #add5ff; /* lightest blue */
    color: #222; /* darker text for contrast */
    border-right: none;
  }
  /* Remove right border from last item */
  .introduction-set:last-child {
    border-right: none;
  }
  h3 {
    margin: 0 0 10px 0;
    font-weight: 700;
    font-size: 1.4rem;
    color: inherit;
    text-align: center;
  }
  p {
    margin: 0;
    color: inherit;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
  }
  /* Add subtle shadow on hover for interactivity */
  .introduction-set:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    cursor: default;
  }
  @media (max-width: 768px) {
    .introduction-row {
      flex-direction: column;
      box-shadow: none;
      border-radius: 0;
    }
    .introduction-set {
      border-right: none;
      border-bottom: 1px solid #ddd;
      color: #222 !important;
    }
    .introduction-set:last-child {
      border-bottom: none;
    }
  }
        /* Footer Styles */
        footer {
            background-color: #17449E;
            color: #fff;
            padding: 20px;
            clear: both; /* Clear floats */
        }

        footer .footer-column {
            width: 25%;
            float: left;
            padding: 10px;
        }

        footer .footer-column h3 {
            color: #fff;
            font-weight: 600;
            margin-bottom: 10px;
        }

        footer .footer-column a {
            color: #fff;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .navbar ul {
                flex-direction: column; /* Stack navigation items */
            }

            footer .footer-column {
                width: 100%;
            }

            .services-grid {
                flex-direction: column; /* Stack service boxes */
            }

            .department-box {
                width: 100%; /* Full width on smaller screens */
                height: auto; /* Auto height for flexibility */
            }

            .welcome-box {
                padding: 40px; /* Adjust padding for smaller screens */
            }

            .welcome-box h1 {
                font-size: 36px; /* Adjust font size for smaller screens */
            }

            .welcome-box p {
                font-size: 18px; /* Adjust paragraph font size */
            }

            .stats-box {
                flex-direction: column; /* Stack items on smaller screens */
            }

            .stat-item {
                margin-bottom: 20px; /* Space between stacked items */
            }
        }
.about-us-section {
    max-width: 1500px;
    margin: 10px auto;
    padding: 40px; /* Adjust padding as needed */
    display: flex;
    gap: 40px;
    align-items: stretch; /* ensures both sides match height */
    min-height: 400px; /* or use height: 100% if parent has fixed height */
    background-color: White;;
}

.about-us-left {
    display: flex;
    background: rgb(218, 213, 213);
    flex-direction: column;
    justify-content: center; /* Vertically center */
    height: 500px;
    text-align: center;
    flex: 2; /* Allow it to take available space */
    border-radius: 8px;
}

.about-us-left h2 {
    font-size: 5rem; /* Large heading */
    margin-bottom: 0;  /* No margin bottom since no paragraph here */
    color: White; /* Color for the title */
    font-weight: 700;
    line-height: 1.1;
    justify-content: center;
}

.about-us-right {
    flex: 2; /* Allow it to take more space */
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-us-container {
    background-color: #fff; /* White background for the box */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Stack video and description vertically */
    align-items: center; /* Center items horizontally */
    max-width: 690px; /* Match the video width */
    margin: 0 auto; /* Center the box */
}

.about-us-video {
    width: 400px; /* Full width for the video */
    height: 500px; /* Limit height for the video */
    border-radius: 8px; /* Rounded corners for the video */
    margin-bottom: 5px;
    
    
}
.about-us-video iframe {
    width: 400px; /* Full width for the iframe */
    height: 500px; /* Full height for the iframe */
    border: none; /* Remove border */
    border-radius: 8px; /* round cornrers
}

.about-us-description {
    font-size: 1rem; /* Font size for description */
    color: #666; /* Gray color for text */
    line-height: 1.4; /* Line height for readability */
    margin-top: 10px; /* Space above the description */
}


  /* Responsive */
  @media (max-width: 768px) {
    .about-us-section {
      flex-direction: column;
      padding: 15px;
    }
    .about-us-left, .about-us-right {
      flex: none;
      width: 100%;
    }
    .about-us-left h2 {
      font-size: 2.8rem;
    }
    .about-us-description {
      font-size: 0.95rem;
    }
  }
     .section {
      text-align: center;
      padding: 60px 20px 40px;
    }

    h2 {
      color: #2c51a0;
      font-size: 26px;
      margin-bottom: 5px;
    }

    .divider {
      width: 30px;
      height: 2px;
      background-color: #aaa;
      margin: 0 auto 30px;
    }

    .swiper {
      padding: 20px 0;
      overflow: hidden;
      position: relative;
    }

    .swiper-wrapper {
      display: flex;
      transition: transform 0.3s ease;
      will-change: transform;
    }

    .swiper-slide {
      min-width: 240px;
      margin: 0 15px;
      display: flex;
      justify-content: center;
    }

    .certificate-box {
      width: 220px;
      height: 220px;
      background-color: white;
      border-radius: 14px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .certificate-box:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .certificate-box img {
      max-width: 85%;
      max-height: 85%;
      object-fit: contain;
    }

    .swiper-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #a4206d;
      color: rgb(148, 185, 34);
      border: none;
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      font-size: 18px;
    }

    .swiper-button-prev {
      left: 0;
    }

    .swiper-button-next {
      right: 0;
    }

    .testimonial-box {
      background-color: #1a73e8;
      max-width: 600px;
      margin: 40px auto 60px;
      padding: 40px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
      border-radius: 10px;
    }

    .quote {
      font-size: 40px;
      color: #000;
      margin-bottom: 20px;
    }

    .quote-text {
      font-size: 16px;
      color: white;
      line-height: 1.6;
    }

    .author {
      margin-top: 30px;
      font-weight: bold;
    }

    .author small {
      display: block;
      font-weight: normal;
      font-size: 13px;
      color: #666;
    }

    .see-more {
      margin-top: 20px;
    }

    .see-more a {
      display: inline-block;
      text-decoration: none;
      color: rgb(140, 235, 220);
      background-color: #95fadf;
      padding: 10px 24px;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .see-more a:hover {
      background-color: #7be3af;
    }
        .container {
      display: flex;
      justify-content: space-between;
      padding: 60px 100px;
      max-width: 1600px;
      margin: auto;
    }
    .recent-news {
      flex: 1.5;
      margin-right: 50px;
    }
    .recent-news h2 {
      color: #083d98;
      font-size: 24px;
      margin-bottom: 20px;
    }
    .recent-news a {
      font-size: 13px;
      color: #083d98;
      text-decoration: none;
      float: right;
    }
    .main-article {
      background: #f2f2f2;
      margin-bottom: 30px;
    }
    .main-article img {
      width: 100%;
      height: auto;
      display: block;
    }
    .main-article .content {
      padding: 20px;
    }
    .main-article .content h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .main-article .content p {
      font-size: 12px;
      color: #333;
    }
    .sub-articles {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .sub-article {
      display: flex;
      gap: 15px;
    }
    .sub-article img {
      width: 60px;
      height: 60px;
      background: #000;
    }
    .sub-article .info h4 {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 5px;
    }
    .sub-article .info p {
      font-size: 12px;
      color: #555;
    }
    .quick-links {
      flex: 1;
    }
    .quick-links h3 {
      color: #083d98;
      font-size: 18px;
      margin-bottom: 20px;
      border-bottom: 2px solid #ccc;
      padding-bottom: 5px;
    }
    .quick-links a {
      display: block;
      color: #083d98;
      font-size: 14px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      text-decoration: none;
    }
    .quick-links a::after {
      content: ' \2192';
      float: right;
    }
    .footer {
      display: flex;
      background-color: #0a2d78;
      color: white;
      text-align: center;
      padding: 60px 10vw;
      justify-content: space-between;
    }
    .footer .section {
      flex: 1;
      padding: 0 20px;
    }
    .footer img {
      margin-bottom: 15px;
    }
    .footer h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .footer p {
      font-size: 13px;
      line-height: 1.6;
    }
     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }