*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Section Header */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  
}


.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #f1c40f;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #f1c40f;
}

.nav-links li a:hover::after {
  width: 100%;
}


.loginbtn {
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  background: #f1c40f;
  color: #2c3e50;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;

}

.loginbtn:hover {
  background: #fff;
  color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);

}


.menu-icon {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;

}



@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    flex-direction: column;
    width: 240px;
    padding: 25px 20px;
    border-radius: 0 0 12px 12px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .menu-icon {
    display: block;
  }
}


/* section main */

.contact-hero {
  background: url('./image/background.jpg') center/cover no-repeat;
  position: relative;
  padding: 120px 0;
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow: hidden;
}


.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6); 
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f1f5f9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: #1e3a8a;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #1e3a8a;
}

.hero-image img {
  width: 420px;
  border-radius: 20px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


@media (max-width: 992px) {
  .contact-container {
    flex-direction: column-reverse;
    text-align: center;
    width: 90%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-image img {
    width: 350px;
  }

  .hero-buttons {
    justify-content: center;
  }
}


.contact-page2 {
  font-family: "Poppins", sans-serif;
  background: #f9fafc;
  color: #1e3a8a;
  padding: 60px 0;
}

/* section contact */

.contact {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
  padding: 80px 0;
  color: #1e3a8a;
}

.contact-intro {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-intro h2 {
  font-size: 36px;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.contact-intro p {
  color: #555;
  font-size: 16px;
  margin-bottom: 50px;
  line-height: 1.6;
}


.introgrid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}


.introbox {
  background: #fff;
  width: 280px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.introbox img {
  width: 60px;
  margin-bottom: 15px;
}

.introbox h3 {
  font-size: 18px;
  color: #1e40af;
  margin-bottom: 10px;
}

.introbox p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}


.introbox:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.2);
  background: linear-gradient(135deg, rgb(145, 238, 244), rgb(130, 245, 130));
}


@media (max-width: 992px) {
  .introgrid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .introgrid {
    flex-direction: column;
    align-items: center;
  }
}

/* section faq */

/* section faq */


.faq {
  background: url("./image/aboutbg.jpg") no-repeat center center fixed;
  background-size: cover;
  padding: 150px 20px;
  font-family: "Poppins", sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.faq h2 {
  font-size: 34px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 16px;
  color: white;
  margin-bottom: 40px;
}


.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: left;
}


.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  text-align: left;
  transition: back 0.3s;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-question.active {
  background: #2575fc;
  color: #fff;
}

.faq-question.active::after {
  content: "-";
  transform: rotate(180deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #f9f9f9;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.faq-question.active + .faq-answer {
  max-height: 200px;
  padding: 0 20px 15px 20px;
}


/* section map */

.map{
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.location{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 3px;
  flex-direction: column;
}

iframe{
  width: 90%;
}

.map iframe{
  border-radius: 10px;
}


/* section footer */

.footer {
  background: linear-gradient(135deg, rgba(2, 25, 79, 0.8), rgba(0, 8, 19, 0.8)),
              url("./image/footer.jpg") no-repeat center center/cover;
  color: white;
  padding: 60px 20px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.footcontainer {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}


.footting img {
  width: 160px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footting p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
}

.social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social a:hover {
  background: rgb(5, 241, 162);
  color: #1e293b;
  transform: scale(1.1);
}


.footlink h4,
.footercol h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
  position: relative;
}


.footlink h4::after,
.footercol h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: rgb(5, 241, 162);
  margin-top: 6px;
  border-radius: 2px;
}


.footlink ul,
.footercol ul {
  list-style: none; 
  padding: 0;
  margin: 0;
}


.footlink ul li,
.footercol ul li {
  margin-bottom: 10px;
}


.footlink ul li a,
.footercol ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block; 
}


.footlink ul li a:hover,
.footercol ul li a:hover {
  color: rgb(5, 241, 162);
  /* text-decoration: underline; */
}

.footercol p {
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
}

.footercol p i {
  margin-right: 8px;
  color: rgb(5, 241, 162);
}


.applinks {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.applinks img {
  height: 38px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.applinks img:hover {
  transform: scale(1.08);
}

.footerbottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 16px;
  color: white;
  position: relative;
  left: 390px;
}

.footerbottom span {
  color: rgb(5, 241, 162);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .footerbottom {
    left: 200px; 
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .footerbottom {
    left: 0; 
    font-size: 14px;
    text-align: center;
  }
}


@media (max-width: 992px) {
  .footcontainer {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  
}

@media (max-width: 600px) {
  .footcontainer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social a {
    margin: 5px;
  }
  .applinks {
    justify-content: center;
  }

  .footlink h4::after,
  .footercol h4::after {
 display: none;
}

  
}
