/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Navbar */

.logo img {
 width: 200px;
 height: auto;
 display: block;
}
.navbar {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 display: flex;
 align-items: center;
 justify-content: space-between;/* --- MOBILE NAVBAR --- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255,255,255,0.92);
    min-height: 56px;
  }
  .logo img {
    width: 120px;
  }
  .nav-links {
    /* Hide links by default on mobile */
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 52px;
    width: 100%;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 1200;
  }
  .nav-links.show {
    display: flex;
  }
  .navbar .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #011d3b;
    cursor: pointer;
    z-index: 1300;
    margin-left: auto;
  }
}

/* --- DESKTOP NAVBAR --- */
@media (min-width: 769px) {
  .navbar .menu-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
  }
  .logo img {
    width: 200px;
  }
}

 padding-top: -0.cap;
 padding-bottom: -20px;
 padding: 0 40px; 
 min-height: 10px; /* reduced height */
 box-sizing: border-box;
 background: rgba(255,255,255,0.8);
 transition: background 0.3s, backdrop-filter 0.3s; /* optional: ensures background covers content below */
}

.nav-links {
 display: flex;
 gap: 32px; /* space between links */
 list-style: none;
 margin-left: 890px;
 align-items: right;
 margin: 0;
 padding: 0;
}

.nav-links li {
 display: flex;
 align-items: center;
}

.nav-links li a {
 color: #011d3b;
 text-decoration: none;
 font-size: 1.1rem;
 font-weight: 500;
 padding: 8px 12px;
 transition: color 0.2s;
}

.nav-links li a:hover {
 color: #007bff; /* highlight color on hover */
}


/*hero*/

.hero {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #0d6efd, #63b3ed);
  color: #fff;
  padding: 120px 10% 80px;
  overflow: hidden;
}

.hero .content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.contact-hero p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

 .wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
.wave-bottom {
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="1" d="M0,224L48,229.3C96,235,192,245,288,213.3C384,181,480,107,576,74.7C672,43,768,53,864,85.3C960,117,1056,171,1152,165.3C1248,160,1344,96,1392,64L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}
.wave-top {
  top: 0;
  transform: rotate(180deg);
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="1" d="M0,224L48,229.3C96,235,192,245,288,213.3C384,181,480,107,576,74.7C672,43,768,53,864,85.3C960,117,1056,171,1152,165.3C1248,160,1344,96,1392,64L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

/* INFO SECTION */
.info-section {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin: -80px auto 40px;
  padding: 0 40px;
  max-width: 1100px;
}

.info-card {
  background: white;
  width: 300px;
  margin-top: 100px;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.info-card img {
  width: 30px;
  margin-bottom: 10px;
}

.info-card h3 {
  margin-bottom: 5px;
  color: #0d47d6;
}

/* FORM AREA */
.form-area {
  text-align: center;
  padding: 40px;
}

.form-area h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.contact-form {
  max-width: 650px;
  background: white;
  margin: 0 auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border: 1px solid #cdd6f3;
  border-radius: 10px;
  font-size: 15px;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  background: #0d47d6;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.25s;
}

.contact-form button:hover {
  background: #062b94;
}

/* --- Contact Section --- */
.contact {
  position: relative;
  background: #f3f7ff;
  padding: 100px 5% 120px;
  text-align: center;
}

.contact h2 {
  color: #0d6efd;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
}

.contact p {
  margin-bottom: 40px;
  color: #333;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #cfd9e8;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #004d99;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 77, 153, 0.3);
}

.contact button {
  background: linear-gradient(90deg, #0d6efd, #0052cc);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.contact button:hover {
  transform: scale(1.05);
}

/* *contact*/ 
.site-footer {
  background: #000914;
  color: #fff;
  padding: 50px 20px 0 20px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 24px;
  gap: 40px;
}
.footer-brand {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
}
.footer-logo {
  width: 130px;
  height: logo;
  margin-bottom: 10px;
}
.footer-brand h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.footer-info, .footer-social {
  flex: 1;
  min-width: 180px;
}
.footer-info h4, .footer-social h4 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
}
.footer-info p {
  margin: 0 0 14px 0;
  color: #d9eaff;
}
.footer-social .social-links {
  margin-top: 8px;
  display: flex;
  gap: 18px;
}
.footer-social img {
  width: 36px;
  height: 36px;
  opacity: 0.90;
  transition: opacity 0.2s;
  filter: grayscale(20%) brightness(120%);
}
.footer-social img:hover {
  opacity: 1;
  filter: drop-shadow(0 1px 4px #003a8c);
}
.footer-bottom {
  border-top: 1px solid #2476db;
  padding: 18px 0;
  text-align: center;
  color: #d9eaff;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.attribution {
  font-size: 0.85rem;
  color: #b8d3fa;
}
.attribution a {
  color: #b8d3fa;
  text-decoration: underline;
}
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
  }
  .footer-brand, .footer-info, .footer-social {
    max-width: none;
  }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.menu-toggle {
  display: none;
}

/* Added responsive CSS for mobile devices */
/* Desktop Navbar */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.menu-toggle {
  display: none;
}

/* Hamburger Navbar for Mobile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.96);
  }
  .logo img {
    width: 110px;
    height: auto;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #011d3b;
    cursor: pointer;
    
    margin-left: auto;
    z-index: 2000;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 54px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    flex-direction: column;
    gap: 0;
    z-index: 1500;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    font-size: 1.15rem;
    padding: 16px;
    text-align: center;
    color: #011d3b;
    border-bottom: 1px solid #eee;
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
}

/* Smooth transitions */
.nav-links,
.menu-toggle {
  transition: all 0.3s;
}
@media (max-width: 600px) {
  .wave-bottom {
    height: 30px;         /* Make the wave much shallower */
    min-height: 0;
    bottom: 0;            /* Align it with the bottom edge */
    z-index: 1;
  }
  .site-footer, .footer-container {
    position: relative;
    z-index: 2;           /* Make sure footer content appears above the wave */
  }
}

@media (max-width: 600px) {
  .info-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 7px;
    margin: -34px auto 16px;
    max-width: 100vw;
  }
.info-card {
    width: 96vw;
    min-width: 0;
    max-width: 420px;
    margin-top: 24px;
    padding: 14px 10px;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
  }

  .info-card img {
    width: 26px;
    margin-bottom: 7px;
  }}





