:root {
    --primary-blue: #2563eb;
    --primary-red: #EB2933;
    --dark-red: #d81f2c;
    --light-blue-bg: #F3F9FF;
    --text-dark: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Header */


 .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
         .nav-link {
            color: var(--text-gray-500) !important;
            transition: color 0.3s;
        }
.nav-link:hover {
    color: var(--primary-blue) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 1rem;
    min-width: 280px;
    margin-top: 0.5rem;
    animation: dropdownSlide 0.3s ease-out;
}


@media (max-width: 991px) {
    @keyframes dropdownSlide {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.nav-link{
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);    
}
.dropdown-item {
    padding: 0.50rem 1rem;
    transition: all 0.3s;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 15px;
    font-weight: 500;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item .dropdown-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary-blue);
    transform: translateX(4px);
}

.dropdown-item:hover .dropdown-icon {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.dropdown-divider {
    margin: 0.75rem 0;
    border-top: 2px solid #e5e7eb;
}

.dropdown-header {
    padding: 0.5rem 1rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.btn-login {
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    border: 1px solid #2563eb;
    transition: background-color 0.3s;
        font-weight: 600;
}

.btn-login:hover {
    background-color: #eff6ff;
    color: var(--primary-blue);
    border: 1px solid #2563eb;
}

.btn-signup {
    background-color: var(--primary-red);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(235, 41, 51, 0.2);
}

.btn-signup:hover {
    color: #FFF;
    background-color: var(--dark-red);
    box-shadow: 0 4px 12px rgba(235, 41, 51, 0.3);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #eff6ff, #dbeafe);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hero-gradient {
    position: absolute;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.05), transparent);
    height: 100%;
    right: 0;
    border-radius: 0 0 0 448px;
    top: 0;
    width: 50%;
}

.hero-heading {
    font-size: 50px;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.btn-primary-cta {
    background-color: var(--primary-red);
    color: white;
    font-size: 18px;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(235, 41, 51, 0.3);
    transition: all 0.3s;
    border: none;
}

.btn-primary-cta:hover {
    background-color: var(--dark-red);
    box-shadow: 0 6px 20px rgba(235, 41, 51, 0.4);
    transform: translateY(-2px);
    color: #FFF;
}

.btn-secondary-cta {
    background-color: white;
    color: var(--primary-blue);
    font-size: 18px;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-secondary-cta:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.hero-image {
    border-radius: 12.617px;
    width: 100%;
    height: auto;
}

.home-star-rating svg {
    display: block;
}

.hero-badge {
    width: 90px;
    height: 86px;
    border-radius: 6px;
    overflow: hidden;
}

.hero-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-soc-badge {
    width: 94px;
    height: 94px;
}

.hero-soc-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-rating-text {
    font-size: 21.538px;
    color: #6a7282;
}

/* Trust Strip */
.trust-strip {
    background: white;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.08);
}

.trust-stat-value {
    font-size: 35px;
    color: var(--primary-blue);
    line-height: 1.2;
}

.trust-stat-label {
    font-size: 17px;
    color: var(--text-dark);
}

.trust-stat-note {
    font-size: 13px;
    color: var(--text-dark);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
    border-color: #bfdbfe;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.feature-icon .material-symbols-outlined {
    font-size: 32px;
}

/* Who It's For Cards */
.persona-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-blue);
    transition: all 0.3s;
}

.persona-card:hover {
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.2);
    transform: translateY(-6px);
}

.persona-check {
    position: absolute;
    left: 0;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

/* Step Cards */
.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* Form Cards */
.form-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    text-align: center;
    font-size: 18px;
    color: var(--primary-blue);
    width: 200px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}
.form-card a{
    text-decoration: none;
}

/* Requirements Section */
.requirement-box {
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.requirement-box-blue {
    background-color: rgba(37, 99, 235, 0.08);
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.requirement-box-green {
    background-color: rgba(16, 185, 129, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.requirement-box-orange {
    background-color: rgba(245, 158, 11, 0.08);
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.requirement-box-purple {
    background-color: rgba(139, 92, 246, 0.08);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.requirement-icon-wrapper {
    background: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.color-blue { color: #2563eb; }
.color-green { color: #10b981; }
.color-orange { color: #f59e0b; }
.color-purple { color: #8b5cf6; }

.requirement-icon {
    font-size: 32px;
}

.requirement-check {
    font-size: 20px;
}

.ready-to-file-box {
    padding: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #93c5fd;
}

.ready-icon {
    font-size: 40px;
}

/* Deadline Section */
.deadline-banner {
    margin-bottom: 2rem;
    padding: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #3b82f6, #6366f1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
}

.deadline-icon-wrapper {
    background: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.deadline-icon {
    color: #3b82f6;
    font-size: 40px;
}

.deadline-date {
    color: #bfdbfe;
}

.deadline-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #dbeafe;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.deadline-card-icon-wrapper {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.deadline-card-icon {
    font-size: 28px;
}

.alert-warning {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 0.75rem;
}

.alert-info {
    background: linear-gradient(to right, #eff6ff, #dbeafe);
    border: 2px solid #93c5fd;
    border-radius: 0.75rem;
}

.alert-icon {
    font-size: 24px;
}

.alert-warning .alert-icon {
    color: #f59e0b;
}

.alert-info .alert-icon {
    color: var(--primary-blue);
}

.alert-warning-text {
    color: #78350f;
}

.alert-info-text {
    color: #1e40af;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-blur-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.footer-blur-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-top-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
    max-width: 450px;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: #2563eb;
    transform: translateY(-3px);
    color: white;
}

.newsletter-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.newsletter-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.newsletter-description {
    color: #cbd5e1;
    margin-bottom: 1.25rem;
    font-size: 14px;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-input:focus {
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
}

.footer-link:hover {
    color: #60a5fa;
    padding-left: 8px;
}

.footer-link-arrow {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 14px;
}

.irs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.irs-check-icon {
    fill: #10b981;
}

.irs-badge-text {
    color: #10b981;
    font-weight: 600;
}

.footer-cert-logo {
    height: 35px;
    opacity: 0.8;
}

.footer-cert-logo-large {
    height: 40px;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(235, 41, 51, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    font-size: 22px;
    transition: all 0.3s;
}

.back-to-top:hover {
    background-color: var(--dark-red);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Mega Menu */
@media (max-width: 991px) {
    .navbar .dropdown {
        position: relative;
    }
    
    .mega-menu {
        min-width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
        padding: 1rem;
        position: absolute;
        top: 100%;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .mega-menu-featured {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mega-menu-item {
        padding: 0.75rem;
    }
    
    .mega-menu-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .mega-menu-text h6 {
        font-size: 14px;
    }
    
    .mega-menu-text p {
        font-size: 12px;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .hero-heading {
        font-size: 42px;
    }
    
    .hero-gradient {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-heading {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}