
  /* --------------------------------------------
    COLOR VARIABLES
    -------------------------------------------- */
  :root {
  --color-bg: #030a14;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #ffffff;         /* For body text on dark BG */
  --color-accent: #7fdbff;       /* Hover & highlight accent */
  --color-sun-circle: #FFD700;   /* Sun icon circle */
  --color-sun-ray: #FFA500;      /* Sun icon rays */
  --color-button-grad-start: #cecece;
  --color-button-grad-end: #ffffff;
  --color-button-hover: #47bbf6;
  --color-text-dark: #001F3F;    /* Used inside “Get Started” */
  --shadow-rgba1: rgba(200, 200, 255, 0.15);
  --shadow-rgba2: rgba(200, 200, 255, 0.1);
  --shadow-header: 0 4px 12px var(--shadow-rgba1),
                    0 -2px 8px var(--shadow-rgba2);
  
  
  
  }
  
  /* --- LIGHT/DARK TOGGLE STYLES --- */
  #theme-toggle {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  order: 99; 
  }
  /* Position both icons absolutely */
  #theme-toggle .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
  }
  /* Default (Dark Mode): Show Sun, Hide Moon */
  #theme-toggle .sun {
  opacity: 1;
  transform: scale(1);
  }
  #theme-toggle .moon {
  opacity: 0;
  transform: scale(1);
  }
  /* Sun Icon Styling */
  #theme-toggle .sun circle {
  fill: var(--color-sun-circle) !important;
  }
  #theme-toggle .sun line {
  stroke: var(--color-sun-ray) !important;
  stroke-width: 2;
  stroke-linecap: round;
  }
  #header-section .site-header,
#header-section .site-header::before,
.site-header .get-started,
#header-section .site-header #theme-toggle,
.site-header .hamburger,
.site-header .logo {
    transition: all 0.2s ease-in-out;
}
  /* --------------------------------------------
    HEADER STYLES
    -------------------------------------------- */
  #header-section .site-header {
  width: 1320px; /* Default width */
  background-color: var(--color-bg);
  margin: 0 auto;
  border-radius: 15px;
  background-clip: padding-box;
  padding: 15px 20px;
  display: flex;
  align-items: center;
 
  justify-content: space-between;
  position: fixed;    /* Always fixed */
  top: 30px;          /* Start 30px from the top */
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.2s ease-in-out;
  z-index: 1000;
  height: 96px;
  box-shadow: var(--shadow-header);
  }
  #header-section .site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1320px; /* Matches header width */
  height: 100%;
  background-color: var(--color-bg);
  border-radius: 15px; /* Keeps rounded corners */
  z-index: -1;
  transition: width 0.2s ease-in-out;
  }
  /* When sticky, move header up to the top */
  #header-section .site-header.sticky {
  top: 0;
  box-shadow: none;
  }
  /* Expand the background evenly when sticky */
  #header-section .site-header.sticky::before {
  width: 100vw; /* Expands fully */
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
  box-shadow: var(--shadow-header);
  }
 
 
 
  #header-section .site-header {
    width: calc(100vw - 8vw);
    top: 20px;   
    transition: all 0.2s ease-in-out; /* Apply transition in both directions */
  }
  #header-section .site-header::before {
    width: calc(100vw - 8vw);
    transition: width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; /* Apply transition in both directions */
  }
/* dynamic header size */
  .site-header.sticky .get-started,
  #header-section .site-header.sticky #theme-toggle, 
  .site-header.sticky .logo{
  transition: transform 0.2s ease-in-out !important;
  will-change: transform !important;
  }
  /* declare */
  #header-section .site-header.sticky #theme-toggle {
    transform: translateX(calc(100% - -20%));
  }
  .site-header.sticky .get-started {
    transform: translateX(calc(100% - 90%));
    transition: transform 0.2s ease-in-out !important;
  }
  #header-section .site-header.sticky .hamburger {
    transform: translateX(calc(100% - 60%));
    transition: transform 0.2s ease-in-out !important;
  }
 
   .site-header.sticky .logo {
    transform: translateX(calc(-100% + 80%));
    transition: transform 0.2s ease-in-out !important;
}
 
