 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
    }

    body {
      background-color: #f7f9fc;
      color: #333;
      line-height: 1.6;
    }

    html {
  scroll-behavior: smooth;
}


 
    /* Top Bar */
.top-bar {
  background: #001a33;
  color: rgb(180, 169, 169);
  display: flex;
  justify-content: space-between;
  padding: 8px 100px;
  font-size: 14px;
  flex-wrap: wrap;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.top-right img {
  width: 18px;
  height: 18px;
}

/* Navbar */
header {
  background: #fff;
  padding: 20px 120px; /* ⬅️ Increased left-right padding */
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
  padding-top: 0;
  margin-top: 8px;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Ensure dropdown works inside responsive hamburger */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    box-shadow: none;
  }
}

.dropdown-content{
  padding: 10px;
}



.nav-logo img {
  height: 40px;
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 20px;
  padding: 10px, 20px;
}

.nav-links a {
  color: #2d1a85;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 4px;
  border-radius: 0; 
}

.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #2d1a85;
  transition: 0.4s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #2d1a85;
}


#menu-toggle {
  display: none;
} 

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2d1a85; /* Change color as needed */
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* When checked, transform to "X" */
#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}


/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    font-size: 13px;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #fff;
    margin-top: 10px;
    padding: 10px 0;
  }

  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 10px 20px;
  }

  .hamburger {
    display: block;
  }
}


    header h2 {
      font-size: 2rem;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: 6px;
      transition: background-color 0.3s ease, font-weight 0.3s ease;
    }

    nav a:hover,
    nav a.active {
      font-weight: 600;
    } 

   /* .hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ec2f00, #fcf9fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 6px rgba(62, 63, 68, 0.4);
  animation: fadeInUp 1s ease-in-out;
} */

.hero p{
  padding-bottom: 1rem;
  color: rgb(218, 214, 221);
  font-weight: 500;
}

.hero button {
  padding: 12px 25px;
  font-size: 16px;
  margin: 10px;
  background: linear-gradient(135deg, #2d1a85, #007bff);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1a0d60, #0056d2);
}

.hero button:hover {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


    .dot {
      width: 12px;
      height: 12px;
      background-color: white;
      border-radius: 50%;
      opacity: 0.5;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .dot.active {
      opacity: 1;
    }


    .two-col {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .two-col div {
      flex: 1;
      min-width: 250px;
    }

    ul {
      list-style: none;
      padding-left: 0;
    }

    ul li {
      margin: 10px 0;
      font-size: 16px;
    }


    @media (max-width: 768px) {
      nav {
        justify-content: center;
      }

      .hero h1 {
        font-size: 1.8rem;
        border-bottom: 1px solid gray;
      }
      .top-bar{
        display: none;
      }
      header{
        padding: 25px 25px;
      }
    }

.hero {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.hero video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Shadow layer */
  z-index: 1;
}

.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 20px;
  width: 90%;
  max-width: 700px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: rgb(243, 220, 220);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .hero {
    height: 400px;
  }

  .hero video {
    height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero button {
    font-size: 14px;
    padding: 10px 20px;
  }
  .admin-login-btn{
    width: 50%;
    text-align: center;
  }
  
}


.admin-login-btn {
    text-decoration: none;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 0;
    background-color: rgb(39, 110, 216);
    color: #fff;
}

.admin-login-btn a{
  color: #fff;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 240px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}

.card h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 5px;
}

.card p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.card .icon {
  font-size: 30px;
  margin: 15px 0;
}

.card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #111;
}

.card .stars {
  color: orange;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: #444;
  border-top: 1px solid #eee;
}

.card button {
  margin-top: 10px;
  padding: 10px 20px;
  background: white;
  border-radius: 20px;
  border: 2px solid currentColor;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card button:hover {
  background: rgba(0,0,0,0.05);
}

/* Card Colors */
.card.blue { border-color: #2196f3; }
.card.green { border-color: #8bc34a; }
.card.red { background: #f44336; color: white; }
.card.red ul li { color: white; border-top: 1px solid rgba(255,255,255,0.2); }
.card.red button { color: #f44336; background: white; }

.card.yellow { border-color: #fbc02d; }

.featured {
  transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
