*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:Arial,sans-serif;color:#0a2540;line-height:1.6;}


.logo{
  background-color: white;
  border-radius: 22px;
  width: max-content;
}

/* Navbar */
/* Navbar Base */
.navbar {
  background: #002a4a;
  padding: 12px 30px;
  border-radius: 40px;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

/* Logo */
.navbar .logo img {
  height: 30px;
  display: block;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links li a.active {
  background: #ff9800;
  color: #000;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.nav-links li a:hover {
  background: #ff9800;
  color: #000;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto; /* force right side */
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  nav {
    position: relative;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 27px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;   /* right-end se hi khulega */
    background: #002a4a;
    border-radius: 15px;
    padding: 15px 20px;
    width: auto;   /* sirf content jitna width */
    min-width: 180px; /* thoda readable banane ke liye */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: right; /* text bhi right align */
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  /* Cross effect */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* Contact Section */
.form-heading {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 30px;
}
.contact-container {
  max-width: fit-content;
  height: 1000px;
  margin: auto;
  display: flex;
  background-color: #F0F0F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 7rem;

}

.contact-info {
  width: 35%;
  padding: 30px;
  border-radius: 12px 0 0 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  
  /* Gradient Background */
  background: radial-gradient(
    circle at bottom right,
    #FFD4C4 0%, 
    #00284C 35%
  );

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



.contact-info h3 { font-size: 20px; }
.contact-info p { margin: 15px 0 25px; font-size: 14px; }
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info ul li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contact-info ul li i { margin-top: 3px; }

.contact-form {
  width: 65%;
  
}
.form-row { display: flex; gap: 20px; }
.form-group { flex: 1; display: flex; flex-direction: column; margin-bottom: 15px; }
label { margin-bottom: 5px; font-size: 14px; }
input, textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
button {
  margin-top: 0px;
  background-color: #f9a825;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  float: right;
  transition: 0.3s;
}
button:hover { background-color: #d38d00; }

/* Footer */
/* Footer Container */
footer {
  background-color: #032b4d;
  color: white;
  padding: 50px 80px 20px;
  font-family: Arial, sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-left img {
  max-width: 110px;
}

.footer-left h4 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  margin: 15px 0;
  max-width: 350px;
}

.subscribe-box input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.subscribe-box button {
  background: #f7a600;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 0 30px 30px 0;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #e69500;
}

.footer-left small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #ccc;
}

/* Right Section */
.footer-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

/* Bottom Section */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid #123a5a;
  padding: 15px 0;
  margin-top: 20px;
  color: #ccc;
  font-size: 13px;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  margin: 0 8px;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f7a600;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 20px;
  }

  .subscribe-box {
    margin: 0 auto 15px;
  }

  .footer-right {
    justify-items: center;
  }
}
