:root {
        --primary: #0056b3;
        --secondary: #ff6b00;
        --accent: #00a896;
        --dark: #1a2a36;
        --light: #f8f9fa;
        --gray: #6c757d;
        --success: #28a745;
        --header-height: 80px;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      .body {
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: var(--light);
        overflow-x: hidden;
        margin: 0;
        padding: 0;
      }
      .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
      }
      img {
        max-width: 100%;
        height: auto;
      }
      header {
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--dark) 100%

        );
        color: white;
        padding: 2rem 0;
        position: fixed;
        width: 100%;
        height: var(--header-height);
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      }
      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
.logo {
  position: fixed;
 right: 0; 
  top: 0; 
  margin: 16px; 
  z-index: 1000; 
}
.logo img {
            height: 50px;
            width: auto;
        }
      

      .logo img:hover {
        transform: scale(1.1);
        
      }
      .logo h1 {
        font-family: "Montserrat", sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        box-sizing: border-box;
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: #171717 0px 0px 20px;
        background: linear-gradient(
          to right,
          var(--primary),
          var(--dark)

        );
      }
      .logo span {
        color: var(--secondary);
      }
      nav ul {
        display: flex;
        list-style: none;
      }
      nav ul li {
        margin-left: 1.5rem;
        position: right;
        display: inline-block;
      }
      nav ul li a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: color 0.3s;
        position: relative;
        padding: 5px 0;
      }
      nav ul li a:hover {
        color: var(--secondary);
      }
      nav ul li a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: width 0.3s;
      }
      nav ul li a:hover::after {
        width: 100%;
      }
      nav ul .dropdown {
        display: none;
        position: absolute;
        left: 0;
        background: #ffffffa6;
        list-style: none;
        padding: 0;
        margin: 0;
      }
      nav ul li:hover .dropdown {
        display: block;
      }
      .menu-toggle {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
      }
      .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.501), rgba(0, 0, 0, 0.7)),
          url(images/6.jpg);
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        padding-top: var(--header-height);
      }
      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        animation: fadeInUp 1s ease-out;
      }
      .hero h2 {
        font-family: "Montserrat", sans-serif;
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }
      .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
      }
      .btn {
        display: inline-block;
        background: var(--secondary);
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
      }
      .btn:hover {
        background: #e05e00;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
      }
      .btn:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.3);
      }
      .about {
        padding: 100px 0;
        background: linear-gradient(to bottom, #023669, #ffffff);
      }
      .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        align-items: center;
      }
      .about-content h2 {
        font-family: "Montserrat", sans-serif;
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
      }
      .about-content h2::after {
        content: "";
      .about-content h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(
          to right,
          #3f3e3e,
          #023669,
          var(--accent)
        );
      }
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        animation: float 6s ease-in-out infinite;
      }
      .about-image img {
        width: 200%;
        height: auto;
        display: block;
      }
      .mission-vision {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }
      .mv-card {
        background: var(--light);
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
      }
      .mv-card:hover {
        transform: translateY(-10px);
      }
      .mv-card h3 {
        font-size: 1.5rem;
        color: var(--primary);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
      }
      .mv-card h3 i {
        margin-right: 10px;
        color: var(--secondary);
      }
      .services {
        padding: 100px 0;
        background-image: linear-gradient(
            rgba(215, 245, 213, 0.9),
            rgba(165, 222, 255, 0.9)
          ),
          url("images/7.jpg");
      }
      .section-title {
        text-align: center;
        margin-bottom: 60px;
      }
      .section-title h2 {
        font-family: "Montserrat", sans-serif;
        font-size: 2.5rem;
        color: var(--dark);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
      }
      .section-title h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--secondary);
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }
      .service-card {
        background: rgba(255, 255, 255, 0.432);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
      }
      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }
      .service-icon {
        height: 200px;
        background-size: cover;
        background-position: center;
        position: relative;
      }
      .service-icon::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to bottom,
          rgba(0, 87, 179, 0.041),
          rgba(0, 168, 151, 0.105)
        );
      }
      .service-content {
        padding: 25px;
        text-align: center;
      }
      .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--dark);
      }
      .stats {
        background: linear-gradient(rgba(17, 71, 93, 0.5), rgba(0, 0, 0, 0.338)),
          url("images/east.webp") no-repeat center center;
        background-size: cover;
        color: white;
        padding: 80px 0;
        text-align: center;
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
      }
      .stat-item {
        padding: 20px;
      }
      .stat-item i {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--secondary);
      }
      .stat-number {
        font-family: "Montserrat", sans-serif;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
      }
      .team {
        padding: 100px 0;
        background-color: rgb(14, 121, 244);
      }
      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        box-sizing: border-box;
        box-shadow:#171717;
      }
      .team-member {
        background: var(--light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow:rgba(0, 0, 0, 10);
        transition: transform 0.3s;
        text-align: center;
        background:linear-gradient(rgb(243, 242, 241),rgb(5, 111, 232));
      }
      .team-member:hover {
        transform: translateY(-10px);
      }
      .member-img {
        height: 250px;
        background-position: center;
        position: cover;
        width: 100%;
      }
      .member-info {
        padding: 20px;
        box-shadow: #171717;
      }
      .member-info h3 {
      .member-info h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        box-sizing: border-box;
      }
        color:white;
        font-style: italic;

      }
      .feedback {
        padding: 100px 0;
        background: linear-gradient(to bottom, #e9ecef, #055aeb);
      }
      .feedback-container {
        max-width: 500px;
        margin: 0 auto;
        background: white;
        border-radius: 15px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 2.0);
        overflow: hidden;
      }
      .feedback-header {
        background: var(--primary);
        color: white;
        padding: 30px;
        text-align: center;
      }
      .feedback-header h2 {
        font-family: "Montserrat", sans-serif;
        font-size: 2rem;
      }
      .feedback-body {
        padding: 30px;
        background: url('images/bg.jpg')
      }
      .form-group {
        margin-bottom: 25px;
      }
      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--dark);
      }
      .form-control {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s;
      }
      .form-control:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.3);
      }
      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }
      .rating {
        display: flex;
        justify-content: center;
        margin: 20px 0;
      }
      .rating input {
        display: none;
      }
      .rating label {
        cursor: pointer;
        font-size: 2rem;
        color: #ccc;
        margin: 0 5px;
        transition: color 0.3s;
      }
      .rating input:checked ~ label {
        color: #ccc;
      }
      .rating label:hover,
      .rating label:hover ~ label,
      .rating input:checked + label,
      .rating input:checked ~ label {
        color: var(--secondary);
      }
      .feedback-footer {
        text-align: center;
        padding: 20px;
        background: #f8f9fa;
        border-top: 1px solid #ddd;
      }
      footer {
        background: var(--dark)5%;
        color: white;
        padding: 60px 0 30px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
      }
      .footer-col h3 {
        font-family: "Montserrat", sans-serif;
        font-size: 1.5rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
      }
      .footer-col h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--secondary);
      }
      .footer-col p {
        margin-bottom: 15px;
      }
      .footer-col ul {
        list-style: none;
      }
      .footer-col ul li {
        margin-bottom: 10px;
      }
      .footer-col ul li a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s;
      }
      .footer-col ul li a:hover {
        color: var(--secondary);
      }
      .contact-info {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
      }
      .contact-info i {
        margin-right: 10px;
        color: var(--secondary);
        width: 20px;
      }
      .social-links {
        display: flex;
        margin-top: 20px;
      }
      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin-right: 10px;
        color: white;
        transition: all 0.3s;
      }
      .social-links a:hover {
        background: var(--secondary);
        transform: translateY(-5px);
      }
      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-15px);
        }
        100% {
          transform: translateY(0px);
        }
      }
      .animated {
        animation: fadeInUp 1s ease-out;
      }
      .float {
        animation: float 4s ease-in-out infinite;
      }
      .center-flex {
        display: flex;
        justify-content: center; /* horizontal */
        align-items: center;     /* vertical */
        height: 100vh;           /* full viewport height */
      }
      @media (max-width: 992px) {
        .hero h2 {
          font-size: 3rem;
        }
      }
      @media (max-width: 768px) {
        .menu-toggle {
          display: block;
        }
        nav {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: var(--dark);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          transition: all 0.4s ease;
        }
        nav.active {
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        nav ul {
          flex-direction: column;
          padding: 20px 0;
        }
        nav ul li {
          margin: 0;
          text-align: center;
        }
        nav ul li a {
          display: block;
          padding: 15px;
        }
        .hero h2 {
          font-size: 2.5rem;
        }
        .hero p {
          font-size: 1.1rem;
        }
        .container {
          width: 100%;
          padding: 0 10px;
        }
      }
      @media (max-width: 576px) {
        .hero h2 {
          font-size: 2rem;
        }
        .section-title h2 {
          font-size: 2rem;
        }
      }
      #loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.8); /* semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loading-logo {
  width: 100px; /* adjust size as needed */
  height: auto;
}


.navbar {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 20px;
  height: 60px;
}

.navbar-logo {
  height: 40px;
  margin-right: 16px;
}

.navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  position: relative;
  margin-right: 20px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #f9f9f9;
  min-width: 120px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background: #eee;
}