/* ✅ Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  overflow-x: hidden;
  background: #f4f4f4;
  min-height: 100vh;
}

/* ✅ Navbar */
.navbar {
  width: 100%;
  background: #0d1b2a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  position: relative;
  transition: 0.3s;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #ffcc00;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ✅ Right icons */
.right-icons a {
  color: #fff;
  font-size: 22px;
  margin-left: 15px;
  transition: 0.3s;
}

.right-icons a:hover {
  color: #ffcc00;
}

/* ✅ Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0c0b0b;
  min-width: 200px;
  border-radius: 6px;
  z-index: 1000;
  flex-direction: column;
}
.dropdown-menu a {
  padding: 10px 15px;
  color: #eee;
  text-decoration: none;
  display: block;
}
.dropdown-menu a:hover {
  background: #201d1d;
}
@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ✅ Mobile Navbar */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #0d1b2a;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    z-index: 10000;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
    font-size: 22px;
    cursor: pointer;
    margin-right: auto;
    order: -1;
  }
  .right-icons {
    margin-left: auto;
  }
}
@media (min-width: 993px) {
  .menu-toggle {
    display: none;
  }
}

/* ✅ Content spacing */
.content {
  margin-top: 80px;
  padding: 40px;
  text-align: center;
}


   /*------------------ ipad responsive------------------- */
   

/*---------------------------------------------------- ✅ Image Section--------------------------------------------------------- */
.image-section {
  width: 100%;
  padding-top: 70px;
  background: #000; 
  text-align: center; 
}
.image-section img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .image-section img {
    max-height: 300px;
  }
}

/* ✅ Center Image Section */
.center-image-section {
  width: 100%;
  text-align: center;
  padding: 40px 15px;
  background: #f5f5f5;
}
.center-image-section img {
  width: 100%;
  max-width: 1000px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.center-image-section h2 {
  font-size: 24px;
  font-style: italic;
  color: #0048ae;
  font-weight: 500;
}
@media (max-width: 768px) {
  .center-image-section h2 {
    font-size: 18px;
  }
}

/* ✅ Image with Text */
.image-text-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 8%;
  background: #f9f9f9;
  flex-wrap: wrap;
}
.image-box img {
  width: 350px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.text-box {
  max-width: 600px;
}
.text-box h2 {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 20px;
}
.text-box p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}
@media (max-width: 900px) {
  .image-text-section {
    flex-direction: column;
    padding: 40px 20px;
  }
  .text-box h2 {
    font-size: 22px;
  }
  .text-box p {
    font-size: 16px;
  }
}

/* ✅ Footer */
.footer-section {
  width: 100%;
  background: #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  font-size: 16px;
  color: #333;
}
.footer-section a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 15px;
  }
}

/* ✅ Tablet adjustments (iPad) */
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar {
    padding: 12px 25px;
    height: 65px;
  }
  .nav-links {
    gap: 25px;
  }
  .nav-links a {
    font-size: 16px;
  }
  .right-icons a {
    font-size: 20px;
  }
  .image-section img {
    max-height: 450px;
  }
  .center-image-section img {
    max-width: 90%;
  }
  .text-box h2 {
    font-size: 24px;
  }
  .text-box p {
    font-size: 16px;
  }
}
