    :root {
      --primary: #1E60AA;
      --secondary: #FF4917;
      --light: #EDF1FC;
      --dark: #17224D;
    }

    body {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      letter-spacing: 0.2px;
      background-color: #fffaf4;
      color: var(--dark);
      opacity: 0;
      transition: opacity 1.5s ease;
    }

    h1, h2, h3, h4, h5 {
     font-weight: 700;
}

    body.loaded {
      opacity: 1;
    }



       /* Topbar */
    .topbar {
      background-color: var(--dark);
      color: #fff;
      font-size: 14px;
      padding: 6px 0;
    }
    .topbar a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .topbar a:hover {
      color: var(--secondary);
    }

    /* Navbar */
    .navbar {
      background-color: #fff;
      transition: all 0.3s ease;
      
    }
    .navbar-brand {
      font-weight: 700;
      color: var(--dark);
    }
    .navbar-brand img{
      width: 65px;

    }
    .navbar-brand span {
      color: var(--primary);
    }
    .navbar-nav .nav-link {
      color: var(--dark);
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }
    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: var(--secondary);
      transition: all 0.3s ease-in-out;
    }
    .navbar-nav .nav-link:hover {
      color: var(--secondary);
    }
    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    /* Custom toggler icon in secondary color */
     /* Toggler Button */
    .navbar-toggler {
      border: none;
      outline: none !important;
      box-shadow: none !important;
    }
    .navbar-toggler i {
      font-size: 2rem;
      color: var(--secondary);
      transition: transform 0.3s ease;
    }
    /* .navbar-toggler:focus i,
    .navbar-toggler:hover i {
      transform: rotate(90deg);
    } */

    /* Button */
    .btn-discovery {
      background-color: var(--dark);
      color: #fff;
      border-radius: 8px;
      font-weight: 500;
      transition: all 0.4s ease;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      margin-top: 5px;
    }
    .btn-discovery:hover {
      background-color: var(--secondary);
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    }

    /* Logo hover animation */
    .navbar-brand:hover {
      color: var(--secondary);
      transform: scale(1.05);
      transition: all 0.3s ease;
    }

    /* Sticky shadow */
    .navbar.sticky-top {
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* Social icons hover */
    .social-links a {
      transition: transform 0.3s ease, color 0.3s ease;
    }
    .social-links a:hover {
      transform: translateY(-2px);
      color: var(--secondary);
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      background: url(/asset/images/herobg1.jpg) center/cover no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      width: 90vw;
      border-radius: 40px;
    }

    .hero-center{
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 20px 0px;
    }

    .hero-overlay {
      border-radius: 40px;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(23, 34, 77, 0.65);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
      animation: fadeInUp 1.2s ease;
    }

    .hero-subtitle {
      letter-spacing: 2px;
      color: var(--light);
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero-text {
      color: #ddd;
      font-size: 1.1rem;
      margin-bottom: 35px;
    }

    /* Buttons */
    .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      text-transform: uppercase;
      border: 2px solid #fff;
      padding: 12px 30px;
      margin: 10px;
      transition: all 0.3s ease;
      border-radius: 4px;
    }

    .btn-primary-custom {
      background: var(--secondary);
      border-color: var(--secondary);
      color: #fff;
    }

    .btn-primary-custom:hover {
      background: transparent;
      border-color: #fff;
      color: #fff;
      transform: translateY(-3px);
    }

    .btn-outline-custom {
      background: transparent;
      border-color: #fff;
      color: #fff;
    }

    .btn-outline-custom:hover {
      background: #fff;
      color: var(--dark);
      transform: translateY(-3px);
    }

    .hero-btn i {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .hero-btn:hover i {
      transform: translateX(5px);
    }

    /* Animation */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }
      .hero-text {
        font-size: 1rem;
      }
    }





