/* Navbar Styles */
:root{
--primary-color: linear-gradient(135deg, #6c8eff, #48d0b0);
--primary-hover: linear-gradient(135deg, #5b7cec, #3ab89c);
--money-accent: linear-gradient(135deg, #ffb347, #ff8c00);

--text-color: #1f2937;
--text-light: #6b7280;
--bg-color: #ffffff;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 50;
  }
  
  .navbar-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .navbar-logo:hover {
    background: linear-gradient(to right, #2563eb, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scale(1.2);
  }
  
  .navbar-logo img {
    height: 3.5rem;
    margin-right: 0.75rem;
  }
  
  .navbar-links {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
  .navbar-link {
    position: relative;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .navbar-link:hover {
    color: var(--primary-color);
  }
  
  .navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background: var(--primary-color); /* Replace solid color with gradient */
    height: 3px; /* Slightly thicker for gradient visibility */
    transition: var(--transition);
  }
  
  .navbar-link:hover::after {
    width: 100%;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: var(--transition);
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 0.75rem 0;
    background-color: var(--bg-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
    background: linear-gradient(to bottom, #ffffff, #f0fdfa); /* White to light green */
    border-image: var(--primary-color);
    border-image-slice: 1;
    padding: 2rem 1rem 2rem 1rem;
    border-radius: 15px;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .dropdown-item {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .dropdown-item:hover {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
  }
  
  .login-btn {
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    background: var(--money-accent);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .login-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    animation: pulse 1.5s infinite;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    z-index: 10;
  }
  
  .hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-color);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
  }
  
  .hamburger span:nth-child(1) {
    top: 0;
  }
  
  .hamburger span:nth-child(2) {
    top: 8px;
  }
  
  .hamburger span:nth-child(3) {
    top: 16px;
  }
  
  .hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
  
  .close-btn {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 50;
  }
  
  .close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  
  @media (max-width: 768px) {
    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(to bottom right, #ffffff, #f8fafc);
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 40;
    }
  
    .navbar-links.active {
        right: 0;
    }
  
    .dropdown {
        width: 100%;
    }
  
    .dropdown-toggle {
        padding: 0;
    }
  
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }
  
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 2rem 1rem 2rem 1rem;
        border-radius: 15px;
    }
  
    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
  
    .hamburger {
        display: block;
    }
  
    .close-btn {
        display: block;
    }
  
    .navbar-link::after {
        display: none;
    }
  }












/* Footer Styles */
.nextrole-footer {
    --footer-bg: #121212;
    --footer-text: #ffffff;
    --footer-accent: #6e8efb;
    --footer-divider: rgba(255, 255, 255, 0.1);
    --footer-link-opacity: 0.7;
  }
  
  /* Footer Base Styles */
  .nextrole-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 5% 30px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  /* Footer Rows */
  .nextrole-footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  /* Row 1 Styles */
  .nextrole-footer .brand-column {
    flex: 1;
    min-width: 200px;
  }
  
  .nextrole-footer .brand-name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--footer-text);
    letter-spacing: -0.5px;
  }
  
  .nextrole-footer .social-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .nextrole-footer .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .nextrole-footer .social-icons a {
    color: var(--footer-text);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    opacity: var(--footer-link-opacity);
  }
  
  .nextrole-footer .social-icons a:hover {
    color: var(--footer-accent);
    opacity: 1;
  }
  
  /* Row 2 Styles */
  .nextrole-footer .footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
    padding-right: 20px;
  }
  
  .nextrole-footer .column-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: var(--footer-text);
  }
  
  .nextrole-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nextrole-footer .footer-links li {
    margin-bottom: 12px;
  }
  
  .nextrole-footer .footer-links a {
    color: rgba(255, 255, 255, var(--footer-link-opacity));
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  
  .nextrole-footer .footer-links a:hover {
    color: var(--footer-text);
  }
  
  /* Row 3 Styles */
  .nextrole-footer .copyright-column {
    width: 100%;
    text-align: center;
  }
  
  .nextrole-footer .copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
  }
  
  /* Divider */
  .nextrole-footer .footer-divider {
    border: none;
    height: 1px;
    background-color: var(--footer-divider);
    margin: 30px 0;
    width: 100%;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nextrole-footer .footer-row {
        flex-direction: column;
    }
    
    .nextrole-footer .social-column {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .nextrole-footer .footer-column {
        min-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .nextrole-footer .column-heading {
        margin-bottom: 15px;
    }
  }