/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0077ff;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  padding: 5px 10px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: #0077ff;
  color: #fff;
  border-radius: 5px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background: #f0f4ff; */
  background-image: url(../image/image2.webp);
  text-align: center;
}

.hero h1 {
  color: white;
  position: relative;
  left: 300px;

}

.hero p {
  color: white;
  position: relative;
  left: 300px;
  top: 30px;
}



#combo {
  background-color: #e6e6fa;
  height: 60vh;
  margin-top: 40px;
}

.der h1 {
  position: relative;
  top: 40px;
  left: 150px;
  font-size: 40px;

}

.rat ol {
  color: black;
  font-size: 25px;
  margin-top: 40px;
}

* Classification Section */ .classification {
  background-color: #e6e6fa;
}

.classification {
  padding: 60px 20px;
  text-align: center;
  background-color: #e6e6fa;
}

.classification h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: #0077ff;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

.rahu {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
  /* Center text for smaller screens */
}

.rahu h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.rahu p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.rahu .uvi {
  width: 100%;
  /* Make image responsive */
  max-width: 600px;
  /* Don’t let it grow too big */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Desktop / tablet (side-by-side layout) */
@media (min-width: 768px) {
  .rahu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    /* Align text left on bigger screens */
    gap: 30px;
  }

  .rahu h1 {
    font-size: 2.5rem;
  }

  .rahu p {
    font-size: 1.2rem;
  }

  .rahu .uvi {
    flex: 1;
    max-width: 500px;
  }
}

.icon-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin-top: 90px;
  margin-left: 90px;
}

.icon-box {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box i {
  font-size: 40px;
  color: #0077ff;
  margin-bottom: 15px;
}

.icon-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.icon-box p {
  color: #555;
  font-size: 0.95rem;
}

footer {
  background: #0072ff;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-box {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-box p,
.footer-box li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ffd700;
}

.footer-box form input[type="email"] {
  padding: 8px;
  width: 70%;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.footer-box form button {
  padding: 8px 12px;
  border: none;
  border-radius: 0 5px 5px 0;
  background: #ffd700;
  color: #0072ff;
  cursor: pointer;
  transition: 0.3s;
}

.footer-box form button:hover {
  background: #ffc107;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}

/* Responsive */
@media(max-width:768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-box {
    text-align: center;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  /* distance from bottom */
  right: 20px;
  /* distance from right */
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

.content {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

/* Fixed Ad Box */
.side-ad {
  position: fixed;
  top: 100px;
  left: 20px;
  /* Right side */
  width: 180px;
  background: #fff;
  border: 2px solid #0077ff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: floatAd 3s infinite alternate;
  z-index: 999;
}

.side-ad img {
  max-width: 100%;
  border-radius: 8px;
}

.side-ad p {
  font-size: 14px;
  margin-top: 8px;
  color: #333;
}

.side-ad a {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  background: #0077ff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

.side-ad a:hover {
  background: #005bcc;
}

/* Animation for floating */
@keyframes floatAd {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(20px);
  }
}

/* Responsive: Hide Ad on Mobile */
@media (max-width: 768px) {
  .side-ad {
    display: none;
  }
}