/* ======================
       DESKTOP NAVBAR
    ====================== */
.desktop-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.desktop-nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.desktop-nav .nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.desktop-nav .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}
.desktop-nav .nav-links li {
  position: relative;
}
.desktop-nav .nav-links a {
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  transition: color 0.3s ease;
}
.desktop-nav .nav-links a:hover {
  color: #faa71a;
}
.desktop-nav .nav-links .dropdown:hover > .dropdown-menu {
  display: block;
}
.desktop-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.desktop-nav .dropdown-menu a {
  padding: 10px 15px;
  color: #333;
  border-bottom: 1px solid #f1f1f1;
}
.desktop-nav .dropdown-menu a:hover {
  background: #f8f9fa;
  color: #faa71a;
}

/* Submenu inside dropdown */
.desktop-nav .dropdown-submenu {
  position: relative;
}
.desktop-nav .dropdown-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.desktop-nav .dropdown-submenu:hover > .dropdown-menu {
  display: block;
  left: 100%;
  top: 0;
}

/* Blog Link Styles */
.blog-link a {
  font-size: 16px;
  margin-left: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #faa71a;
}
.blog-link a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .blog-link a {
    font-size: 18px;
    margin-left: -100px;
  }
}
/* CTA Button Styles */
.nav-cta {
  background: linear-gradient(135deg, #faa71a, #f57c00);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #f57c00, #faa71a);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.nav-cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ======================
       MOBILE HEADER
    ====================== */
.mobile-header {
  display: none;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mobile-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-toggle {
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
   padding: 5px 10px;
  margin-left: auto;
}
.mobile-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mobile-blog-link a {
  font-weight: 600;
  color: #faa71a;
  text-decoration: none;
  margin-left: 20px; /* spacing from logo */
}
.mobile-blog-link a:hover{
  text-decoration: underline;
}

/* Optional: adjust for smaller screens */
@media (max-width: 480px) {
  .mobile-logo img {
    width: 150px; /* smaller logo on very small screens */
  }

  .mobile-blog-link a {
    font-size: 0.9rem;
    margin-left: 10px;
  }

  .mobile-toggle {
    font-size: 1.3rem;
  }
}

/* ======================
       MOBILE NAV OVERLAY
    ====================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: left 0.3s ease-in-out;
  z-index: 2000;
  overflow-y: auto;
  padding: 20px;
}
.mobile-nav-overlay.active {
  left: 0;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.mobile-nav-close {
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}
.mobile-back-btn {
  display: none;
  margin: 10px 0;
  cursor: pointer;
  padding: 10px;
  font-weight: 600;
  color: black;
  /* color: #faa71a; */
}

.mobile-menu-level {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-level li {
  border-bottom: 1px solid #f1f1f1;
}
.mobile-menu-level li a {
  display: block;
  padding: 12px 10px;
  text-decoration: none;
  font-size: 16px;
  color: #333;
}
.mobile-menu-level li a:hover {
  color: #faa71a;
}

.mobile-cta .nav-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(135deg, #faa71a, #f57c00);
  color: #fff !important;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(250, 167, 26, 0.25);
}

/* ======================
       RESPONSIVE RULES
    ====================== */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-header {
    display: block;
  }
}

/* Mobile Blog Link Adjustments */
@media (max-width: 991px) {
  .blog-link a {
    font-size: 18px;
    margin-left: -100px;
  }
}

/* Add arrow for desktop dropdowns */
.desktop-nav .nav-links li.dropdown > a::after,
.desktop-nav .nav-links li.dropdown-submenu > a::after {
  content: " \25BC"; /* Unicode downward filled arrow ▼ */
  margin-left: 6px;
  font-size: 12px;
}

.desktop-nav .dropdown-submenu > a::after {
  content: " \25BA";
  margin-left: 10px;
  font-size: 12px;
}
/* Arrow for mobile menu items with submenu */
.mobile-menu-level li.has-submenu > a::after {
  content: " \25BC";
  float: right;
  font-size: 14px;
  color: #faa71a;
}
/* Arrow for mobile items with 1st level submenu */
.mobile-menu-level li.has-submenu > a::after {
  content: " \25BA";
  float: right;
  font-size: 14px;
  color: #faa71a;
}

/* Arrow for deeper submenu (nested inside Use Case) */
.mobile-menu-level li.has-submenu-nested > a::after {
  content: " \25BA";
  float: right;
  font-size: 14px;
  color: #666;
}

/* ======================
   FOOTER STYLES
====================== */
#footer {
  font-family: "Open Sans", sans-serif;
}

.footer-dropdown-btn {
  font-size: 12px;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.footer-dropdown-btn:focus,
.footer-dropdown-btn:active {
  box-shadow: none !important;
  outline: none !important;
}

.footer-chevron {
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.footer-dropdown-btn[aria-expanded="true"] .footer-chevron {
  transform: rotate(180deg);
}

.footer-dropdown-btn:hover {
  color: #f6b93b !important;
}

/* Link hover effects */
.hover-opacity-100:hover {
  opacity: 1 !important;
  color: #f6b93b !important;
}

/* Social Media Styles */
.social-links {
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  border: 1px solid #ddd;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-link[href*="facebook"]:hover {
  background-color: #1877f2;
  color: white;
}

.social-link[href*="twitter"]:hover {
  background-color: #1da1f2;
  color: white;
}

.social-link[href*="linkedin"]:hover {
  background-color: #0077b5;
  color: white;
}

.social-link[href*="instagram"]:hover {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: white;
}

.social-link[href*="pinterest"]:hover {
  background-color: #bd081c;
  color: white;
}

.social-link[href*="youtube"]:hover {
  background-color: #ff0000;
  color: white;
}
