:root {
      --primary-color: #0e2c60;
      --secondary-color: #d5a74d;
      --dark-color: #13251c;
      --light-color: #f8f9f4;
      --text-color: #555;
      --white-color: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      color: var(--text-color);
      background: #fff;
      line-height: 1.7;
    }

    a {
      text-decoration: none;
    }

    .section-padding {
      padding: 90px 0;
    }

    .section-title {
      margin-bottom: 50px;
      text-align: center;
    }

    .section-title span {
      color: var(--secondary-color);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
    }

    .section-title h2 {
      color: var(--dark-color);
      font-weight: 800;
      margin-top: 10px;
      font-size: 38px;
    }

    .section-title p {
      max-width: 720px;
      margin: 15px auto 0;
    }

    .btn-main {
      background: var(--secondary-color);
      color: var(--white-color);
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 600;
      border: 2px solid var(--secondary-color);
      transition: 0.3s ease;
    }

    .btn-main:hover {
      background: transparent;
      color: var(--secondary-color);
      border-color: var(--secondary-color);
    }

    .btn-outline-main {
      border: 2px solid var(--white-color);
      color: var(--white-color);
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-outline-main:hover {
      background: var(--white-color);
      color: var(--primary-color);
    }
	
.navbar-brand img {
    width: 130px;
}

 .navbar {
    padding: 2px 0;
    transition: 0.3s ease;
    background: #fff;
    backdrop-filter: blur(8px);
}

    .navbar.scrolled {
      background: #fff;
      padding: 2px 0;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .navbar-brand {
      color: var(--white-color) !important;
      font-weight: 800;
      font-size: 24px;
    }

    .navbar-brand i {
      color: var(--secondary-color);
      margin-right: 6px;
    }

    .navbar-nav .nav-link {
      color: #000;
      font-weight: 500;
      margin-left: 16px;
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--secondary-color);
    }

    .hero-section {
      min-height: 100vh;
      background:
        linear-gradient(rgba(19, 37, 28, 0.75), rgba(19, 37, 28, 0.75)),
        url("../images/slider-banner.jpg");
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      color: var(--white-color);
      position: relative;
    }

    .hero-content {
      max-width: 760px;
    }

    .hero-content span {
      display: inline-block;
      background: rgba(245, 158, 11, 0.18);
      color: #ffd58a;
      padding: 8px 18px;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .hero-content h1 {
      font-size: 45px;
      line-height: 1.15;
      font-weight: 800;
      margin-bottom: 22px;
    }

    .hero-content p {
      font-size: 18px;
      margin-bottom: 35px;
      color: #f2f2f2;
    }

    .hero-box {
      background: var(--white-color);
      color: var(--dark-color);
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }

    .hero-box h4 {
      font-weight: 800;
      margin-bottom: 20px;
      color: var(--dark-color);
    }

    .quick-info {
      display: flex;
      gap: 15px;
      margin-bottom: 18px;
      align-items: flex-start;
    }

    .quick-info i {
      width: 42px;
      height: 42px;
      min-width: 42px;
      background: rgba(25, 135, 84, 0.1);
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      font-size: 18px;
    }

    .quick-info h6 {
      font-weight: 700;
      margin-bottom: 2px;
    }

    .quick-info p {
      margin: 0;
      font-size: 14px;
      color: #666;
    }

    .about-img {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
    }

    .about-img img {
      width: 100%;
      height: 520px;
      object-fit: cover;
    }

    .experience-box {
      position: absolute;
      bottom: 25px;
      left: 25px;
      background: var(--secondary-color);
      color: var(--white-color);
      padding: 22px 25px;
      border-radius: 20px;
      max-width: 250px;
  }

    .experience-box h3 {
      font-size: 42px;
      font-weight: 800;
      margin: 0;
    }
    .about-content h2 {
      font-size: 22px;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 8px;
  }

  .about-content p {
    font-size: 15px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

    .check-list li {
      margin-bottom: 12px;
      color: var(--dark-color);
      font-weight: 500;
    }

    .check-list i {
      color: var(--primary-color);
      margin-right: 10px;
    }

    .services-section {
      background: var(--light-color);
    }

    .service-card {
      background: var(--white-color);
      padding: 35px 28px;
      border-radius: 24px;
      height: 100%;
      transition: 0.3s ease;
      border: 1px solid #edf0e8;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 50px rgba(0,0,0,0.09);
    }

    .service-icon {
      width: 72px;
      height: 72px;
      background: rgba(25, 135, 84, 0.1);
      color: var(--primary-color);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin-bottom: 25px;
    }

    .service-card h4 {
      color: var(--dark-color);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .product-card {
      background: var(--white-color);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 35px rgba(0,0,0,0.08);
      height: 100%;
      transition: 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-8px);
    }

    .product-card img {
      height: 230px;
      width: 100%;
      object-fit: cover;
    }

    .product-body {
      padding: 25px;
    }

    .product-body h4 {
      color: var(--dark-color);
      font-weight: 800;
      margin-bottom: 10px;
    }

    .product-body span {
      display: inline-block;
      background: rgba(245, 158, 11, 0.12);
      color: var(--secondary-color);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .counter-section {
      background:
        linear-gradient(rgba(13, 42, 92, 0.92), rgba(12, 42, 92, 0.92)),
        url("https://images.unsplash.com/photo-1529539795054-3c162aab037a?auto=format&fit=crop&w=1920&q=80");
      background-size: cover;
      background-position: center;
      color: var(--white-color);
      padding: 80px 0;
    }

    .counter-box {
      text-align: center;
    }

    .counter-box i {
      font-size: 42px;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .counter-box h3 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 5px;
    }

    .counter-box p {
      margin: 0;
      color: #eee;
    }

    .event-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      height: 380px;
      color: var(--white-color);
    }

    .event-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s ease;
    }

    .event-card:hover img {
      transform: scale(1.08);
    }

    .event-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .event-overlay h4 {
      font-weight: 800;
      margin-bottom: 10px;
    }

    .event-overlay p {
      margin: 0;
      color: #eee;
    }

    .process-section {
      background: var(--light-color);
    }

    .process-card {
      text-align: center;
      padding: 30px 22px;
      background: var(--white-color);
      border-radius: 24px;
      height: 100%;
      position: relative;
      border: 1px solid #edf0e8;
    }

    .process-number {
      width: 60px;
      height: 60px;
      background: var(--primary-color);
      color: var(--white-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 22px;
      margin: 0 auto 20px;
      border: 6px solid #dff3e9;
    }

    .process-card h5 {
      color: var(--dark-color);
      font-weight: 800;
      margin-bottom: 10px;
    }

    .why-choose-section .section-title h2 {
      color: var(--dark-color);
      font-weight: 800;
      margin-top: 10px;
      font-size: 24px;
  }

    .why-card {
      display: flex;
      gap: 18px;
      margin-bottom: 25px;
    }

    .why-card i {
      width: 55px;
      height: 55px;
      min-width: 55px;
      background: rgb(41 60 93);
      color: #ffffff;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
  }

    .why-card h5 {
      color: var(--dark-color);
      font-weight: 800;
      margin-bottom: 5px;
    }

    .why-img img {
      border-radius: 28px;
      height: 520px;
      object-fit: cover;
      width: 100%;
    }

    .accordion-item {
      border: 0;
      margin-bottom: 15px;
      border-radius: 15px !important;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    }

    .accordion-button {
      font-weight: 700;
      color: var(--dark-color);
      padding: 20px;
    }

    .accordion-button:not(.collapsed) {
      background: var(--primary-color);
      color: var(--white-color);
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    .contact-section {
      background: var(--light-color);
    }

    .contact-info-box {
      background: #08234f;
      color: var(--white-color);
      padding: 40px;
      border-radius: 28px;
      height: 100%;
  }

    .contact-info-box h3 {
      font-weight: 800;
      margin-bottom: 25px;
    }

    .contact-line {
      display: flex;
      gap: 15px;
      margin-bottom: 22px;
      align-items: flex-start;
    }

    .contact-line i {
      width: 45px;
      height: 45px;
      min-width: 45px;
      background: #d5a74e;
      color: #ffffff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

    .contact-line p {
      margin: 0;
      color: #ddd;
    }
    .contact-line p a{
      color: #ddd;
    }

    .contact-form {
      background: var(--white-color);
      padding: 40px;
      border-radius: 28px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }

    .form-control,
    .form-select {
      height: 52px;
      border-radius: 12px;
      border: 1px solid #ddd;
      padding: 10px 15px;
    }

    textarea.form-control {
      height: 130px;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--primary-color);
      box-shadow: none;
    }

    .footer {
      background: #08234f;
      color: #ccc;
      padding: 70px 0 20px;
  }

    .footer h4,
    .footer h5 {
      color: var(--white-color);
      font-weight: 800;
      margin-bottom: 22px;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
    }

    .footer ul li a {
      color: #ccc;
      transition: 0.3s;
    }

    .footer ul li a:hover {
      color: var(--secondary-color);
      padding-left: 4px;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.08);
      color: var(--white-color);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: var(--secondary-color);
      color: var(--white-color);
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 14px;
    }

    .back-to-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 45px;
      height: 45px;
      background: var(--secondary-color);
      color: var(--white-color);
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

    .back-to-top.show {
      display: flex;
    }

    @media (max-width: 991px) {
      .hero-content h1 {
        font-size: 42px;
      }

      .hero-section {
        padding-top: 120px;
        padding-bottom: 70px;
      }

      .navbar {
        background: #fff;
      }

      .navbar-nav .nav-link {
        margin-left: 0;
      }

      .section-title h2,
      .about-content h2 {
        font-size: 32px;
      }
    }

    @media (max-width: 575px) {
      .navbar-brand img {
        width: 90px;
    }

    .navbar-brand {
      color: var(--white-color) !important;
      font-weight: 800;
      font-size: 24px;
      padding-top: 0;
      padding-bottom: 0;
  }




      .hero-content h1 {
        font-size: 34px;
      }

      .section-padding {
        padding: 65px 0;
      }

      .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .hero-btns a {
        text-align: center;
      }

      .contact-form,
      .contact-info-box {
        padding: 28px;
      }
    }