* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

/* Header */
header {
display: flex;
  justify-content: space-between;  /* logo on left, burger on right */
  align-items: center;             /* vertically center both */
  padding: 10px 20px;              /* adjust padding as needed */
  position: relative;
  background-color: #fff;          /* optional: keeps it clean */
  z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 300px;
  height: 100px;
}

nav{
  background-color: #ffffff;
}
nav a {
  text-decoration: none;
  color: #000;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #0077ff;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  margin-top: 18px; ;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {

  /* Hide nav by default (off-screen to right) */
  nav {
    position: fixed;
    top: 0;
    right: -250px;  /* Hidden initially */
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 20px; /* padding to leave space for header */
    transition: right 0.3s ease-in-out;  /* Smooth slide effect */
    z-index: 999;
  }

  /* When menu is active — slide in from right */
  nav.active {
    right: 0;
    background-color: #ffffff;
  }

  nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    margin: 15px 0;
    display: block;
    width: 100%;
  }

  nav a:hover {
    color: #003366;
  }

  /* Hamburger button positioning */
  .hamburger {
    display: flex;
    position: absolute;
    top: 25px;
    right: 30px;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1000;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
  }


}
  /* Optional: animate the hamburger into an “X” */
  .hamburger.toggle span:nth-child(1) {
    transform: rotate(10deg) translateY(8px);
  }

  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

/* 🔹 Responsive design for tablets & mobile */
@media (max-width: 900px) {
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;  /* increase padding for balanced spacing */
}


  .logo img {
    width: auto;
    height: 6rem;
    padding: 0px;
    position: relative;
    margin-left: 0px;
    align-items: left;
left: 10px;
  
  }
}
/* ---------- Info Section ---------- */
.info-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  background: linear-gradient(to right, #ffffff, #ffffff);
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1200px;
  gap: 50px;
}

.info-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 300px;
}


.info-text {
  flex: 1;
  border-radius: 10px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0,
  0, 0.1);  
  text-align: left;
  height: 300px;
  width: auto;
}
.info-image2 img{
  height: 300px;
}

.info-text h2 {
  font-size: 2rem;
  color: #1c1141;
  margin-bottom: 15px;
  background-color: #ffffff;
  opacity: 0.9;
}
.info-text .h6{
  padding-top: 5px;
}
.info-text ul {
  font-size: 0.9rem;
   padding-left: 20px;
  margin-bottom: 15px;
  color: #000000;
}

/* Overlay */
 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 9, 100, 0.911);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
}

/* Hover Effects */
.info-image img:hover {
  transform: scale(1.08);
}

.info-image:hover .overlay {
  opacity: 1;
}

/* Optional: make it pop on hover */
.info-image:hover {
  transform: translateY(-5px);
}
.info-image2 img:hover {
  transform: scale(1.08);
}

.info-image2:hover .overlay {
  opacity: 1;
}

/* Optional: make it pop on hover */
.info-image2:hover {
  transform: translateY(-5px);
}
/* Responsive (for mobile) */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
  }

  .info-image img {
    max-width: 350px;
  }
  

  .info-text h2 {
    font-size: 1.6rem;
  }
}


.info-section2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  background: linear-gradient(to right, #ffffff, #ffffff);
}

.info-container2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1200px;
  gap: 50px;
}

.info-image2 img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
 
}

.info-image2 img:hover {
  transform: scale(1.05);
}

.info-text2 {
  flex: 1;
  border-radius: 10px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0,
  0, 0.1);  
  text-align: left;
  height: 300px;
  width: auto;
}


.info-text2 h2 {
  font-size: 2rem;
  color: #1c1141;
  margin-bottom: 15px;
  background-color: #ffffff;
  opacity: 0.9;
}
.info-text2 ul{
  list-style: disc; 
  padding-left: 20px;
  margin-bottom: 15px;
  color: #000000;
  font-size: 0.9rem;
}
.info-text2 h4{
  font-size: 1.2rem;
  color: #1c1141;
  margin-bottom: 10px;
}

/* Responsive (for mobile) */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
  }

  .info-image img {
    max-width: 350px;
  }

  .info-text h2 {
    font-size: 1.6rem;
  }
}

/* Responsive (for mobile) */
@media (max-width: 768px) {
  .info-container2 {
    flex-direction: column;
    text-align: center;
  }

  .info-image2 img {
    max-width: 350px;
  }

  .info-text2 h2 {
    font-size: 1.6rem;
  }
}

/* ---------- Fade-In Animation ---------- */
/* ---------------- Fade-in Animation (Responsive) ---------------- */

/* Common base state */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Text slides in from left */
.fade-in-left {
  transform: translateX(-50px);
}

/* Image slides in from right */
.fade-in-right {
  transform: translateX(50px);
}

/* Final visible state */
.fade-in.show {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------- Responsive Adjustments ---------------- */

/* On smaller screens, make the slide shorter and animation slower */
@media (max-width: 768px) {
  .fade-in-left {
    transform: translateX(-25px);
  }

  .fade-in-right {
    transform: translateX(25px);
  }

  .fade-in {
    transition: opacity 1.3s ease-out, transform 1.3s ease-out;
  }
}

/* On very small phones */
@media (max-width: 480px) {
  .fade-in-left,
  .fade-in-right {
    transform: translateY(20px); /* Slight upward fade instead of side */
  }

  .fade-in {
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  }
}

 .floating-icons {
  position: fixed;
  bottom: 130px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-icons a,
.floating-icons button {
  width: 50px;
  height: 50px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-icons button.float-share {
  background-color: #0670e1; /* Blue for Share */
}

.floating-icons a:hover,
.floating-icons button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

   footer {
      background-color: #0d1b2a;
      color: #ffffff;
      border-top: 1px solid #ddd;
      padding: 20px 0;
      font-size: 0.95rem;
    }
h5{
      font-weight: 600;
      margin-bottom: 10px;
}
    .footer-text {
      font-size: 0.95rem;
      opacity: 0.8;
      margin-bottom: 0;
    }

