    :root {
    --bs-primary: #009846; /* Primary color */
    --bs-secondary: #6c757d; /* Secondary color */
    --bs-success: #009846; /* Success color */
    --bs-danger: #dc3545; /* Danger color */
    --bs-warning: #ffc107; /* Warning color */
    --bs-info: #0dcaf0; /* Info color */
    --bs-light: #f8f9fa; /* Light color */
    --bs-dark: #212529; /* Dark color */
    --bs-muted: #6c757d; /* Muted text color */
    --bs-white: #fff; /* White color */
    --bs-black: #000; /* Black color */
    --bs-gray-100: #f8f9fa; /* Light Gray */
    --bs-gray-200: #e9ecef; /* Gray */
    --bs-gray-300: #dee2e6; /* Gray */
    --bs-gray-400: #ced4da; /* Gray */
    --bs-gray-500: #adb5bd; /* Gray */
    --bs-gray-600: #6c757d; /* Gray */
    --bs-gray-700: #495057; /* Darker Gray */
    --bs-gray-800: #343a40; /* Dark Gray */
    --bs-gray-900: #212529; /* Dark Gray */
    }

    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html, body {
    font-family: poppins, sans-serif;
    line-height: 1.5;
    background-color: var(--bs-light);
    color: var(--bs-dark);
    overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin-bottom: 0.5em;
    }

    h1 {
    font-size: 3rem;
    color: var(--bs-success);
    }

    h2 {
    font-size: 2.75rem;
    color: var(--bs-success);
    }

    h3 {
    font-size: 1.5rem;
    color: var(--bs-success);
    }

    h4 {
    font-size: 1.25rem;
    }

    h5 {
    font-size: 1rem;
    }

    h6 {
    font-size: 0.875rem;
    }

    p {
    margin-bottom: 1em;
    font-size: 1rem;
    color: var(--bs-muted);
    }

    a {
    color: var(--bs-success);
    text-decoration: none;
    }

    a:hover {
    text-decoration: underline;
    color: var(--bs-success);
    }

