   body {
font-family: "Roboto", sans-serif;
background-color: #f8f9fc;
text-align: center;
}

   
   .carousel-item img {
      width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .carousel-item img {
        max-height: 300px;
      }
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      padding: 15px;
    }

    /* about section start */

      .about-section {
        background: linear-gradient(135deg, #f9fafe, #ffffff);
        padding: 60px 0;
      }

      .about-title {
        font-size: 36px;
        font-weight: 700;
        color: #149eaf;
        margin-bottom: 20px;
      }

      .about-text {
        font-size: 16px;
        color: #333;
        line-height: 1.8;
        margin-bottom: 16px;
      }

      .btn-primary {
        background-color: #149eaf;
        border: none;
        padding: 10px 24px;
        font-weight: 500;
        transition: 0.4s ease;
      }

      .btn-primary:hover {
        background-color: #0c7682;
        transform: translateY(-2px);
      }

      .img-fluid {
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transition: transform 0.5s ease;
      }

      .img-fluid:hover {
        transform: scale(1.02);
      }

      @media (max-width: 768px) {
        .about-title {
          font-size: 28px;
        }
      }

      .custom-btn {
        background: linear-gradient(135deg, #149eaf, #0c7682);
        color: #fff;
        padding: 10px 28px;
        font-weight: 600;
        border-radius: 50px;
        border: none;
        box-shadow: 0 6px 15px rgba(20, 158, 175, 0.3);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .custom-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.15);
        transform: skewX(-20deg);
        transition: all 0.4s ease;
        z-index: 0;
      }

      .custom-btn:hover::before {
        left: 120%;
      }

      .custom-btn:hover {
        background: linear-gradient(135deg, #0c7682, #149eaf);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(20, 158, 175, 0.4);
      }
    /* about section end */

    /* stats start */

      .stats-section {
        background-color: #f0fafd;
        padding: 60px 0;
        text-align: center;
      }

      .stat-box {
        background: #fff;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
      }

      .stat-box:hover {
        transform: translateY(-5px);
      }

      .stat-icon {
        font-size: 40px;
        color: #149eaf;
        margin-bottom: 15px;
      }

      .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: #149eaf;
      }

      .stat-label {
        font-size: 16px;
        color: #333;
        font-weight: 500;
        margin-top: 10px;
      }
    
    /* stats  end */

    /* header start */

        .topbar {
            background-color: #149eaf;
            color: #fff;
            font-size: 14px;
            padding: 6px 0;
        }

        .topbar .info-line {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .topbar a {
            color: #fff;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            padding: 14px 0;
            background-color: #fff;
            font-weight: 500;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            flex-wrap: wrap;
        }

        .nav-links a,
        .nav-links .dropdown-toggle {
            color: #333;
            text-decoration: none;
            padding: 6px 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links .dropdown-toggle:hover {
            color: #ab0404;
        }

        .dropdown-menu {
            border-radius: 8px;
            border: none;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
            margin-top: 10px;
            animation: fadeIn 0.3s ease-in-out;
        }
.dropdown-menu .dropdown-item:hover {
    background-color: #c62828; /* Red hover */
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-logo img {
    max-height: 70px;
}

.tagline {
    font-size: 18px;
    color: #ab0404;
    font-style: italic;
    margin-top: 40px;
    line-height: 2;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .navbar-toggler {
        background-color: #c62828; /* Red toggle */
        border: none;
        padding: 6px 10px;
        color: #fff;
        font-size: 18px;
        border-radius: 4px;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        background-color: #fff;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu.show {
        display: flex;
    }

    .mobile-menu a {
        color: #333;
        font-weight: 500;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .mobile-menu a:hover {
        color: #c62828; /* Red hover */
    }

    .mobile-menu .dropdown-menu {
        position: static !important;
        float: none;
        box-shadow: none;
        width: 100%;
        text-align: left;
        background: none;
    }
}

    /* header end */

    /* subdropdown */
 /* .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }

 */

 .dropdown-submenu .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
}

.dropdown-submenu:hover .sub-menu {
  display: block;
  z-index: 999;
}

    /* subdropdown */

    /* viewmore start */

.red-gradient-btn {
  background: linear-gradient(135deg, #AB042C, #78021F);
  color: #fff;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.red-gradient-btn:hover {
  background: linear-gradient(135deg, #900224, #610016);
  transform: translateY(-2px);
}

    /* viewmore end */


    /* headingdesign */
 .section-title {
      color: #0ea4b0; /* Teal blue */
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .decorator {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
    }

    .dot {
      width: 8px;
      height: 8px;
      background-color: #0ea4b0;
      border-radius: 50%;
    }

    .line {
      width: 40px;
      height: 2px;
      background-color: #0ea4b0;
    }
    /* headingdesign */


    /* all heding in red start*/
  .red-gradient {
    background: linear-gradient(to right, #ff4e50, #f44336);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  .welcome-section p {
    font-size: 16px;
    color: #333;
    margin: 0 auto;
    max-width: 700px;
  }

  @media (max-width: 768px) {
    .welcome-section h2 {
      font-size: 24px;
    }

    .welcome-section p {
      font-size: 14px;
    }
  }

  .gradient-text-with-style {
  font-family: 'Segoe UI', sans-serif;
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff0000, #8b0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  display: inline-block;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    /* all heading in red end */

    /*sub  heading  */

.about-title {
  font-family: 'Segoe UI', sans-serif;
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff0000, #8b0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 1.5px;
  animation: fadeIn 1s ease-in-out;
}

/* Optional smooth animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    /* sub heading  */