/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  /* Header styling */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    padding: 10px 0;
  }
  
  /* Default background (not scrolled) */
  header.default-bg {
    background-color: transparent;
  }
  
  /* Background when scrolled */
  header.scrolled {
    background-color: #0b0c10;
  }
  
  /* Container for header content */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Logo styles */
  .logo img {
    height: 22px;
  }
  
  /* Desktop Navigation */
  .desktop-nav {
    display: flex;
    align-items: center;
  }
  
  /* Link colors change based on header state */
  header.default-bg .desktop-nav ul li a {
    color: white;
    position: relative;
  }
  header.default-bg .desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #66fcf1;
    transition: width 0.3s ease;
  }
  header.default-bg .desktop-nav ul li a:hover::after{
    width: 100%;
  }

  
  header.default-bg .quote-btn{
    color: black;
    font-weight: bold;
  }
  
  header.scrolled .desktop-nav ul li a,
  header.scrolled .quote-btn {
    color: #fff;
  }

  header.scrolled .quote-btn {
    color: black;
    font-weight: bold;
  }
  
  .desktop-nav ul {
    list-style: none;
    display: flex;
  }
  
  .desktop-nav ul li {
    margin: 0 15px;
  }
  
  .desktop-nav ul li a {
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .desktop-nav ul li a:hover {
    color: #666;
  }
  
  .quote-btn {
    background-color: #66fcf1;
    padding: 8px 30px;
    text-decoration: none;
    border-radius: 20px;
    margin-left: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .quote-btn:hover {
    background-color: #e65c00;
  }
  
  /* Mobile Navigation */
  .mobile-nav {
    display: none;
    align-items: center;
  }
  
  .mobile-nav .call-icon,
  .mobile-nav .hamburger-icon {
font-size: 22px;
    margin-left: 15px;
    text-decoration: none;
    color: white;
  }
  
  /* Hamburger Icon Styles */
  .hamburger {
    position: relative;
    width: 30px;
    height: 24px;
    cursor: pointer;
  }
  
  /* Common bar style */
  .hamburger .bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  /* Position bars */
  .hamburger .top {
    top: 0;
  }
  .hamburger .middle {
    top: 10px;
  }
  .hamburger .bottom {
    bottom: 0;
  }
  
  /* Circle for final state (initially hidden) */
  .hamburger .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  /* Open state animation */
  .hamburger.open .top {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.open .bottom {
    transform: translateY(-10px) rotate(-45deg);
  }
  /* Middle bar “breaks” by fading and scaling down */
  .hamburger.open .middle {
    opacity: 0;
    transform: scale(0);
  }
  /* Circle scales in to form the border around the cross */
  .hamburger.open .circle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  
  /* Sidebar styles (mobile) */
  .sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #0b0c10;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 60px;
  }
  
  .sidebar.open {
    right: 0;
  }
  
  .sidebar ul {
    list-style: none;
  }
  
  .sidebar ul li {
    border-bottom: 1px solid #555;
  }
  
  .sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .sidebar ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }
  
  .sidebar ul li a:hover {
    background-color: #555;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
    .mobile-nav {
      display: flex;
      gap: 15px;
    }
  }
  
  /* Example page content styling */
  main {
    margin-top: 80px;
    padding: 20px;
  }
  