    /* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Navbar Initial Styling */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #A3917F; /* Shuru ka background color */
  transition: background-color 0.4s ease, padding 0.4s ease;
  z-index: 1000;
}

/* Scroll hone ke baad transparent styling (Jaisa image_f2c50d.png me hai) */
.navbar.scrolled {
  background-color: transparent;
  padding: 15px 50px;
}

/* Logo Link */
.nav-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

/* Navigation Menu */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Home Link active state jaisa image_f2c50d.png me show ho raha hai */
.nav-links li a.active-link {
  color: #fff;
  background-color: #8E7A67;
  padding: 8px 20px;
  border-radius: 16px;
}

/* Dropdown Wrapper */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.arrow-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Vertical Dropdown Menu (White Page) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff; /* White color ka page */
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
  list-style: none;
  display: flex;
  flex-direction: column; /* Vertically set karne ke liye */
  padding: 10px 0;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu li a {
  color: #333 !important;
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  background-color: transparent !important;
  border-radius: 0 !important;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5 !important;
  color: #0b695c !important;
}

/* Hover karne par Dropdown show karna */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .arrow-icon {
  transform: rotate(180deg);
}

/* Get a QUOTE Button Styling */
.quote-btn {
  background-color: #ff9800; /* Orange background */
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

/* Button Hover State */
.quote-btn:hover {
  background-color: #d32f2f; /* Hover karne par Red */
}
    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');
    
    /* Reset & Base Navbar Layout */
    .kdm-navbar {
      margin: 0;
      padding: 16px 80px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: linear-gradient(90deg, #983EEB 0%, #983EEB 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 99999;
      user-select: none;
      transition: all 0.3s ease;
    }

    /* Logo Styling */
    .kdm-logo-link {
      height: 36px;
      display: flex;
      align-items: center;
    }
    .kdm-logo-img {
      height: 100%;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: filter 0.3s ease;
    }

    /* Links Menu Track */
    .kdm-nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 28px;
    }
    .kdm-nav-links a, .kdm-nav-links button {
      text-decoration: none;
      color: #FFFFFF;
      font-size: 15px;
      font-weight: 700;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 0;
      font-family: inherit;
      transition: color 0.2s ease;
    }
    .kdm-nav-links a:hover {
      color: #E2E8F0;
    }

    /* Specific Active White Pill (Services) */
    .services-pill {
      background-color: #FFFFFF !important;
      color: #8A3FFC !important;
      padding: 8px 20px !important;
      border-radius: 50px !important;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      transition: all 0.3s ease !important;
    }

    /* Dropdown Menus Layout */
    .dropdown-parent {
      position: relative;
    }
    .kdm-dropdown-box {
      position: absolute;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      top: 100%;
      margin-top: 12px;
      width: 240px;
      background-color: #FFFFFF;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      padding: 12px 0;
      border: 1px solid #F3F4F6;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      display: block;
      z-index: 100000;
    }
    .kdm-dropdown-box a {
      display: block;
      padding: 10px 20px;
      color: #1F2937 !important;
      font-size: 14px;
      font-weight: 600;
      text-align: left;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .kdm-dropdown-box a:hover {
      background-color: #F9FAFB;
      color: #E05314 !important;
    }

    /* Hover Dropdown Toggle for Services */
    .dropdown-parent:hover .kdm-dropdown-box {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown-parent:hover .services-pill span {
      transform: rotate(180deg);
    }
    .services-pill span {
      font-size: 9px;
      display: inline-block;
      transition: transform 0.2s ease;
    }

    /* Click Dropdown Style for Insights */
    .insights-btn span {
      font-size: 9px;
      color: #E9D5FF;
      display: inline-block;
      transition: transform 0.2s ease;
    }
    .kdm-dropdown-box.active {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    /* Orange Actions Button */
    .quote-btn {
      background-color: #E05314;
      color: #FFFFFF;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 12px 24px;
      border-radius: 6px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: background 0.2s ease;
    }
    .quote-btn:hover {
      background-color: #c6460f;
    }

    /* SCROLL STATE TRANSLATION MATRIX (When webpage is scrolled down) */
    .kdm-navbar.scrolled {
      background: #FFFFFF !important;
      padding: 12px 80px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid #F3F4F6;
    }
    .kdm-navbar.scrolled .kdm-logo-img {
      filter: none !important; /* Restores brand original colors */
    }
    .kdm-navbar.scrolled .kdm-nav-links > li > a,
    .kdm-navbar.scrolled .kdm-nav-links > li > button {
      color: #1F2937 !important;
    }
    .kdm-navbar.scrolled .kdm-nav-links > li > a:hover,
    .kdm-navbar.scrolled .kdm-nav-links > li > button:hover {
      color: #E05314 !important;
    }
    .kdm-navbar.scrolled .services-pill {
      background-color: #983EEB !important;
      color: #FFFFFF !important;
    }
    .kdm-navbar.scrolled .insights-btn span {
      color: #9CA3AF;
    }

    /* Responsive adjustment */
    @media (max-width: 1024px) {
      .kdm-navbar { padding: 16px 24px; }
      .kdm-nav-links { display: none; } /* Standard collapse for desktop viewports */
    }
 