* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}



/*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 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: 20px;
  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 main */
.main {
  background: linear-gradient(135deg, rgba(53, 41, 130, 0.8), rgba(32, 9, 150, 0.8)),
              url("./image/main1.jpg") no-repeat center center/cover;
  height: 80Vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;

}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;

}

.main-content {
  text-align: center;
  color: #fff; 
  position: relative;
  z-index: 2; 

}

.main-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-content h4 {
  font-size: 16px;
  font-weight: 400;
  color: #ddd; 
}

.main-content h4 a {
  color: #ffcc00; 
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-content h4 a:hover {
  color: #fff; 
}

.main-content h4 span {
  color: #aaa; 
}

/* section faq alt */

.faq-alt {
  background: linear-gradient(135deg, #0a0f25, #1c2541);
  color: #fff;
  padding: 100px 10%;
  font-family: 'Poppins', sans-serif;
}

.faq-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}


.faq-left {
  flex: 1 1 40%;
  text-align: left;
}

.faq-left h2 {
  font-size: 42px;
  color: #00b4d8;
  margin-bottom: 20px;
}

.faq-left p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.6;
}

.ask-btn {
  background: #ffd60a;
  color: #000;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.ask-btn:hover {
  background: #00b4d8;
  color: #fff;
}

.faq-left img {
  margin-top: 45px;
  margin-left: 55px;
  width: 250px;
  border-radius: 10px;
}


.faq-right {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: 0.3s;
}

.faq-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

.faq-card i {
  font-size: 26px;
  color: #ffd60a;
  margin-top: 3px;
}

.faq-card h3 {
  font-size: 18px;
  color: #00b4d8;
  margin-bottom: 6px;
}

.faq-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}


@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
  }
  .faq-right {
    grid-template-columns: 1fr;
  }
  .faq-left {
    text-align: center;
  }
  .faq-left img {
    margin: 30px auto 0;
  }
}


/* section ask question */

.ask-question {
  background: url("./image/aboutbg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #0a0f25;
  padding: 100px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.ask-question h2 {
  font-size: 42px;
  color: #0077b6;
  margin-bottom: 15px;
}

.ask-question p {
  font-size: 17px;
  color: #ffcc00;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}


.question-form {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.question-form input,
.question-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  background: #f8f9fa;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}

.question-form input:focus,
.question-form textarea:focus {
  border-color: #0077b6;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 119, 182, 0.4);
}

textarea {
  resize: none;
}


.submit-btn {
  background: #ffd60a;
  color: #0a0f25;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #00b4d8;
  color: #fff;
}


@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }
  .question-form {
    padding: 25px;
  }
}



/* 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;
}

  
}