/* Top Bar Styling */
    .top-bar {
      font-size: 0.9rem;
    }

    .top-bar a {
      text-decoration: none;
    }

    .top-bar a:hover {
      color: #ffc107;
    }

    .custom-topbar{
      background-color: var(--bs-success);
    }

    /* Adjust spacing between icons and text */
    .top-bar-left small {
      display: inline-block;
    }

    .top-bar-right a {
      font-size: 1rem;
    }
    
    .navbar {
      position: absolute;
      top: 35px;
      left: 0;
      width: 100%;
      z-index: 10;
      padding: 1rem 0;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(0, 0, 0, 0.8);
      padding: 0.75rem 0;
    }

    .navbar-logo{
      max-height: 60px;
      width: auto;
    }

    .navbar-brand {
      color: #fff !important;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .navbar-nav .nav-link {
      color: #f1f1f1 !important;
      margin: 0 0.75rem;
      position: relative;
      font-weight: 500;
      text-decoration: none;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #00ccff;
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    .dropdown-menu {
      border-radius: 8px;
      border: none;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      animation: fadeIn 0.2s ease-in-out;
      min-width: 250px;
    }

    .dropdown-header {
      font-weight: 600;
      color: var(--bs-success);
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    .dropdown-item {
      font-weight: 500;
      padding: 10px 15px;
      transition: background-color 0.2s ease;
    }

    .dropdown-item:hover {
      color: var(--bs-success);
      text-decoration: none;
    }

    .dropdown-menu.dropdown-mega-menu {
      left: 50% !important;        /* start from middle of parent */
      transform: translateX(-50%);  /* move left by half its width */
    }

    @media (max-width: 768px) {
      .dropdown-menu.dropdown-mega-menu {
      left: 0% !important;        /* start from middle of parent */
      transform: translateX(0%);  /* move left by half its width */
    }
    }

    .btn-cta {
      background: var(--bs-success);
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 0.5rem 1.3rem;
      transition: all 0.3s ease;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px var(--bs-success);
      text-decoration: none;
      background-color: #fff;
      color: var(--bs-dark);
    }

    /* Hero Carousel */
    .carousel-item {
      height: 80vh;
      min-height: 600px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .carousel-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    .carousel-caption {
      z-index: 2;
    }

    .carousel-caption h1 {
      font-size: 3rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 4px 10px rgba(0,0,0,0.4);
    }

    .carousel-caption p {
      color: #eee;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
      .carousel-caption h1 {
        font-size: 2rem;
      }
    }

    .typed-text::after {
        content: '';
        animation: blink 0.8s infinite;
        color: #fff;
        margin-left: 3px;
    }

    @keyframes blink {
        0%, 50%, 100% { opacity: 1; }
        25%, 75% { opacity: 0; }
    }

    /* Service Box Section */
    .service-box {
      background: #fff;
      border-radius: 15px;
      padding: 40px 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: var(--bs-success);
      transition: all 0.4s ease;
      z-index: 0;
    }

    .service-box:hover::before {
      width: 100%;
    }

    .service-icon {
      font-size: 3rem;
      color: #0d6efd;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      transition: color 0.3s ease;
    }

    .service-title {
      font-weight: 500;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
      font-size: 20px !important;
    }

    .service-desc {
      color: #6c757d;
      font-size: 0.95rem;
      position: relative;
      z-index: 1;
    }

    .service-box:hover .service-icon,
    .service-box:hover .service-title,
    .service-box:hover .service-desc {
      color: #fff;
    }

    /* Call Back Section */  
    .callback-section {
      background: #dcf8eb;
      border-radius: 10px;
      margin: 60px auto;
    }

    .callback-form {
      background: #f0f6ff;
      padding: 15px;
      border-radius: 10px;
    }

    .callback-info {
      padding: 30px;
    }

    .callback-info h2 {
      color: var(--bs-success);
      font-weight: 700;
      margin-bottom: 15px;
    }

    .callback-info p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .callback-info ul {
      list-style: none;
      padding: 0;
    }

    .callback-info ul li::before {
      content: "✔ ";
      color: var(--bs-success);
      font-weight: bold;
    }

    .callback-btn {
      background-color: #007bff;
      color: #fff;
      font-weight: 600;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      width: 100%;
      transition: background 0.3s;
    }

    .callback-btn:hover {
      background-color: #0056d2;
    }

    @media (max-width: 992px) {
      .callback-section {
        padding: 40px 20px;
      }
      .callback-form, .callback-info {
        margin-bottom: 30px;
      }
    }

    .about-section {
      background-color: #f9f9f9;
    }

    .about-section .about-description {
      color: #555;
    }

    .about-section .about-btn {
      background-color: var(--bs-primary);
      border: none;
      text-decoration: none;
    }

    .about-section .about-btn:hover {
      background-color: var(--bs-success);
      border: none;
      text-decoration: none;
    }    

    .about-section .about-list li {
      font-size: 1rem;
    }

    /* Call To Action Section */
   .cta-section {
      background: linear-gradient(135deg, #004aad, #0066ff);
      border-radius: 12px;
      padding: 60px 0;
      position: relative; /* needed if using pseudo-elements */
      overflow: hidden;
    }

/* If you want overlay effect */
  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    pointer-events: none; /* IMPORTANT: allows clicks to pass through */
  }

  .cta-section .cta-heading {
    font-size: 3rem;
    color: #ffffff;
  }

  .cta-section .cta-text {
    font-size: 1.1rem;
    color: var(--bs-gray-500);
  }

  .cta-btn {
    background-color: #ffffff;
    color: var(--bs-success);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
  }

  .cta-btn:hover {
    background-color: #f0f0f0;
    color: #004aad;
    text-decoration: none;
  }

  .cta-btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    transition: 0.3s;
  }

  .cta-btn-secondary:hover {
    background-color: #ffffff;
    color: #004aad;
    text-decoration: none;
  }

  /* Faq Section */
  .company-registration-section {
    background-color: #f9f9f9;
  }

  .company-registration-left h2 {
    color: var(--bs-success);
  }

  .company-registration-left p {
    font-size: 1.1rem;
    color: #555;
  }

  .registration-steps li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .company-registration-right h3 {
    color: var(--bs-success);
    margin-bottom: 1.5rem;
    font-size: 2.75rem !important;
  }

  .accordion-button {
    background-color: #ffffff;
    color: var(--bs-gray-900);
  }

  .accordion-button:focus {
    box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
    background-color: var(--bs-success);
    color: #ffffff;
  }

  .accordion-body {
    color: #333;
  }

  /* Footer Section */
  .site-footer {
    background: linear-gradient(135deg, #001d4a, #003c8f);
    font-size: 0.95rem;
  }

  .footer-heading {
    font-weight: 600;
    color: #ffffff;
    position: relative;
  }

  .footer-heading::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #00b4d8;
    margin-top: 5px;
  }

  .footer-about {
    color: #dcdcdc;
    line-height: 1.6;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: #dcdcdc;
    text-decoration: none;
    transition: 0.3s;
  }

  .footer-links a:hover {
    color: #00b4d8;
    padding-left: 5px;
  }

  .footer-contact li {
    color: #dcdcdc;
    margin-bottom: 8px;
  }

  .footer-contact i {
    color: #00b4d8;
    margin-right: 8px;
  }

  .footer-social a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: 0.3s;
  }

  .footer-social a:hover {
    color: var(--bs-success);
  }

  .footer-bottom {
    color: #fff !important;
    font-size: 0.9rem;
    padding: 50px auto;
  }

/* Back to Top Button */
  .back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background-color: var(--bs-success);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }

  .back-to-top:hover {
    background-color: var(--bs-primary);
    transform: translateY(-3px);
  }

  .back-to-top.show {
    opacity: 1;
    visibility: visible;
  }

