:root {
      --clr-pri: #f47a1f; /* Your primary color */
    }
    
    /* Header Styles */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      background: transparent !important;
      transition: background-color 0.3s ease-in;
    }
    
    /* Container adjustments */
    .navbar > .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    /* Logo on left */
    .navbar-brand {
      font-size: 24px;
      color: white !important;
      margin-right: 0;
      padding: 10px 0;
      font-weight: 700;
    }
    
    .navbar-brand span {
      color: var(--clr-pri);
    }
    
    /* Navigation items on right */
    .navbar-collapse {
      flex-grow: 0;
    }
    
    .navbar-nav {
      margin-left: auto !important;
      display: flex;
      align-items: center;
    }
    
    .nav-item {
      margin-left: 15px;
    }
    
    .nav-link {
      color: white !important;
      padding: 8px 15px !important;
      position: relative;
      transition: color 0.3s ease;
      font-weight: 500;
    }
    
    /* Dropdown menu styling - MODIFIED FOR BLACK TEXT */
    .dropdown-menu {
      background: white !important; /* Changed to white background */
      border: none;
      border-radius: 4px;
      right: 0;
      left: auto;
      margin-top: 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .dropdown-item {
      color: black !important; /* Changed to black text */
      padding: 10px 20px;
      white-space: nowrap;
      transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
      background: var(--clr-pri);
      color: white !important; /* White text on hover */
    }
    
    .dropdown-divider {
      border-color: rgba(0,0,0,0.1);
    }
    
    /* Mobile menu button */
    .navbar-toggler {
      border: none;
      color: white !important;
      order: 2;
      margin-left: auto;
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Hover effects */
    .nav-link:hover {
      color: var(--clr-pri) !important;
    }
    
    /* Mobile menu adjustments */
    @media (max-width: 991px) {
      .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
      }
      
      .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0 !important;
      }
      
      .nav-item {
        margin: 10px 0;
        width: 100%;
      }
      
      .dropdown-menu {
        position: static !important;
        background: white !important; /* White background on mobile */
        margin-left: 20px;
        width: calc(100% - 40px);
        border: none;
      }
      
      .dropdown-item {
        color: black !important; /* Black text on mobile */
      }
      
      .dropdown-toggle::after {
        content: "+";
        float: right;
        margin-left: 5px;
        color: white;
      }
      
      .dropdown-toggle[aria-expanded="true"]::after {
        content: "-";
      }
    }


/* Footer Styles */
footer.ftco-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 30px;
}

footer.ftco-footer,
footer.ftco-footer * {
  color: #fff !important;
}

footer.ftco-footer a {
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer.ftco-footer a:hover {
  color: #ccc !important;
  text-decoration: none;
}

footer.ftco-footer .ftco-heading-2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

footer.ftco-footer .list-unstyled li {
  margin-bottom: 10px;
}

footer.ftco-footer .list-unstyled li a {
  display: flex;
  align-items: center;
}

footer.ftco-footer .list-unstyled li a .fa {
  margin-right: 10px;
  color: #fff !important;
}

footer.ftco-footer .block-23 ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

footer.ftco-footer .block-23 ul li .icon {
  margin-right: 15px;
  width: 20px;
  text-align: center;
  color: #fff !important;
}

footer.ftco-footer .ftco-footer-social li {
  display: inline-block;
  margin-right: 10px;
}

footer.ftco-footer .ftco-footer-social li a {
  font-size: 20px;
  color: #fff !important;
}

footer.ftco-footer .ftco-footer-social li a:hover {
  color: #ccc !important;
}

footer.ftco-footer .btn-primary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

footer.ftco-footer .btn-primary:hover {
  background-color: #fff;
  color: #000 !important;
}

/* Copyright Section */
footer.ftco-footer .row:last-child {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-top: 30px;
}

footer.ftco-footer p {
  margin-bottom: 0;
}

/* Heart Icon - Keep Red */
footer.ftco-footer .fa-heart {
  color: #ff0000 !important;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  footer.ftco-footer {
    text-align: center;
  }
  
  footer.ftco-footer .ftco-footer-widget {
    margin-bottom: 30px;
  }
  
  footer.ftco-footer .list-unstyled li a {
    justify-content: center;
  }
  
  footer.ftco-footer .block-23 ul li {
    justify-content: center;
  }
  
  footer.ftco-footer .ftco-footer-social {
    justify-content: center;
  }
}