/* ================= DESKTOP HEADER ================= */
.desktop-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(0 0 0);;
  z-index: 9999;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
}

.devloper-logo {
  height: 60px;
}

.desktop-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.desktop-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.phone-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

/* ================= MOBILE HEADER ================= */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 9999;
  padding: 10px 20px;
}

.mobile-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo img {
  height: 45px;
}

/* ================= SLIDE MENU ================= */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #000;
  z-index: 10000;
  transition: 0.4s;
  padding: 30px;
}

.nav-menu.open {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.nav-menu ul li {
  margin-bottom: 15px;
}

.nav-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .desktop-header { display: none; }
  .mobile-header { display: block; }
}

/* HEADER SPACE FIX */
@media (min-width: 992px) {
  #banner { padding-top: 90px; }
}

@media (max-width: 991px) {
  /*#banner { padding-top: 70px; }*/
}


    
    /* Section */
.loc-adv-section {
    padding: 40px 0;
    background: #f8f9fb;
}

/* Container */
.loc-adv-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 0 15px;
}

/* Map Box */
.loc-adv-map {
    width: 55%;
    overflow: hidden;
    border-radius: 14px;
}

.loc-adv-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Box */
.loc-adv-content {
    width: 45%;
    background: #0f2a44;
    padding: 35px;
    border-radius: 14px;
    color: #fff;
}

/* Heading */
.loc-adv-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.loc-adv-content h2 span {
    color: #ff8c00;
}

/* List */
.loc-adv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loc-adv-list li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #e0e7ef;
}

.loc-icon {
    font-size: 18px;
    color: #ff8c00;
    margin-top: 3px;
}

/* Responsive */
@media (max-width: 991px) {
    .loc-adv-container {
        flex-direction: column;
    }

    .loc-adv-map,
    .loc-adv-content {
        width: 100%;
    }

    .loc-adv-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .loc-adv-content h2 {
        font-size: 26px;
    }

    .loc-adv-list li {
        font-size: 14px;
    }
}


 .faq-section {
  padding: 40px 20px;
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
  font-family: "Segoe UI", Arial, sans-serif;
}

/* HEADING */
.price-head h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0c60c9;
  margin-bottom: 50px;
}

.price-head h1 span {
  color: #ff5100;
}

/* FAQ WRAPPER */
.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

/* FAQ CARD */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  border-left: 5px solid #0c60c9;
  box-shadow: 0 10px 30px rgba(12, 96, 201, 0.08);
  transition: all 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(12, 96, 201, 0.15);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0c60c9;
  transition: 0.3s ease;
}

.faq-question:hover {
  color: #ff5100;
}

/* ICON */
.faq-icon {
  font-size: 26px;
  font-weight: 400;
  color: #ff5100;
  transition: transform 0.35s ease, color 0.35s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  padding: 0 26px;
  background: #f9fbff;
}

.faq-answer p {
  padding: 0 0 22px;
  margin: 0;
  color: #444;
  line-height: 1.7;
  font-size: 15px;
}

/* ACTIVE STATE */
.faq-item.active {
  border-left-color: #ff5100;
}

.faq-item.active .faq-question {
  color: #ff5100;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #0c60c9;
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .price-head h1 {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}
