
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  font-family: Arial, Helvetica, sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

 .site-header {
  width: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.site-header .container{
   max-width: 1400px;
}
.header_wrap{
  height: 90px;
  width: auto;
  display: block;
}

.navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 90px;
    }

    .navbar-nav .nav-link {
      font-weight: 600;
      color: #000;
      margin-left: 20px;
    }

    .navbar-nav .nav-link:hover {
      color: #c9a24d;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      color: #000;
      margin-left: 20px;
      font-size: 21px;
    }
   
  .header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  height: 80px;   
  width: auto;
}

.logo-text h1 {
  font-size: 25px;
  font-weight: 700;
  color: #6b6a2c; 
  line-height: 1.1;
  margin: 0;
}

.logo-text h2 {
  font-size: 21px;
  font-weight: 600;
  color: #9a8f2d;
  margin: 2px 0;
}

.logo-text p {
  font-size: 11px;
  letter-spacing: 2px;
  color: #9a8f2d;
  margin: 0;
}

.login-btn {
  padding: 8px 18px;
  background: #0d83fd;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background: #0b6bd3;
} 

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.navbar .container {
  display: flex;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#mainNavbar {
  margin-left: auto;
}

.login-btn {
  margin-left: 25px;
}

/* Custom toggle icon */
/* .navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 6px 10px;
}


.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #000;
  display: block;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}


.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
} */


/* -----HEADER FINISH------ */
.hero-img{
  width: 100%;
  height: auto;
}


  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #ddd;
    }

  .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Hero content----- */
.hero-content {
  padding: 40px 20px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 35px;
  margin-top: 20px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #cba35b;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #083fae;
  transform: translateX(4px);
}

.hero-button .arrow {
  font-size: 18px;
}

/* ---faq--- */
.faq-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.faq-container {
  /* max-width: 900px; */
  max-width: 1300px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1a1a1a;
}

.faq-question .icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
/* ===funfact section---- */


/* .funfact-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.funfact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.funfact-item {
  background: #ffffff;
  padding: 30px 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.funfact-item:hover {
  transform: translateY(-8px);
}

.funfact-number {
  font-size: 36px;
  font-weight: 700;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.funfact-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  text-transform: uppercase;
} */


                    /* ---ABOUT US SECTION----- */

    /* BANNER*/
    .about-banner {
      height: 360px;
      background: url("assets/about-banner.jpg") center/cover no-repeat;
      position: relative;
    }

    .about-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }

    .about-banner-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-align: center;
    }

    .about-banner-content h1 {
      font-size: 46px;
      font-weight: 700;
    }

    .about-banner-content p {
      margin-top: 10px;
      font-size: 16px;
    }

    /* COMMON */
    .about-us .container {
      max-width: 1200px;
      margin: auto;
      padding: 70px 20px;
    }

    h2 {
      font-size: 34px;
      margin-bottom: 15px;
    }

     .about-us .container p {
      color: #555;
      margin-bottom: 15px;
    }

    /* ABOUT INTRO*/
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-img img {
      width: 100%;
      border-radius: 14px;
    }

    .about-content ul {
      margin-top: 20px;
      list-style: none;
    }

    .about-content ul li {
      margin-bottom: 10px;
      font-weight: 500;
    }

       /* VISION MISSION */
  
    .vision-mission {
      background: #f7f7f7;
    }

    .vm-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .vm-box {
      background: #fff;
      padding: 40px;
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .vm-box h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

       /* CTA */

    .cta {
      background: linear-gradient(135deg, #f8b919, #f1a800);
      padding: 80px 20px;
      text-align: center;
    }

    .cta h2 {
      margin-bottom: 20px;
    }

    .cta a {
      background: #000;
      color: #fff;
      padding: 14px 32px;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
    }

       /* RESPONSIVE */

    @media(max-width: 900px) {

      .about-grid,
      .vm-grid,
      .stats-grid,
      .team-grid {
        grid-template-columns: 1fr;
      }

      .about-banner-content h1 {
        font-size: 34px;
      }
    }

/* ---why to choose us---- */
.why-choose-us {
  padding: 80px 0;
  background: #f9fafc;
  font-family: 'Segoe UI', sans-serif;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  color: #1f2933;
  margin-bottom: 10px;
}

.section-header .subtitle {
  font-size: 18px;
  color: #6b7280;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.left p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

.left .highlight {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 18px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.features li span {
  min-width: 45px;
  height: 45px;
  background: #2563eb;
  color: #ffffff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features h4 {
  font-size: 17px;
  margin: 0 0 5px;
  color: #111827;
}

.features p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
  }
}
                    /* ----ABOUT US FINISH----- */