@media (max-width: 1399px) {
  #header-section .site-header.sticky #theme-toggle {
    transform: translateX(calc(100% - -90%));
  }
  .site-header.sticky .get-started {
    transform: translateX(calc(100% - 60%)); }
   .site-header.sticky .logo {
    transform: translateX(calc(-100% + 68%));
}
}
@media (max-width: 1199px) {
  #header-section .site-header.sticky #theme-toggle {
    transform: translateX(calc(100% - -30%));
  }
   .site-header.sticky .logo {
    transform: translateX(calc(-100% + 78%));
}
}
    
 
  @media (max-width: 991px) {
  #header-section .site-header.sticky #theme-toggle {
    transform: translateX(calc(100% - 60%));
  }
  #header-section .site-header.sticky .hamburger {
    transform: translateX(calc(100% - 60%)) scale(1.35);
  }
 
   .site-header.sticky .logo {
    transform: translateX(calc(-100% + 86%));
}
}
  
@media (max-width: 575px) {
  #header-section .site-header.sticky .hamburger {
    transform: translateX(calc(100% - 60%)) scale(1.12);
  }
}
@media (max-width: 315px) {
  
  #header-section .site-header.sticky .hamburger {
    transform: translateX(calc(100% - 60%)) scale(0.8);
  }
 
}
  /*  end of dynamic positoning) */ 
  #header-section .logo img {
  height: 51px;
  flex-shrink: 0;
  filter:
    drop-shadow(0 0 8px hsla(190, 100%, 70%, 0.5))
    drop-shadow(0 0 10px hsla(190, 100%, 65%, 0.3))
    drop-shadow(0 0 18px hsla(190, 100%, 60%, 0.2));
  perspective: 800px;
  vertical-align: middle;
  position: relative;
  margin-left: 0%;
  animation: flipDark 0.6s ease-in-out;
  }
  /* The vertical flip animation for dark mode */
  @keyframes flipDark {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  50% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  } 
  
  /* --------------------------------------------
    NAVIGATION MENU
    -------------------------------------------- */
  #header-section nav {
  display: flex;
  border-radius: 0 0 8px 8px;
  justify-content: center;
  width: 100%;
  }
  #header-section .menu,
  #header-section .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  
  contain: layout;
  }
  #header-section .menu {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  contain: layout;
        gap:50px;
        vertical-align: middle;
  
  }
  #header-section .menu li {
  position: relative;
  white-space: nowrap;
  }
  #header-section .hamburger {
  display: none;
  }
  #header-section .menu a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 18px;
  font-family: 'oswald';
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 34px;
  padding-bottom: 34px;
  /* padding: 34px 24px; */
  
  display: flex;
  align-items: center;
  
  
  letter-spacing: .8px;
  }
  #header-section .menu a:hover {
  color: var(--color-accent);
  
  }
  
  /* Arrow indicators for Services & About */
  #header-section .menu li.services > a::after,
  #header-section .menu li.about > a::after {
  content: "▼";
  display: inline-block;
  font-size: 14px;
  margin-left: 10px;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.3s ease;
  transform-origin: 50% 55%; /* shift the pivot point down */
  }
  
  #header-section .menu li.active > a::after {
  transform: perspective(300px) rotateX(180deg);
  }
  
  
  
  /* Dropdown Menu */
  
  
  #header-section .dropdown-menu {
  position: absolute;
  top: 100%;
  
  /*  transform: translateX(-50%) scaleY(0); */
  transform-origin: top center;
  background: var(--color-bg);
  /*border-radius: 0 0 8px 8px;*/
  width: 220px;
  
  overflow: hidden;
  max-height: 0;
  opacity: 1;
  
  
  will-change: transform;
  transition: max-height 0.12s ease-out, 
  transform 0.3s ease-out;
  
  
  
  
  
  
  
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  border-bottom: 2px solid var(--color-white); 
  /*margin-left: 60px;*/
  margin-top: -.3%;
  box-shadow: inset 0 4px 12px var(--shadow-rgba1), 
  inset 0 -2px 8px var(--shadow-rgba2);
  /* clip-path: inset(0 8px -8px 8px);*/
  
  box-sizing: border-box;  
  
  position: absolute;
  top: 100%;
  left: 0; /* Align the left edge with the parent's left edge */
  transform: scaleY(0); /* Remove the horizontal translation */
  transform-origin: top left; /* Set the pivot to the top left */
  
  max-height: 0;                 /* or 0 if you’re also using max-height */
  opacity: 0;                    /* start invisible */
  transition: transform 0.3s ease-out, 
    opacity 0.3s ease-out, 
    max-height 0.3s ease-out; 
    margin-left: -4%;
  }
  
  /* text area itself box round design  cotainer. not the white bg color somehow */
  #header-section .dropdown-menu li {
  
  
  opacity: 0; /* Start hidden */
  transition: opacity 0.15s ease-out; /* Faster fade-in */
  width: 100%;
  
  }
  
  /* Show dropdown only when active  SERVICES MENU PADDING*/ 
  #header-section .menu li.active .dropdown-menu {
  max-height: 500px;
  opacity: 1;
  /* transform: translateX(-50%) scaleY(1);*/
  transform: scaleY(1);  
  overflow: visible;
  padding-left: 0px;
  }
  
  /* Fade in the text inside when the dropdown becomes visible */
  #header-section .menu li.active .dropdown-menu li {
  opacity: 1;
  
  }
  
  /*LEFT OFF REMOVE PADDING SHIFT/ rhwn mobilw? lower font*/
  
  
  
  
  
  /*additional outer a links container  padding */ 
  
  #header-section .dropdown-menu a {
  text-decoration: none;
  color: var(--color-white);
  display: block;
  
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 18px;
  
  padding-left: 8px ;       
  
  }
  
  #header-section .dropdown-menu a:hover {
  color: var(--color-bg);
  
  filter: drop-shadow(0 0 30px rgba(127, 219, 255, 0.5));
  z-index: 999;
  background: var(--color-white)
  
  }
  
  
  /* --------------------------------------------
    GET STARTED BUTTON
    -------------------------------------------- */
  #header-section .get-started {
  background: linear-gradient(
    45deg,
    var(--color-button-grad-start) 0%,
    var(--color-button-grad-end) 100%
  );
  color: var(--color-black);
  font-size: 17px;
  font-weight: 700;
  font-family: 'oswald';
  padding: 12px 24px;
  border-radius: 25px;
  
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(127, 219, 255, 0.5));
  right: 2%;
  width: 200px;
  height: 52px;
  }
  #header-section .get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--color-button-hover);
  opacity: 1;
  transition: width 0.2s ease-in-out;
  z-index: 0;
  }
  #header-section .get-started:hover::before {
  width: 100%;
  }
  #header-section .get-started span {
  position: relative;
  z-index: 1;
  color: var(--color-text-dark);
  }
  
  
  
  /* --------------------------------------------
    HAMBURGER MENU
    -------------------------------------------- */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* --------------------------------------------
    HAMBURGER MENU
    -------------------------------------------- */
  #header-section .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: filter 0.3s ease-in-out, transform 0.3s;
  filter: drop-shadow(0 0 20px rgba(127, 219, 255, 0.8));
  }
  #header-section .hamburger .bar {
  width: 100%;
  height: 4px;
  background-color: var(--color-white);
  transition: 0.2s;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 15px rgba(127, 219, 255, 0.8));
  }
  #header-section .hamburger.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(405deg);
  }
  #header-section .hamburger.active .bar:nth-child(2) {
  opacity: 0;
  }
  #header-section .hamburger.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-405deg);
  }
  
  /* --------------------------------------------
    MEDIA QUERIES – ADJUSTMENTS
    -------------------------------------------- */
  @media (max-width: 1399px) {
  #header-section .logo img {
    height: 46px;
    flex-shrink: 0;
  }
  #header-section .site-header {
    height: 90px;
  }
 
  
  #header-section .get-started {
    background: var(--color-white);
    color: var(--color-black);
    font-size: 16px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.4s ease-in-out, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    text-align: center;
    height: 46px;
    justify-content: center;
    margin-right: 15px;
  }
  #header-section .dropdown-menu a {
    font-size: 16px;
  }
  #header-section .dropdown-menu {
    width: 126px;
  }
  #header-section .menu li.services > a::after,
  #header-section .menu li.about > a::after {
    font-size: 13px;
    margin-left: 10px;
    margin-bottom: 1px;
  }
  #theme-toggle {
    width: 37px;
    height: 37px;
  }
  #theme-toggle .icon {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  
  
  #header-section .menu {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  contain: layout;
        gap: 50px;
        vertical-align: middle;
  }
  
  
  
  
  
  
  #header-section .get-started {
  background: linear-gradient(
    45deg,
    var(--color-button-grad-start) 0%,
    var(--color-button-grad-end) 100%
  );
  color: var(--color-black);
  font-size: 17px;
  font-weight: 700;
  font-family: 'oswald';
  padding: 12px 24px;
  border-radius: 25px;
  
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(127, 219, 255, 0.5));
  right: 1%;
  width: 140px;
  height: 44px;
  }
  
  
  
  #header-section .menu a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 17px;
  font-family: 'oswald';
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 30px;
  /* padding: 34px 24px; */
  
  display: flex;
  align-items: center;
  
  
  letter-spacing: .8px;
  }
  #header-section .dropdown-menu {
  position: absolute;
  top: 100%;
  
  /*  transform: translateX(-50%) scaleY(0); */
 
  width: 180px;
  
  border-bottom: 2px solid var(--color-white); 
  /*margin-left: 60px;*/
  margin-top: 2%;
  box-shadow: inset 0 4px 12px var(--shadow-rgba1), 
  inset 0 -2px 8px var(--shadow-rgba2);
  /* clip-path: inset(0 8px -8px 8px);*/
  
  box-sizing: border-box;  
  
  position: absolute;
  top: 100%;
  left: 0; /* Align the left edge with the parent's left edge */
  transform: scaleY(0); /* Remove the horizontal translation */
  transform-origin: top left; /* Set the pivot to the top left */
  
  max-height: 0;                 /* or 0 if you’re also using max-height */
  opacity: 0;                    /* start invisible */
  transition: transform 0.3s ease-out, 
    opacity 0.3s ease-out, 
    max-height 0.3s ease-out; 
    margin-left: -4%;
  }
  
  
  
  #header-section .dropdown-menu a {
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 18px;
  
  padding-left: 8px ;       
  
  }
  
  
  }
  @media (max-width: 1199px) {
  #header-section .logo img {
    height: 44px;
    transition: height 0.3s;
  }
  #header-section .menu a {
    font-size: 15px;
  }
  #header-section .get-started {
    display: none;
  }
  #header-section .dropdown-menu a {
    font-size: 16px;
  }
  #header-section .dropdown-menu {
    width: 124px;
  }
  #header-section .menu li.services > a::after,
  #header-section .menu li.about > a::after {
    font-size: 13px;
    margin-left: 10px;
    margin-bottom: 1px;
  }
  #header-section .site-header {
    height: 85px;
  }
  #theme-toggle {
    width: 30px;
    height: 30px;
  }
  #theme-toggle .icon {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  #header-section .menu a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 16px;
  font-family: 'oswald';
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 30px;
  /* padding: 34px 24px; */
  
  display: flex;
  align-items: center;
  
  
  letter-spacing: .8px;
  }
  #header-section .dropdown-menu {
  position: absolute;
  top: 100%;
  
  /*  transform: translateX(-50%) scaleY(0); */
  width: 180px;
  margin-top: -0.1%;
    margin-left: -2%;
  }
  
  
  
  #header-section .dropdown-menu a {
  font-size: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 8px ;       
  
  }
  #header-section .menu {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  contain: layout;
        gap: 50px;
        vertical-align: middle;
  }
  
  
  
  }
  