/* Testimonials Section */
  .testimonials-section {
    text-align: center;
    padding: 80px 20px;
    max-width: 1320px;
    margin: auto;
  }

  .testimonials-section h2 {
    margin-bottom: 40px;
  }

  /* Carousel container */
  .testimonial-carousel {
    position: relative;
    overflow: hidden;
  }

  .carousel-track-container {
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .testimonial {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    min-width: 33.3333%; /* 3 items visible */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .testimonial h4 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: var(--bs-success);
  }

  .testimonial p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 10;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-btn:hover {
    background: #0056b3;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .testimonial {
      min-width: 50%; /* 2 per view */
    }
  }

  @media (max-width: 600px) {
    .testimonial {
      min-width: 100%; /* 1 per view */
    }
  }

/* Enquiry */
/* Modal Inquiry Box */
  .inquiry-box {
      width: 100%;
      max-width: 600px; /* Max width for embedding */
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Lighter shadow for standalone form */
      display: flex;
      flex-direction: column;
      overflow: hidden;
      margin: 20px auto; /* Centered in modal body */
  }

  /* Header */
  .sa-form-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: var(--primary-green, #009846); /* Primary green */
      color: #fff;
  }

  #sa-form-title {
      font-size: 18px;
      font-weight: 600;
  }

  .sa-sub {
      font-size: 12px;
      opacity: 0.9;
  }

  /* Form Body */
  .sa-form-body {
      padding: 20px;
  }

  form#sa-lead-form {
      display: grid;
      gap: 12px; /* Increased gap */
      margin-top: 10px;
  }

  /* Labels and Inputs */
  form#sa-lead-form label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: #0a2043;
  }

  form#sa-lead-form input,
  form#sa-lead-form select,
  form#sa-lead-form textarea {
      width: 100%;
      padding: 10px 12px;
      margin-top: 4px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
      box-sizing: border-box;
  }

  /* Primary Button */
  .sa-primary {
      background: var(--primary-green, #009846);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s;
  }

  .sa-primary:hover {
      background: #009846; /* Darker shade on hover */
  }

  /* Legal Note */
  .sa-legal {
      font-size: 11px;
      color: #64748b;
      text-align: center;
      margin-top: 5px;
  }

  /* Action Buttons (WhatsApp/Call) */
  .sa-actions {
      display: flex;
      gap: 8px;
      margin-top: 15px;
  }

  .sa-btn {
      flex: 1;
      text-align: center;
      color: #fff;
      text-decoration: none;
      padding: 10px;
      border-radius: 8px;
      font-weight: 500;
      transition: background 0.3s;
  }

  .whatsapp-btn {
      background: #009846; /* WhatsApp Green */
      text-decoration: none;
  }

  .whatsapp-btn:hover {
      text-decoration: none;
      color: #ddd;
  }

  .call-btn {
      background: #0284c7; /* Contrasting color */
  }

  .call-btn:hover {
      text-decoration: none;
      color: #ddd;
  }







