
        :root {
            --primary-blue: #1368ce;
            --dark-blue: #0b4da2;
            --light-blue: #e8f2ff;
            --gray-dark: #333333;
            --gray-medium: #666666;
            --gray-light: #f5f7fa;
            --white: #ffffff;
            --accent-orange: #ff6b35;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            /* background-color: var(--gray-light); */
            color: var(--gray-dark);
            line-height: 1.6;
        }
.s-header {
  z-index: 500;
  width: 100%;
  height: 96px;
  /* background-color: #f5f7fa; */
  position: absolute;
  top: 9px;
}

/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.header-logo {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 150px;
  top: 78%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-logo a {
  display: block;
  padding: 0;
  outline: 0;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-logo img {
    width: 210px;
    height: 115px;
}
@media screen and (max-width: 499px) {
.header{
  margin-bottom: 20px !important;
}
        
   .header-logo img {
          width: 110px !important;
    height: 60px !important;
}
  .s-header {
  height: 80px !important;
}

.header-logo {
  position: relative !important;
  left: 20px !important;
  top: 55% !important;
}

.header-menu-toggle {
  right: 20px !important;
  top: 30px !important;
}
.header-nav {
  width: 415px !important;
}
}
/* ------------------------------------------------------------------- 
 * ## main navigation 
 * ------------------------------------------------------------------- */
.header-nav {
  z-index: 900;
  font-family: "metropolis-regular", sans-serif;
  font-size: 16px; /* Changed from 62.5% to 16px */
  line-height: 1.846;
  padding: 36px 30px 36px 36px; /* Converted from rem to px */
  height: 100%;
  width: 430px;
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.25);
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  visibility: hidden;
}
.header-nav a,
.header-nav a:visited {
  color: rgba(255, 255, 255, 0.5);
}
.header-nav a:hover,
.header-nav a:focus,
.header-nav a:active {
  color: white;
}
.header-nav h3 {
  font-family: "metropolis-semibold", sans-serif;
  font-size: 11px;
  line-height: 1.363;
  text-transform: uppercase;
  letter-spacing: 2.5px; /* Converted from 0.25rem to 2.5px */
  margin-bottom: 48px; /* Converted from 4.8rem to 48px */
  margin-top: 9px; /* Converted from 0.9rem to 9px */
  color: white;
}
.header-nav p {
  margin-bottom: 27px; /* Converted from 2.7rem to 27px */
}

.header-nav__content {
  background: #0c0c0c;
  position: relative;
  left: 50px;
  opacity: 0;
  visibility: hidden;
}

.header-nav__list {
  font-family: "metropolis-regular", sans-serif;
  font-size: 16px; /* Changed from 1.6rem to 16px */
  margin: 36px 0 30px 0; /* Converted from rem to px */
  padding: 0 0 18px 0; /* Converted from rem to px */
  list-style: none;
  counter-reset: ctr;
}
.header-nav__list li {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 48px; /* Changed from 4.8rem to 48px */
  position: relative;
}
.header-nav__list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-nav__list a {
  display: block;
  color: white;
  position: relative;
  padding-left: 35px; /* Changed from 3.5rem to 35px */
}
.header-nav__list a::before {
  content: counter(ctr, decimal-leading-zero) ".";
  counter-increment: ctr;
  font-family: "metropolis-regular", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  left: 3px;
  top: 0;
}
.header-nav__list a:hover::before {
  color: white;
}

.header-nav__social {
  list-style: none;
  display: inline-block;
  font-size: 18px; /* Changed from 1.8rem to 18px */
  margin: 0;
}
.header-nav__social li {
  display: inline-block;
  margin-right: 12px;
  padding-left: 0;
}
.header-nav__social li a {
  color: rgba(255, 255, 255, 0.15);
}
.header-nav__social li a:hover,
.header-nav__social li a:focus {
  color: white;
}
.header-nav__social li:last-child {
  margin: 0;
}

.header-nav__close {
  z-index: 800;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 30px;
  border-radius: 3px;
  position: absolute;
  top: 36px;
  right: 30px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}
.header-nav__close span::before,
.header-nav__close span::after {
  content: "";
  display: block;
  height: 2px;
  width: 12px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 9px;
  margin-top: -1px;
}
.header-nav__close span::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-nav__close span::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ====== NESTED MENU / SUBMENU ====== */

/* Parent items that have a submenu */
.header-nav__list li.has-submenu > a {
  padding-right: 30px; /* Changed from 3rem to 30px */
  position: relative;
  text-decoration: none;
}

/* Chevron arrow */
.header-nav__list li.has-submenu > a .chevron {
  position: absolute;
  right: 6px; /* Changed from 0.6rem to 6px */
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) rotate(45deg); /* pointing right */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Rotate chevron when submenu is "open" (hovered) */
.header-nav__list li.has-submenu:hover > a .chevron {
  transform: translateY(-50%) rotate(135deg); /* pointing down */
  border-color: #ffffff;
}

/* Submenu container */
.header-nav__list li .submenu {
  list-style: none;
  margin: 6px 0 0 0; /* Changed from 0.6rem to 6px */
  padding-left: 38px; /* Changed from 3.8rem to 38px */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Show submenu on hover */
.header-nav__list li.has-submenu:hover > .submenu {
  max-height: 600px;
  opacity: 1;
}

/* Each submenu item */
.header-nav__list li .submenu li {
  border: 0;
  padding: 3px 0 3px 16px; /* Changed from rem to px */
  position: relative;
}

/* Submenu bullet (small dot) */
.header-nav__list li .submenu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px; /* Changed from 2.5rem to 25px */
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

/* Submenu links */
.header-nav__list li .submenu a {
  font-size: 14px; /* Changed from 1.4rem to 14px */
  padding-left: 0;
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

/* Remove numeric counter for submenu */
.header-nav__list li .submenu a::before {
  content: none;
}

/* Hover on submenu item */
.header-nav__list li .submenu a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.header-nav__list li .submenu li:hover::before {
  background: #ffffff;
}

/* (Optional) slightly darker bg strip on hover */
.header-nav__list li .submenu li:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
}

/* menu is open */
.menu-is-open .header-nav {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-overflow-scrolling: touch;
}
.menu-is-open .header-nav .header-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  left: 0;
}

/* ------------------------------------------------------------------- 
 * ## mobile menu toggle 
 * ------------------------------------------------------------------- */
.header-menu-toggle {
  position: fixed;
  right: 110px;
  top: 70px;
  width: 48px;
  height: 45px;
  line-height: 45px;
  font-family: "metropolis-regular", sans-serif;
  font-size: 14px; /* Changed from 1.4rem to 14px */
  text-transform: uppercase;
  letter-spacing: 4px; /* Changed from 0.4rem to 4px */
  color: black;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.header-menu-toggle::before {
  display: inline-block;
  content: "Menu";
  height: 45px;
  left: auto;
  text-align: right;
  padding-left: 15px;
  padding-right: 10px;
  position: absolute;
  top: 0;
  right: 100%;
}
.header-menu-toggle.opaque {
  background-color: white;
}
.header-menu-toggle.opaque::before {
  display: none;
}
.header-menu-toggle:hover,
.header-menu-toggle:focus,
.header-menu-toggle:active {
  color: #cc147f;
}

.header-menu-icon {
  display: block;
  width: 26px;
  height: 2px;
  margin-top: -1px;
  right: auto;
  bottom: auto;
  background-color: black;
  position: absolute;
  left: 11px;
  top: 50%;
}
.header-menu-icon::before,
.header-menu-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
}
.header-menu-icon::before {
  top: -9px;
}
.header-menu-icon::after {
  bottom: -9px;
}

.site-footer {
  /* text-align: center; */
    /* width: 115%; */
    margin-top: 6px;
    /* margin-left: -15.5%; */
    background: #f5f5f5;
    color: #000;
    font-family: 'Verdana', sans-serif;
    border-top: 5px solid #d8d8d8;
}

/* Layout */
.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* Column headings */
.footer-col h4 {
  color: #000;
    margin-top: 30px; /* Changed from 3rem to 30px */
    font-size: 22px;
    margin-bottom: 15px;
    /* font-weight: 900; */
}

/* List reset */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

/* Items */
.footer-col ul li {
    margin-bottom: 10px;
}

/* LINKS WITH ANIMATION */
.footer-col ul li a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    padding-bottom: 3px;
    transition: color 0.25s ease;
}

