:root {
  /* Navigation Colors */
  --navigation-primary: #052323; /* Dark teal */
  --navigation-secondary: #1acc8d; /* Light green */
  --navigation-accent: #2cc197; /* Accent green */
  --navigation-hover: #d1d1d1; /* Hover effect color */
  --navigation-background: #ffffff; /* White */
  --navigation-background-dark: #082b2b74; /* Dark background for dropdowns */
  
  /* Text Colors */
  --navigation-text-color: #ffffff; /* White text */
  --navigation-text-dark: #444444; /* Dark text color */
  --navigation-text-light: rgba(255, 255, 255, 0.8); /* Light text for dropdown items */
  
  /* Borders */
  --navigation-border-color: #d1d1d1; /* Border color */
  --navigation-active-border-color: rgb(0, 213, 255); /* Active link border */
  
  /* Button Colors */
  --navigation-button-background: #052323; /* Button background */
  --navigation-button-hover-background: transparent; /* Hover background */
  --navigation-button-hover-text: rgb(210, 211, 217); /* Hover button text */
  --navigation-button-border: 2px solid transparent; /* Button border */
  --navigation-button-border-hover: #d1d1d1; /* Hover button border color */
  
  /* Dropdown Colors */
  --navigation-dropdown-background: rgba(255, 255, 255, 0.38); /* Dropdown background */
  --navigation-dropdown-item-hover-background: #082b2b2f; /* Dropdown item hover */
  
  /* Mobile Styles */
  --navigation-mobile-nav-background: #052323; /* Background for mobile navigation */
}

/* General Reset */
.custom-nav-container ul li {
  list-style: none;
}

/* Sticky header */
#header {
  transition: transform 1s ease-in-out !important;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #052323 !important;
  transition: transform 1.2s ease-in-out !important;
}

/* Active link style */
.custom-nav-link.active {
  color: var(--navigation-accent) !important;
  font-weight: bold;
  border-bottom: 1px solid var(--navigation-active-border-color);
}

/* Prevent hover effect on active links */
.custom-nav-link.active:hover::after {
  display: none;
  width: 0;
  background: transparent;
}

/* Scroll effect for header */
.header.scrolled {
  background-color: var(--navigation-primary);
  transition: background-color 0.3s ease;
}

/* Main Navigation Container */
.custom-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand/Logo */
.nav-brand {
  width: 35%;
  display: flex;
  align-items: center;
}

.nav-brand img {
  width: 90%;
  transition: transform 0.3s ease;
}

.nav-brand img:hover {
  transform: scale(1.05);
}

/* Navigation Menu */
.custom-nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  padding-top: 1%;
}

.custom-nav-item {
  position: relative;
}

