  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

   body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  padding-top: 120px;         /* Adjust this based on your navbar height */
}

   /* Navbar Styling */
.navbar {
  position: fixed;            /* Fix the navbar to the top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;              /* Make sure it stays above everything */
  background-color: #ffffff;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 100px;
}

/* Navigation Links */
.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* Home Icon */
.home-icon {
  font-size: 20px;
  color: #333;
}

/* Social Links */
.social-links a {
  margin-left: 1rem;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  min-width: 200px;
  top: 100%;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #fff;
  }

  /* Dropdown Arrow Styling */
.dropdown-arrow {
  margin-left: 4px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Sticky Effect + Scroll Hide/Show Animation */
.navbar {
  transition: top 0.3s ease-in-out;
}

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f7f9fc;
}
.hero {
  background: linear-gradient(to right, #003973, #e5e5be);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2em;
  opacity: 0.9;
}
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #003973;
  text-align: center;
}
p, li, summary {
  font-size: 1.05em;
  color: #333;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  margin-top: 20px;
}
.grid div, .grid li {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.grid div:hover, .grid li:hover {
  transform: translateY(-5px);
}
ol {
  padding-left: 20px;
}
ul {
  list-style: disc inside;
}
.details summary {
  font-weight: bold;
  cursor: pointer;
}
details {
  margin-bottom: 15px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #003973;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}
.btn:hover {
  background: #021e42;
}
.footer {
  text-align: center;
  padding: 30px;
  background: #003973;
  color: white;
  font-size: 0.9em;
}

/* Footer Section */
.site-footer {
  background-color: #002244;
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px 60px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-branding h3 {
  font-size: 1.4rem;
  color: #0056b3;
  margin-bottom: 5px;
}

.footer-branding .bold-blue {
  font-weight: bold;
  color: #0056b3;
}

.footer-branding .quote-text {
  font-size: 1rem;
  color: #ffffff;
}

.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-line {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbbbbb;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Footer Office Column Styling */
.footer-column.office-india {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-column.office-india h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: whitesmoke;
}

.footer-column.office-india p {
  margin: 4px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #bbbbbb;
  text-decoration: none;
  font-size: 1.3rem;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin: 0 10px;
}

.footer .credits {
  font-size: 0.85em;
  color: #aaa;
  margin-top: 5px;
  text-align: center;
}
.footer .credits strong:hover {
  color: #00aaff;
  cursor: pointer;
}

.footer-bottom a:hover {
  color: white;
}

html, body {
  scroll-behavior: auto; /* Let Lenis handle it */
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}