html {
      scroll-behavior: smooth;
    }

    body{
      font-family: "Lato", sans-serif;
      color: #0a1f30;
    }

    /* Top Bar */
    .top-bar {
      background-color: #0266b2;
      font-size: 0.9rem;
      padding: 10px 0;
    }

    .top-bar i,
    .top-bar a {
      color: #fff;
      text-decoration: none;
    }

    .top-bar a:hover {
      color: #e2e4e7;
    }

    .social-icons {
      display: flex;
      gap: 8px;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #fff;
      transition: color 0.3s ease;
    }

    .social-icons a i {
      color: #fff;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .social-icons a:hover i {
      color: #e2e4e7;
    }

    .contact-info {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .contact-info .item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Main Nav */
    .main-nav {
      background-color: transparent;
      padding: 15px 0;
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1020;
      transition: all 0.3s ease;
      border-bottom: none;
    }

    .main-nav.shrink {
      background-color: rgba(255, 255, 255, 0.95);
      padding: 8px 0;
      border-bottom: 1px solid #ddd;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .navbar-brand {
      position: relative;
    }

    .navbar-brand img {
      transition: all 0.3s ease;
      display: block;
    }

    .navbar-brand img.large-logo {
      height: 45px;
    }

    .navbar-brand img.small-logo {
      height: 45px;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      opacity: 0;
      pointer-events: none;
    }

    .main-nav.shrink .navbar-brand img.large-logo {
      opacity: 0;
    }

    .main-nav.shrink .navbar-brand img.small-logo {
      opacity: 1;
      pointer-events: auto;
      position: relative;
      /*transform: none;*/
    }

    .btn-enquiry {
      background: #47c4f2;
      color: #fff;
      border-radius: 25px;
      padding: 8px 20px;
      box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
      border: none;
      font-weight: 600;
      transition: all 0.3s ease-in-out;
    }

    .btn-enquiry:hover {
      background: linear-gradient(135deg, #0056b3, #0099cc);
      box-shadow: 0 6px 14px rgba(0, 123, 255, 0.4);
      color: #fff;
    }

    .navbar-nav .nav-link, .navbar-nav .nav-link.active {
      color: #1565a0;
      font-weight: bold;
      /*border-bottom: 2px solid #007bff;*/
    }

     /* Show dropdown on hover */
    @media (min-width: 992px) { /* only apply on desktop */
      .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

    .feature-section {
      /*background: linear-gradient(135deg, #f9fdfe, #e7f9ff);*/
      background-image: linear-gradient(176deg, #e7f9ff 80%, #f9fdfe calc(80% + 2px));
      color: #000; /* switch to dark text for readability */
    }
    .circle {
      width: 90px;
      height: 90px;
      background-color: #4ac4f3; /* Bootstrap primary blue */
      border-radius: 50%;
      border: 3px solid white;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow */
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
      margin: 10px auto;
    }

    .content-box {
      padding: 30px;
    }

    .content-heading {
      color: #000000;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .read-more-btn {
      margin-top: 20px;
      border-radius: 10%;
    }

    .image-left {
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .image-left {
        height: 100%;
        max-height: 350px;
      }
    }

    .card-section {
      background: linear-gradient(135deg, #edf6ff, #edf6ff);
      color: #000; /* switch to dark text for readability */
    }

    .circle-logo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #4ac4f3;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .circle-logo img {
      width: 60%;
      height: 60%;
      object-fit: cover;
    }

    .feature-card {
      padding: 20px;
      border-radius: 8px;
      background-color: #ffffff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s;
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .btn-view-more {
      margin-top: 15px;
      border-radius: 10%;
      background-color: #4ac4f3;
      columns: #fff;
    }

    .testimonial {
      display: flex;
      align-items: center;
      gap: 20px;
      height: 100%;
    }

    .testimonial img {
      width: 150px;
      height: 150px;
    }

    .testimonial .text {
      flex: 1;
    }

    .testimonial .name {
      font-weight: bold;
      margin-bottom: 2px;
    }

    .testimonial .designation {
      font-size: 0.9rem;
      color: #6c757d;
    }

    .carousel-controls {
      text-align: right;
      margin-top: 30px;
    }

    .carousel-controls button {
      background: none;
      border: none;
      font-size: 1.5rem;
      margin: 0 10px;
      cursor: pointer;
    }

    .section-heading {
      font-size: 2rem;
      font-weight: bold;
    }

    .testimonial-carousel {
      overflow: hidden;
    }

    .testimonial-slider {
      display: flex;
      transition: transform 0.5s ease;
    }

    .newsletter-section {
      background-color: #d0f2fe;
      padding: 60px 20px;
    }

    .newsletter-box {
      max-width: 700px;
      margin: 0 auto;
    }

    .newsletter-box button{
      background-color:#47c4f2;
    }

    .newsletter-box button:hover{
      background-color:#339abf;
    }

    .form-control {
      border-radius: 0.375rem 0 0 0.375rem;
    }

    .btn-subscribe {
      border-radius: 0 0.375rem 0.375rem 0;
    }

    .middle-border {
      border-right: 2px dotted #ccc;
    }

    .upper-footer {
      background-color: #f8f9fa;
      padding: 40px 0;
      font-size: 13.5px;
    }

    .upper-footer h6{
      color: #0e202e;
    }

    .upper-footer .contact-icons i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid #47c4f2;
      transition: color 0.3s ease;
      color: #47c4f2;
      text-decoration: none;
    }

    .footer-column {
      padding: 1.5rem;
    }
    .footer-column:not(:last-child) {
      border-right: 1px dotted #ccc;
    }

    .lower-footer {
      background-color: #0266b2;
      color: #ffffff;
      padding: 15px 0;
      font-size: 14px;
    }

    .footer-logo {
      max-width: 120px;
      margin-bottom: 15px;
    }

    .footer-link {
      color: #505050;
      text-decoration: none;
    }

    .footer-link::before {
      content: "\003E "; /* Unicode for > */
      color: #505050;    /* Bootstrap blue */
      margin-right: 4px;
      font-size: 20px;
    }

    .footer-link:hover {
      color: #006dff;
    }

    .social-icon {
      /*font-size: 20px;
      color: #343a40;
      margin-right: 10px;
      transition: color 0.3s ease;
      display: flex;*/
      gap: 8px;
    }

    .social-icon a{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #47c4f2;
      transition: color 0.3s ease;
      color: #47c4f2;
      text-decoration: none;
    }

    .social-icon:hover {
      color: #007bff;
    }


    .custom-header {
      background: #d0f2fe; /* Blue gradient background */
      color: #012138;
      padding: 40px 0;
      text-align: center;
    }
    .breadcrumb-buttons .btn {
      margin: 0 5px;
      pointer-events: none; /* Prevents button click if they are for display */
      background-color: #4bc5ec;
      color: #fff;
    }

    .text-justify {
      text-align: justify;
    }
    .about-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .mission-section{
      background-color: #edf6ff;
    }
    .mission-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .vision-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .vision-list {
      list-style: none;
      padding-left: 0;
    }
    .vision-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .vision-list li ul {
        margin: 0px;
        padding: 0px;
    }
    .vision-list li ul li {
        display: flex;
        align-items: flex-start;
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }
    .vision-icon {
      width: 24px;
      height: 24px;
      margin-right: 12px;
      /*margin-top: 3px;*/
      flex-shrink: 0;
    }
    
    .vision-icon2 {
      width: 18px;
      height: 18px;
      margin-right: 12px;
      margin-top: 4px;
      flex-shrink: 0;
    }
    
    .vision-text h6 {
      margin: 0;
      font-weight: bold;
    }
    .vision-text p {
      margin: 0;
      font-size: 0.95rem;
      color: #555;
    }


    .contact-section {
      padding: 60px 0;
      background-color: #fff;
    }
    .contact-section .contact-info i {
      font-size: 1.2rem;
      margin-right: 10px;
      color: #0d6efd;
    }
    .contact-section .form-control {
      /*margin-bottom: 15px;*/
      border-radius: unset;
    }
    .contact-section .captcha-placeholder {
      background: #e9ecef;
      padding: 10px;
      text-align: center;
      font-size: 14px;
      border-radius: 5px;
      margin-bottom: 15px;
    }

    .contact-section .btn {
      margin: 0 5px;
      background-color: #4bc5ec;
      color: #fff;
      font-size: small;
    }

    .contact-section .contact-icons {
      border: 2px dotted #ccc;
      padding: 10px;
    }

    .contact-section .contact-icons i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10%;
      transition: color 0.3s ease;
      background-color: #47c4f2;
      color: #fff;
      text-decoration: none;
    }



    .corefeatures-section {
      background-color: #edf6ff;
    }