* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #F0F4FF;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: linear-gradient(to right, #000000, #8b0000, #e60000); color: white; padding: 20px; */
  /*background: linear-gradient(145deg, #FFD700, #0047FF, #FF40D1);*/
  /*background: #90bc1f;*/
  background: #010f30;
  padding: 5px 20px;
}

.top-bar marquee {
  color: rgb(245, 232, 232);
  font-weight: bold;
  font-size: 18px;
}

.top-bar a {
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
}

nav {
    /*background: black;*/
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px; /* Fixed navbar height */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.nav-logo img {
  height: 129px; 
  object-fit: contain;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  align-items: center;
  text-decoration: none;
  color: rgb(15, 14, 14);
  font-weight: bold;
}

/* .nav-links li a:hover {
  background-color: #7e0724;
  color: white;
  border: 1px solid rgb(128, 0, 21);
  padding: 6px 8px; 
} */


/* Close button default hidden */
.close-btn {
  display: none;
}

/* ---------- Mobile Styles ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 270px;

    /* 🌈 Background gradient */
    background: linear-gradient(135deg, #0047FF, #FF40D1);
    
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    overflow-y: auto;

    /* 🧾 Set default text color */
    color: white;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 5px 0;
  }

  .nav-links a {
    color: white !important;
    text-decoration: none;
  }

  .close-btn {
    display: block;
    align-self: flex-start;
    font-size: 24px;
    cursor: pointer;
    color: white; /* Changed from #333 to white */
  }
}

.btn-success {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-success:hover {
  background-color: #28a745;
  transform: scale(1.05);
}
/* Auto open dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.cta-section {
   background: linear-gradient(135deg, #0000ff, #00ffff);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }

  .cta-section .btn-warning {
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 50px;
  }
.testimonial-card {
      background: #facff8;
      border-radius: 10px;
      box-shadow: 0 15px 25px rgba(0,0,0,0.05);
      padding: 25px;
      height: 100%;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }

    .testimonial-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #ff6600;
    }

    .testimonial-name {
      font-weight: bold;
      margin-bottom: 0;
    }

    .testimonial-qualification {
      font-size: 0.85rem;
      color: #888;
    }

    .testimonial-text {
      font-style: italic;
      color: #444;
      font-size: 0.95rem;
    }

    .stars {
      color: #ffc107;
      font-size: 1.1rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #ff6600;
      border-radius: 50%;
      padding: 10px;
    }

    /* @media (max-width: 767.98px) {
      .desktop-slide {
        display: none !important;
      }
    }

    @media (min-width: 768px) {
      .mobile-slide {
        display: none !important;
      }
    } */

    .excellence-section {
     background: linear-gradient(135deg, #0000ff, #00ffff);
      /* border-radius: 15px; */
      padding: 20px 10px;
      color: #fff;
      text-align: center;
      box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
    }
    .excellence-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .excellence-title span {
      color: #FFD700; /* Gold highlight */
    }
    .excellence-item h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .excellence-item p {
      font-size: 1rem;
      font-weight: 500;
      opacity: 0.9;
    }
    .excellence-item {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .excellence-item:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 25px rgba(0,0,0,0.25);
    }
    .newsletter-section {
      background: linear-gradient(135deg, #0000ff, #00ffff);
      border-radius: 15px;
      padding: 40px 10px;
      color: #fff;
      text-align: center;
      box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
    }
    .newsletter-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .newsletter-subtitle {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    .newsletter-form input {
      border-radius: 30px;
      padding: 10px 15px;
      border: none;
      outline: none;
    }
    .newsletter-form button {
      border-radius: 30px;
      padding: 10px 15px;
      border: none;
      font-weight: 600;
      background: #FFD700;
      color: #000;
      transition: all 0.3s ease;
      width: 100%;
    }
    .newsletter-form button:hover {
      background: #f507cd;
      transform: scale(1.05);
    }
    
    .service-card {
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }
  .service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  }
  .service-card i {
    transition: transform 0.4s ease, color 0.4s ease;
  }
  .service-card:hover i {
    transform: rotate(360deg) scale(1.3);
    color: #FFD700; /* gold highlight */
  }