@media (max-width: 991px) {
  /* Header and Logo adjustments */
  #header-section .site-header {
    height: 85px;
  }
  #header-section .get-started {
    display: none;
  }
  #header-section .logo img {
    height: 48px;
  }
  /* Menu container adjustments for mobile */
  #header-section .menu {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 0;
    contain: layout;
    gap: 5px;
    vertical-align: middle;
  }
  /* Mobile navigation styling */
  #header-section nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    flex-direction: column;
  
    align-items: center;
    max-height: 0;
    overflow: hidden; /* Hide the overflowing content */
    opacity: 0;      /* Make it transparent initially */
    transition: max-height 0.25s ease-out;
  }
 
  #header-section .menu {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }
  #header-section .hamburger {
    display: flex;
    width: 30px;
    height: 30px;
    transform: scale(1.35);
    order: 2;
  }
  #header-section .menu a {
    font-size: 20px;
    padding: 10px 0;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  #header-section .dropdown-menu {
    width: calc(100vw - 58vw);
    border-top: 2px solid var(--color-accent);
    border-bottom: 6px solid var(--color-white);
  }
 
  #header-section nav.active {
    display: flex;
    opacity: 1;
    max-height: 900px;
    width: 740px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 15px 15px;
 
    box-shadow: inset 0 10px 25px var(--shadow-rgba1), 
            inset 0 -10px 25px var(--shadow-rgba2);
   width: calc(100vw - 18vw);
  }
  #header-section .menu li .dropdown-menu {
    position: static;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    padding: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  #header-section .menu li.active .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    padding: 10px 0;
  }
  /* Flicker animation for dropdown menus */
  @keyframes flicker {
    0% {
      box-shadow: inset 0 0 20px rgba(127, 219, 255, 0.2),
                  inset 0 0 50px rgba(80, 120, 160, 0.25),
                  0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
      box-shadow: inset 0 0 30px rgba(127, 219, 255, 0.25),
                  inset 0 0 70px rgba(80, 120, 160, 0.3),
                  0 0 12px rgba(255, 255, 255, 0.15);
    }
    100% {
      box-shadow: inset 0 0 20px rgba(127, 219, 255, 0.2),
                  inset 0 0 50px rgba(80, 120, 160, 0.25),
                  0 0 10px rgba(255, 255, 255, 0.1);
    }
  }
  #header-section .dropdown-menu {
    border: 1px solid var(--color-white);
    border-radius: 12px;
    animation: flicker 4s infinite alternate ease-in-out;
  }
  #header-section .menu a:hover {
    color: #fafbfb;
    text-shadow: none;
  }
  #theme-toggle {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
    order: 1;
    left: 26%;
  }
  #theme-toggle .icon {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  #header-section .menu li.services > a::after,
  #header-section .menu li.about > a::after {
    content: "▼";
    font-size: 12px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    margin-bottom: 0px;
  }
  /* Specific left margin for About and Services menu items */
  #header-section .menu-container .menu li.services > a {
    margin-left: 2.8%;
  }
  #header-section .menu-container .menu li.about > a {
    margin-left: 1.5%;
  }
  /* Dropdown hover state (preserving original values) */
  #header-section .dropdown-menu a:hover {
    color: none;
    filter: none;
    z-index: 999;
    background: none;
  }
  #header-section .dropdown-menu a {
    color: none;
    filter: none;
    z-index: 999;
    background: none;
    
  }
  
}
  @media (max-width: 767px) {
  #header-section .hamburger {
    width: 30px;
    height: 30px;
    
    margin: 0;
  }
 
  #header-section .hamburger .bar {
    height: 3px;
    margin: 3px 0;
  }
  #header-section .site-header {
    height: 80px;
  }
  #header-section .menu a {
    font-size: 18px;
  }
  #header-section .logo img {
    height: 44px;
    margin: 0;
  }
  #theme-toggle {
    width: 28px;
    height: 28px;
    left: 19%;
  }
 
 /* Menu layout adjustments on mobile */
 #header-section .menu {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  #header-section .hamburger {
    display: flex;
    width: 30px;
    height: 30px;
    transform: scale(1.35);
    order: 2;
  }
  #header-section .menu a {
    font-size: 16px;
    padding: 5px 0;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
 
  #header-section nav.active {
   
   
   
    box-shadow: inset 0 10px 18px var(--shadow-rgba1), 
            inset 0 -10px 18px var(--shadow-rgba2);
  }
 /* Specific left margin for About and Services menu items */
 #header-section .menu-container .menu li.services > a {
    margin-left: 2%;
  }
  #header-section .menu-container .menu li.about > a {
    margin-left: 0.5%;
  }
  #header-section .menu li.services > a::after,
  #header-section .menu li.about > a::after {
  content: "▼";
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.3s ease;
  transform-origin: 45% 55%; /* shift the pivot point down */
  }
  
  }
  @media (max-width: 575px) {
  #header-section .logo img {
    height: 40px;
  }
  #header-section .site-header {
    height: 73px;
  }
  #header-section .hamburger {
    width: 30px;
    height: 30px;
    transform: scale(1.12);
  }
  #header-section .menu a {
    font-size: 13px;
    padding: 10px 8px;
  }
  #header-section .menu a {
    font-size: 16px;
    font-weight: 700;
  }
  #header-section nav.active {
  
    border-radius: 0 0 15px 15px;
    border-top: 0px solid rgba(127, 219, 255, 0.4);
    border-bottom: 0px solid rgba(127, 219, 255, 0.4);
    box-shadow: inset 0 5px 20px -10px rgba(127, 219, 255, 0.4),
      inset 0 -5px 20px -10px rgba(127, 219, 255, 0.4);
  }
  #header-section .dropdown-menu {
  
    border: 1px solid var(--color-white);
    border-radius: 12px;
    animation: flicker 4s infinite alternate ease-in-out;
  }
 
  #theme-toggle {
    width: 25px;
    height: 25px;
    left: 11%;
  }
 /* Specific left margin for About and Services menu items */
 #header-section .menu-container .menu li.services > a {
    margin-left: 2%;
  }
  #header-section .menu-container .menu li.about > a {
    margin-left: 0.5%;
  }
  #header-section .menu li.services > a::after,
  #header-section .menu li.about > a::after {
  content: "▼";
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.3s ease;
  transform-origin: 45% 55%; /* shift the pivot point down */
  }
  
  }
  @media (max-width: 365px) {
  #header-section .logo img {
    filter: drop-shadow(0 0 10px var(--color-accent));
    height: 34px;
  }
  #header-section .site-header {
    height: 65px;
  }
  #header-section .hamburger {
    width: 28px;
    height: 28px;
    transform: scale(1);
  }
  #header-section .menu a {
    font-size: 13px;
    padding: 10px 8px;
  }
  #header-section .get-started {
    font-size: 13px;
    padding: 6px 10px;
  }
  #header-section .menu a {
    font-size: 14px;
    font-weight: 700;
  }
  #header-section .menu li.services > a::after,
  #header-section .menu li.about > a::after {
    font-size: 12px;
    margin-left: 8px;
    margin-bottom: 1px;
  }
  #theme-toggle {
    width: 22px;
    height: 22px;
    left: 6%;
  }
  }
  @media (max-width: 315px) {
    #theme-toggle {
        width: 18px;
        height: 18px;
        left: 0%;
    }
 
  #header-section .logo img {
    height: 28px;
    left: -4px;
    transition: height 0.3s;
  }
  #header-section .site-header {
    height: 58px;
  }
  #header-section .hamburger {
    width: 28px;
    height: 28px;
    transform: scale(0.8);
  }
  
}
  
  @media (min-width: 1800px){
#header-section .menu {
    gap:100px;
    
}
#header-section .logo img {
    height: 60px;
    transition: height 0.3s;
  }
  #header-section .menu a {
    font-size: 24px;
  }
 
  #header-section .dropdown-menu a {
    font-size: 22px;
  }
  #header-section .dropdown-menu {
    width: 124px;
  }
  #header-section .menu li.services > a::after,
  #header-section .menu li.about > a::after {
    font-size: 18px;
    margin-left: 10px;
    margin-bottom: 1px;
  }
  #header-section .site-header {
    height: 110px;
  }
  #theme-toggle {
    width: 30px;
    height: 30px;
  }
  #theme-toggle .icon {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  #header-section .dropdown-menu {
  position: absolute;
  top: 100%;
  
  /*  transform: translateX(-50%) scaleY(0); */
  width: 180px;
  margin-top: -0.5%;
    margin-left: -2%;
  }
  
  
  
  #header-section .dropdown-menu a {
  font-size: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 8px ;       
  
  }
  #header-section .menu {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  contain: layout;
        gap: 80px;
        vertical-align: middle;
  }
  
  
  #header-section .get-started {
  background: linear-gradient(
    45deg,
    var(--color-button-grad-start) 0%,
    var(--color-button-grad-end) 100%
  );
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  font-family: 'oswald';
  padding: 12px 24px;
  border-radius: 25px;
  
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(127, 219, 255, 0.5));
  right: 2%;
  width: 230px;
  height: 52px;
  }
  #theme-toggle {
    width: 60px;
    height: 60px;
  }
}
