* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}
body {
  background: url("WebImages/AI2.jpg") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif;
}

/* Add a semi-transparent overlay for readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* Adjust opacity (0.6–0.9) */
  backdrop-filter: blur(2px);
  z-index: -1;
}

/* Keep your content on top */
.about-section, header, footer {
  position: relative;
  z-index: 1;
}

/* 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;
}

.aboutus-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 0px;
  padding-bottom: 5px;
}

.about-section {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers vertically */
  align-items: center;     /* centers horizontally */
  text-align: center;
  min-height: 20vh; /* ensures vertical centering space */
  padding: 5px;
  opacity: 0.9;
  transform: (translate(Y(20px)));
  transition: all 0.6s ease;
  
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2b1d49;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  color: #000000;
}

.about-section2 {
  display: flex;
  justify-content: space-between; /* pushes left & right */
  align-items: stretch;
  gap: 40px; /* space between cards */
  padding: 60px 10%;
  text-align: left;
}

.about-section2 .card1,
.about-section2 .card2 {
  flex: 1;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-section2 h2 {
  color: #2b1d49;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about-section2 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

/* Mobile-friendly stacking */
@media (max-width: 768px) {
  .about-section2 {
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
  }

  .about-section2 .card1,
  .about-section2 .card2 {
    width: 100%;
    text-align: center;
  }
}

.india-advantage {
  padding: 30px 10%;
  text-align: center;
}

.india-advantage h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2b1d49;
  margin-bottom: 40px;
}

.advantage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.adv-card {
  background:#03042d;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.adv-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.adv-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
}

/*Mobile Optimisation */
@media (max-width: 768px) {
  .india-advantage {
    padding: 40px 5%;
  }

  .adv-card {
    text-align: center;
  }
}

@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: 5px;
    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;
  
  }
}

 .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;
    }




