:root {
    --primary-color: #ff8c00;
    --primary-hover: #ff7000;
    --secondary-color: #2c3e50;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Darker Grotesque', sans-serif;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white !important;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Desktop Menu */
@media (min-width: 992px) {
    .mobile-menu {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        margin: 0;
    }

    .auth-buttons {
        display: flex;
        gap: 1rem;
        margin: 0;
    }

    .navbar-toggler {
        display: none;
    }

    .auth-buttons .nav-link {
        padding: 0.5rem 1.5rem !important;
        border-radius: 50px;
    }

    .auth-buttons .login-btn {
        background: #f8f9fa;
    }

    .auth-buttons .register-btn {
        background: var(--primary-color);
        color: white !important;
    }

    .auth-buttons .register-btn:hover {
        background: var(--primary-hover);
        color: white !important;
    }
}

/* Mobile Menu */
@media (max-width: 991px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .mobile-menu.show {
        display: flex;
    }
    
    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }

    .nav-item {
        margin: 0.5rem 0;
    }
    
    .mobile-menu .nav-link {
        font-size: 2rem;
        margin: 1rem 0;
        opacity: 1;
        text-align: center;
    }
    
    .mobile-menu .auth-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
        width: 200px;
    }
    
    .mobile-menu .auth-buttons .nav-link {
        font-size: 1.2rem;
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar-toggler {
        z-index: 1001;
        border: none;
        padding: 0;
        width: 30px;
        height: 30px;
        position: relative;
        cursor: pointer;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .hamburger-icon {
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .hamburger-icon span:nth-child(1) {
        top: 0px;
    }

    .hamburger-icon span:nth-child(2),
    .hamburger-icon span:nth-child(3) {
        top: 10px;
    }

    .hamburger-icon span:nth-child(4) {
        top: 20px;
    }

    .hamburger-icon.open span:nth-child(1),
    .hamburger-icon.open span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
        opacity: 0;
    }

    .hamburger-icon.open span:nth-child(2) {
        transform: rotate(45deg);
    }

    .hamburger-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
    }
}

/* Landing Page Specific Styles */
.features-section {
    margin-top: 6rem;
}

.text-gradient {
    background: linear-gradient(90deg, #ff8c00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.text-gradient:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ff8c00);
}

/* Feature Cards */
.feature-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: calc(var(--card-index, 0) * 0.3s);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(50px, 50px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.feature-card:hover {
    background-color: #ff8c00;
    transform: translate(-15px, -15px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.4);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    float: left;
    margin-right: 1.5rem;
}

.feature-card:hover .feature-icon {
    background-color: white;
}

.feature-icon i {
    font-size: 2rem;
    color: #ff8c00;
    transition: all 0.4s ease;
}

.feature-content {
    overflow: hidden;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.feature-bg-icon {
    position: absolute;
    bottom: -25px;
    right: -10px;
    font-size: 8rem;
    opacity: 0.1;
    color: #888;
    transition: all 0.6s ease;
    z-index: 0;
}

.feature-card:hover .feature-bg-icon {
    color: rgba(255, 255, 255, 0.18);
    transform: scale(1.2) translate(-20px, -20px);
}

/* About Section Styles */
.about-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-feature h4 {
    font-size: 1.4rem;
    color: #2c3e50;
}

.about-feature p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-left: 63px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff8c00, #ff8c00);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Partner Logos */
.partner-logo img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Stats Section */
.stat-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-content {
        margin-bottom: 3rem;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .mobile-menu .auth-buttons {
        flex-direction: row;
        margin-top: 2rem;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        transition-delay: 0.5s;
    }
    
    .mobile-menu.show .auth-buttons {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu.closing .auth-buttons {
        transform: translateY(-20px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transition-delay: 0s;
    }
    
    .mobile-menu .auth-buttons .nav-link {
        font-size: 1.2rem;
        transform: none;
        opacity: 1;
    }
} 
.grayscale {
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}
:root {
    --section-spacing: 6rem;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Hero Section */
.hero-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, rgba(255,140,0,0.1) 0%, rgba(255,255,255,1) 100%);
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Loan Features */
.loan-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.loan-feature i {
    font-size: 1.5rem;
}

/* Benefit Cards */
.benefit-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .min-vh-80 {
        min-height: auto;
    }

    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-section img {
        margin-top: 3rem;
    }

    .cta-section {
        text-align: center;
    }

    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 2rem;
    }
}

/* Updated Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.5s;
}

.hero-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.hero-controls {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(50%);
}

.hero-controls button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-controls button:hover {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 991px) {
    .slide-content h1 {
        font-size: 3rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .hero-controls {
        padding: 0 1rem;
    }

    .hero-controls button {
        width: 40px;
        height: 40px;
    }
}
  /* Footer Styles */
  .footer-section {
    color: white;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.widget-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}



.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a:hover:before {
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.8);
}

.contact-item i {
    margin-right: 15px;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .footer-widget {
        text-align: center;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a:before {
        display: none;
    }
    
    .contact-item {
        justify-content: center;
    }
}