.contact-section {
  padding: 60px 5.5%;
  background-color: #fffaf4;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
  padding-bottom: 8px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1;
  background: var(--light);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-right: 15px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus, textarea:focus {
  border-color: var(--primary);
}

.btn-submit {
  background-color: var(--primary);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  width: fit-content;
}

.btn-submit:hover {
  background-color: var(--secondary);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}


  /* Footer */
    .footer{
      background-color:var(--dark);
      color:#ccc;
      padding:60px 0 20px;
      font-size:15px;
      line-height:1.7;
    }

    .footer h5{
      color:var(--light);
      margin-bottom:20px;
      font-weight:600;
      position:relative;
    }
    .footer h5::after{
      content:"";
      width:50px;
      height:2px;
      background:var(--secondary);
      position:absolute;
      bottom:-8px;
      left:0;
      transition:width .3s ease;
    }
    .footer h5:hover::after{width:80px;}

    .footer a{
      color:#ccc;
      text-decoration:none;
      display:inline-block;
      transition:all .3s ease;
    }
    .footer a:hover{
      color:var(--secondary);
      transform:translateX(4px);
    }

    .footer .social-icons a{
      color:#ccc;
      background-color:rgba(255,255,255,0.05);
      width:36px;height:36px;
      display:flex;align-items:center;justify-content:center;
      border-radius:50%;
      transition:all .3s ease;
    }
    .footer .social-icons a:hover{
      background-color:var(--secondary);
      color:#fff;
      transform:translateY(-3px);
    }


    .footer-bottom{
      border-top:1px solid rgba(255,255,255,0.1);
      margin-top:40px;
      padding-top:15px;
      text-align:center;
      font-size:14px;
      color:#aaa;
    }
    .footer-bottom a{
      color:var(--secondary);
      text-decoration:none;
      font-weight:600;
    }


     .newsletter input[type="email"],
    .newsletter input[type="text"]{
      background:#fff;
      border:none;
      border-radius:4px;
      padding:10px 12px;
      width:100%;
      margin-bottom:10px;
      font-size:14px;
    }

    .newsletter label{
      font-size:12px;
      color:#bbb;
      display:block;
      margin-bottom:10px;
    }

    .newsletter .btn{
      background-color:var(--secondary);
      color:#fff;
      width:100%;
      border:none;
      border-radius:4px;
      font-weight:600;
      letter-spacing:1px;
      transition:all .3s ease;
    }
    .newsletter .btn:hover{
      background-color:#e63d10;
      transform:translateY(-2px);
    }





/* Styling for About us section ... */
    
    .about-section {
      padding: 60px 0px;
      position: relative;
      overflow: hidden;
    }

    .about-title {
      color: var(--dark);
      font-weight: 700;
      margin-bottom: 25px;
      border-bottom: 2px solid var(--secondary);
      width: 200px;
      padding-bottom: 8px;

    }

    .about-text {
      color: #555;
      font-size: 16px;
      line-height: 1.7;
    }

    .about-text strong {
      color: var(--dark);
    }

    .btn-learn {
      background: var(--dark);
      color: #fff;
      border-radius: 6px;
      padding: 12px 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }

    .btn-learn:hover {
      background: var(--secondary);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .about-img img {
      border-radius: 40px;
      margin-top: 15px;
      transition: transform 0.5s ease;
      
    }


    .about-img:hover img {
      transform: scale(1.05);
    }

    /* Fade animation */
    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }



        .help-section {
      padding: 30px 0;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 992px) {
  .help-section .container .row {
    flex-direction: column-reverse;
  }
  .help-section .container .row img{
    margin-top: 40px;
  }
  }


    .help-title {
      color: var(--dark);
      font-weight: 700;
      font-size: 2rem;
      position: relative;
      display: inline-block;
      margin-bottom: 30px;
    }

    .help-title::after {
      content: "";
      display: block;
      width: 200px;
      height: 4px;
      background-color: var(--secondary);
      margin-top: 8px;
      border-radius: 2px;
    }

    .help-text {
      color: #555;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .help-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .help-list li {
      margin-bottom: 12px;
      font-size: 16px;
      color: #333;
    }

    .help-list i {
      color: var(--secondary);
      margin-right: 10px;
    }

    .btn-learn {
      background: var(--dark);
      color: #fff;
      border-radius: 6px;
      padding: 12px 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }

    .btn-learn:hover {
      background: var(--secondary);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .help-img img {
      border-radius: 10px;
      transition: transform 0.5s ease;
      border-radius: 40px;
      margin-bottom: 50px;
    }

    .help-img:hover img {
      transform: scale(1.05);
      border-radius: 40px;
    }

    /* Fade-in animation */
    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }



     .how-section {
      background: url('how-work-bg.jpg') center center/cover no-repeat;
      position: relative;
      padding: 60px 0;
      color: var(--dark);
      z-index: 1;
    }

    .how-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.85);
      z-index: -1;
    }

    .how-title {
      font-weight: 700;
      font-size: 2rem;
      color: var(--dark);
      position: relative;
      display: inline-block;
      margin-bottom: 10px;
    }

    .how-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--secondary);
      margin: 10px auto 0 auto;
      border-radius: 2px;
    }

    .how-subtitle {
      color: #555;
      font-size: 16px;
      margin-bottom: 60px;
    }

    .step-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      padding: 40px 25px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
    }

    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .step-icon {
      background: var(--primary);
      color: #fff;
      font-size: 24px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px auto;
      position: relative;
      top: -50px;
      box-shadow: 0 5px 15px rgba(30,96,170,0.3);
    }

    .step-card h5 {
      font-weight: 700;
      color: var(--dark);
      margin-top: -20px;
      margin-bottom: 10px;
    }

    .step-card p {
      color: #555;
      font-size: 15px;
      line-height: 1.6;
    }

    .step-card small {
      display: block;
      color: var(--secondary);
      margin-top: 10px;
      font-weight: 500;
    }

    .footer-line {
      margin-top: 60px;
      font-size: 15px;
      color: var(--dark);
      font-weight: 500;
    }

    /* Animation */
    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }
    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }





     .why-choose-us {
      padding: 80px 12px;
      text-align: center;
      position: relative;
      overflow: visible;
    }

    /* Emblem / Hero */
    .emblem {
      width: 140px;
      height: 140px;
      margin: 0 auto 22px;
      position: relative;
      display: grid;
      place-items: center;
    }

    /* Soft radial glow */
    .emblem::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(30,96,170,0.08), transparent 40%);
      z-index: 0;
      filter: blur(8px);
    }

    /* Inner solid circle */
    .emblem .circle {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #154a86);
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 8px 20px rgba(30,96,170,0.25);
      z-index: 2;
      position: relative;
      transform: translateZ(0);
    }

    /* dashed animated ring (SVG) */
    .emblem .ring {
      position: absolute;
      width: 160px;
      height: 160px;
      z-index: 1;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none;
    }

    /* icon inside circle */
    .emblem .fa-building {
      font-size: 36px;
      transform: translateY(2px);
    }

    /* floating decorative squares */
    .float-shape {
      width: 12px;
      height: 12px;
      background: rgba(255,73,23,0.12);
      position: absolute;
      border-radius: 3px;
      animation: float 6s ease-in-out infinite;
      z-index: 0;
    }

    .float-1 { top: -8%; left: 10%; animation-delay: 0s; }
    .float-2 { top: 8%; right: 10%; animation-delay: 1.2s; }
    .float-3 { bottom: -6%; left: 25%; animation-delay: 2.1s; }
    .float-4 { bottom: 6%; right: 22%; animation-delay: 3.4s; }

    @keyframes float {
      0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.85; }
      50% { transform: translateY(-12px) rotate(15deg) scale(1.05); opacity: 1; }
      100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.85; }
    }

    /* Heading + paragraph */
    .why-choose-us h2 {
      font-size: 30px;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: 0.3px;
      margin-bottom: 10px;
    }

    .why-choose-us p.lead {
      color: #334155;
      max-width: 860px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.7;
    }

    /* Underline accent */
    .accent-underline {
      width: 80px;
      height: 6px;
      background: var(--secondary);
      border-radius: 4px;
      margin: 20px auto 0;
      box-shadow: 0 6px 18px rgba(255,73,23,0.12);
    }

    /* Optional: small reasons grid (special touch) */
    .reason-list { margin-top: 34px; }
    .reason-card {
      border-radius: 12px;
      background: #fff;
      padding: 18px;
      box-shadow: 0 8px 22px rgba(23,34,77,0.06);
      transition: transform .28s ease, box-shadow .28s ease;
    }
    .reason-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(23,34,77,0.09); }
    .reason-card .icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      display: inline-grid;
      place-items: center;
      margin-bottom: 10px;
      background: linear-gradient(180deg, rgba(30,96,170,0.06), rgba(255,73,23,0.03));
      color: var(--primary);
      font-size: 20px;
    }
    .reason-card h6 { margin: 6px 0; font-size: 16px; color: var(--dark); font-weight:600; }
    .reason-card p { margin: 0; color: #5b6470; font-size: 14px; line-height:1.45; }

    /* Responsive tweaks */
    @media (max-width: 576px) {
      .emblem { width: 110px; height: 110px; }
      .emblem .circle { width: 88px; height: 88px; }
      .why-choose-us h2 { font-size: 22px; }
    }







     .services-section {
      padding: 60px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title span {
      background: var(--secondary);
      color: #fff;
      padding: 6px 14px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
    }

    .section-title h2 {
      color: var(--dark);
      font-weight: 700;
      margin-top: 15px;
    }

    .service-card {
      background: #fff;
      border: 1px solid #e6e6e6;
      border-radius: 15px;
      padding: 35px 25px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .service-card i {
      font-size: 40px;
      color: var(--primary);
      margin-bottom: 15px;
    }

    .service-card h5 {
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .service-card p {
      color: #555;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .btn-learn {
      background: var(--primary);
      color: #fff;
      font-weight: 500;
      border-radius: 30px;
      padding: 8px 20px;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-learn:hover {
      background: var(--secondary);
      color: #fff;
    }




    .faq-section {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.faq-section h2 {
  font-weight: 700;
  color: var(--dark);
}

.faq-section p {
  color: #555;
  margin-bottom: 40px;
}

.accordion-item {
  border: 1px solid #e3e6ed;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background-color: var(--light);
  font-weight: 600;
  color: var(--dark);
  padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  font-family: "Bootstrap Icons";
  /* content: "\f4fe"; Chevron-down icon */
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-body {
  background-color: #fff;
  text-align: left;
  color: #555;
  padding: 20px;
}



/* Scroll to Top Button Style */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  background: linear-gradient(135deg, #1E60AA, #FF4917);
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #FF4917, #1E60AA);
}