/* Animated underline */
.footer-col ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: black;
    transition: width 0.25s ease;
}

.footer-col ul li a:hover {
    color: black;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 15px;
    font-size: 22px;
    padding-left: 0;
}

.footer-social li {
    list-style: none;
}

.footer-social a {
    color: #333;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.08);
    color: #e10079;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 1px;
    border-top: 1px solid #ccc;
}
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-icon {
            color: var(--primary-blue);
            font-size: 28px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: -0.5px;
        }
        
        .logo-subtitle {
            font-size: 12px;
            color: var(--gray-medium);
            font-weight: 500;
            margin-top: -5px;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--gray-dark);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary-blue);
        }
        
        .nav-links a.active {
            color: var(--primary-blue);
            font-weight: 600;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            padding: 60px 0 40px;
            margin-bottom: 40px;
            text-align: center;
            margin-top: 12%;
        }
        
        .page-header h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Sitemap Styles */
        .sitemap-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .sitemap-section {
            background-color: var(--white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .sitemap-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-blue);
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .section-icon i {
            font-size: 22px;
            color: var(--primary-blue);
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .sitemap-links {
            list-style-type: none;
        }
        
        .sitemap-links li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }
        
        .sitemap-links li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 600;
        }
        
        .sitemap-links a {
            text-decoration: none;
            color: var(--gray-dark);
            font-size: 16px;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }
        
        .sitemap-links a:hover {
            color: var(--primary-blue);
            padding-left: 5px;
        }
        
        /* Consultation Section */
        .consultation-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 60px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(19, 104, 206, 0.2);
        }
        
        .consultation-section h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .consultation-section p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .consultation-btn {
            display: inline-block;
            background-color: var(--accent-orange);
            color: var(--white);
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        
        .consultation-btn:hover {
            background-color: #ff5722;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
        }
        
        /* Footer */
        footer {
            background-color: var(--gray-dark);
            color: var(--white);
            padding: 0px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            flex: 0 0 30%;
        }
        
        .footer-links {
            flex: 0 0 65%;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--light-blue);
        }
        
        .footer-column ul {
            list-style-type: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--white);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaaaaa;
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .sitemap-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-links {
                flex: 0 0 100%;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .sitemap-container {
                grid-template-columns: 1fr;
            }
            
            .consultation-section {
                padding: 30px 20px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 30px;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
        }