.custom-nav-link {
  color: var(--navigation-text-color) !important;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.custom-nav-link::after {
  content: '';
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 0;
  height: 0.5px !important;
  background: var(--navigation-border-color) !important;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.custom-nav-link:hover::after {
  width: 100% !important;
}

/* Dropdown Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navigation-dropdown-background);
  backdrop-filter: blur(10px);
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dropdown-menu li {
  display: flex;
  align-items: center;
}

.dropdown-menu li img {
  padding-right: 10px;
  width: 30px;
  height: 20px;
}

.dropdown-menu li h2 {
  font-size: 15px;
  color: var(--navigation-text-color);
}

.custom-dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--navigation-text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-dropdown-item:hover {
  background: var(--navigation-dropdown-item-hover-background);
  transform: translateX(5px);
  color: var(--navigation-secondary);
}

/* Login Button */
.nav-button {
  background: var(--navigation-primary);
  color: var(--navigation-text-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-button:hover {
  background: transparent;
  color: rgb(210, 211, 217);
  border-color: var(--navigation-border-color);
}

/* Mobile Menu Toggle */
.custom-nav-toggle,
.custom-nav-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.custom-nav-toggle:hover,
.custom-nav-close:hover {
  transform: scale(1.1);
}

/* Add slide animations for dropdown items */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show dropdown when active class is present */
.dropdown-menu.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background: var(--navigation-background-dark);
  margin-top: 1rem;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.dropdown-menu.show .custom-dropdown-item {
  animation: slideDown 0.3s ease forwards;
  opacity: 0;
}

.dropdown-menu.show .custom-dropdown-item:nth-child(1) {
  animation-delay: 0.1s;
}

.dropdown-menu.show .custom-dropdown-item:nth-child(2) {
  animation-delay: 0.2s;
}

.dropdown-menu.show .custom-dropdown-item:nth-child(3) {
  animation-delay: 0.3s;
}

/* Mobile Styles */
@media (min-width: 1112px) {
  .custom-nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
  }

  .custom-nav-link:hover {
    color: var(--navigation-accent) !important;
    transition: all 0.5s ease;
  }

  .custom-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--navigation-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 250px;
  }

  .custom-dropdown-item:hover {
    background: var(--navigation-background-dark);
    transform: translateX(5px);
  }

  .custom-nav-link .dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
}

@media (max-width: 1111px) {
  .dropdown-menu.show {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 1rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
  }

  .custom-nav-toggle {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 2rem;
    z-index: 1001;
    color: var(--navigation-text-color);
  }

  .custom-nav-close {
    display: block;
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    font-size: 2rem;
    color: var(--navigation-text-color);
    transition: transform 0.3s ease;
  }

  .custom-nav-close:hover {
    transform: scale(1.1) !important;
    transition: transform 0.5s ease;
    color: rgb(150, 162, 243);
  }

  .custom-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navigation-primary);
    background-image: url(/assets/img/demo-hosting-mobile-menu-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    padding-top: 5rem;
    transform: translateY(-100%);
    transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    visibility: hidden;
    overflow-y: auto;
  }

  .custom-nav-menu.active {
    transform: translateY(0);
    visibility: visible;
  }

  .custom-nav-menu.closing {
    transform: translateY(-100%);
    opacity: 1;
    visibility: visible;
  }

  .custom-nav-item {
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.256);
  }

  .custom-nav-link {
    width: 100%;
    color: var(--navigation-text-color);
    font-size: 1.2rem;
  }

  .custom-dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .custom-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .custom-nav-menu.active .custom-nav-item {
    animation: slideIn 0.5s forwards;
    opacity: 0;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .custom-nav-menu.active .custom-nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .custom-nav-menu.active .custom-nav-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .custom-nav-menu.active .custom-nav-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .custom-nav-menu.active .custom-nav-item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .custom-nav-menu.active .custom-nav-item:nth-child(5) {
    animation-delay: 0.5s;
  }

  /* Brand/Logo */
  .nav-brand {
    width: 75%;
    display: flex;
    align-items: center;
  }

  .nav-brand img {
    width: 95%;
    transition: transform 0.3s ease;
  }

  .nav-button {
    text-align: center;
    padding: 0.75rem;
    font-size: 1.2rem;
  }

  .custom-nav-link.active {
    border-bottom: none;
  }
}

/* Fonts */
.COLOR-PALLETE-FASTSOCIALADS {
  color: #5cac94;
  color: #89d094;
  color: #abeb94;
  color: #94dc94;
  color: #368d94;
  color: #9cdc94;
  color: #79c494;
  color: #74bc94;
  color: #449c94;
  color: #449494;
}

.COLOR-PALLETE-FASTSOCIALADSNEw {
  color: #075056;
  color: #ff5b04;
  color: #f4d47c;
  color: #d3dbdd;
  color: #fdf6e3;
  color: #233038;
}

.COLOR-PALLETE-FASTSOCIALADSNEw {
  color: #00a1e0;
  color: #6da0e1;
  color: #5b62b3;
  color: #fff5fc;
  color: #dec2db;
  color: #ede2e0;
}

.COLOR-PALLETE-FASTSOCIALADSNEw {
  color: #04634d;
  /* Cta color */
  color: #052323;
  /* bg color */
  color: #2cc197;
  /* Heading color */
  color: #178e58;
  /* SubHeading color */
  color: #d1d1d1;
  /* content color */
  color: #031b1b;
  /* Navigation color */
}

:root {
  --primary-color: #F59E42;
  /* Vibrant Orange */
  --secondary-color: #009688;
  /* Teal */
  --accent-color: #FF4081;
  /* Bold Pink */
  --text-color-heading: #333333;
  /* Dark Gray */
  --text-color-body: #666666;
  /* Medium Gray */
  --background-color: #F4F4F4;
  /* Light Gray */
  --navigation-color: #222222;
  /* Dark Charcoal */
  --cta-button-color: #F59E42;
  /* Vibrant Orange (Same as Primary) */
} 