/* Root Variables */
:root {
    --primary-color: #4f46e5;
    --primary-color-rgb: 79, 70, 229;
    --secondary-color: #06b6d4;
    --secondary-color-rgb: 6, 182, 212;
    --dark-color: #1e293b;
    --text-color: #334155;
    --light-text: #94a3b8;
    --light-color: #f8fafc;
    --heading-color: #0f172a;
    --gradient-1: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --gradient-2: linear-gradient(45deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-color);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: 0.2px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-size: 1.8rem;
}

.navbar-brand .logo {
    height: 45px;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 600;
    padding: 0.8rem 1.2rem !important;
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar .btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

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

/* Hero Section */
.hero-section {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234f46e5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 82, 204, 0.1) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.hero-features {
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    color: var(--heading-color);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: 0;
    animation-delay: 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
}

.feature-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section Fixes */
.contact-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    border-color: var(--primary-color);
}

.contact-info {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info i {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Stats Section */
.stats-section {
    position: relative;
    background: var(--gradient-1);
    padding: 80px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.stat-card h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 1rem 0;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Commission Cards */
.commission-section {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.commission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0.5;
}

.commission-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.commission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.commission-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.commission-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.commission-card .card-header {
    background: var(--gradient-1);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.commission-card .card-header h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-badge.premium {
    background: #ffd700;
    color: var(--dark-color);
}

.plan-badge.advanced {
    background: #00c853;
    color: white;
}

.price {
    margin: 1rem 0;
}

.price h4 {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.features-list {
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.feature-item i {
    font-size: 1.2rem;
}

.feature-item .tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: max-content;
    font-weight: 500;
    line-height: 1.4;
}

.feature-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -40px;
}

.commission-details {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.commission-details h5 {
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.commission-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commission-details ul li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .commission-card.featured {
        transform: none;
    }
    
    .commission-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    .commission-card {
        margin-bottom: 2rem;
    }
    
    .price h4 {
        font-size: 2.25rem;
    }
}

/* Enhanced Button Styles */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loaded .loading-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .stat-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-card,
    .service-card,
    .feature-card {
        padding: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 2rem;
    }
}

/* Add this for section headings */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Add subtle animations */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animate {
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

/* Footer Styles */
.footer-section {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-bottom-links li {
        margin-right: 15px;
    }
}

/* Update footer links */
.footer-links a:hover i {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Auth Styles */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

/* Add any additional shared styles */

/* Testimonials Section */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author h4 {
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* How It Works Section */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

/* Download App Section */
.download-app-section {
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-badge img {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-badge:hover img {
    transform: translateY(-5px);
}

.app-showcase {
    position: relative;
    padding: 2rem;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Partners Section Styles */
.partners-section {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0.5;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.partner-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-1);
    color: white;
    transition: all 0.3s ease;
    opacity: 0;
}

.partner-card:hover .partner-overlay {
    bottom: 0;
    opacity: 1;
}

.partner-overlay h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.partner-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* Partner Section Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.partner-card {
    animation: fadeInScale 0.6s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .partner-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .partner-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-overlay h4 {
        font-size: 1rem;
    }

    .partner-overlay p {
        font-size: 0.8rem;
    }
}

/* Add smooth reveal animation for sections */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Add loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.loading-overlay .spinner-grow {
    width: 3rem;
    height: 3rem;
}

/* Add these styles for better image handling */
img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-fluid.loaded {
    opacity: 1;
}

/* Image placeholder styles */
.image-placeholder {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Specific image container styles */
.hero-image {
    min-height: 300px;
    position: relative;
}

.testimonial-image {
    background-size: cover;
    background-position: center;
}

.partner-logo img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
    max-height: 60px;
    width: auto;
}

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

/* Enhanced Contrast for Better Readability */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: #10b981 !important;
}

.feature-item i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Add focus styles for better accessibility */
:focus {
    outline: 3px solid rgba(79, 70, 229, 0.5);
    outline-offset: 2px;
}

.btn:focus {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.5);
}

/* Responsive Fixes */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .floating-card {
        padding: 0.8rem 1.2rem;
    }

    .floating-card i {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    /* Navigation */
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
        border-radius: 5px;
    }

    .nav-link:hover {
        background: var(--gradient-2);
    }

    .navbar .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    /* Stats Section */
    .stat-card {
        margin-bottom: 2rem;
    }

    .stat-card h2 {
        font-size: 2.5rem;
    }

    /* Commission Cards */
    .commission-card.featured {
        transform: none;
    }
    
    .commission-card.featured:hover {
        transform: translateY(-10px);
    }

    /* Partners Section */
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    /* Typography */
    body {
        font-size: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Cards */
    .service-card,
    .feature-card,
    .commission-card {
        padding: 1.5rem;
    }

    /* Stats */
    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h2 {
        font-size: 2rem;
    }

    /* Commission Section */
    .commission-card .card-header {
        padding: 1.5rem;
    }

    .commission-card .card-header h3 {
        font-size: 1.5rem;
    }

    .price h4 {
        font-size: 2rem;
    }

    /* Contact Section */
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-section {
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        margin-top: 1rem;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Partners Section */
    .partner-grid {
        grid-template-columns: 1fr;
    }

    /* Commission Cards */
    .commission-details ul li {
        font-size: 0.9rem;
    }

    /* Contact Form */
    .form-control {
        padding: 0.8rem 1rem;
    }

    /* Footer */
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    .hero-section,
    .stats-section,
    .commission-section {
        background-attachment: scroll;
    }
}

/* Fix for tablets in landscape mode */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .floating-card {
        display: none;
    }
} 


:root {
    --primary-color: #4f46e5;
    --secondary-color: #06b6d4;
    --dark-color: #1e293b;
    --text-color: #64748b;
    --light-color: #f8fafc;
    --gradient-1: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-color);
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

/* Animated Background */
.area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    z-index: -1;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* Auth Container */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.auth-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

/* Logo */
.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
}

.auth-logo img {
    height: 40px;
    margin-right: 10px;
}

.auth-logo span {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
}

.form-group .form-control {
    padding: 0.8rem 2.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: white;
    transition: all 0.3s ease;
}

.form-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    cursor: pointer;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
}

/* Buttons */
.btn-block {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Social Login */
.social-login {
    text-align: center;
    margin: 2rem 0;
}

.social-login p {
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e2e8f0;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-google {
    background: #ea4335;
    color: white;
}

.btn-facebook {
    background: #1877f2;
    color: white;
}

.btn-twitter {
    background: #1da1f2;
    color: white;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Links */
.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-color);
}

.auth-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .auth-form h2 {
        font-size: 1.75rem;
    }
} 