:root {
    --primary-theme: #f2295b;
    --primary-theme-hover: #d11d4b;
    --primary-theme-light: rgba(242, 41, 91, 0.08);
    --secondary-accent: #0f172a;
    --bg-theme: #f8fafc;
    --card-bg: #ffffff;
    --success-color: #10b981;
    --success-light: rgba(16, 185, 129, 0.1);
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-family: 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-theme);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utility classes & layout helpers */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-accent);
    font-weight: 600;
}

/* Smooth rounded corners & Elegant shadows */
.premium-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(242, 41, 91, 0.08);
    border-color: rgba(242, 41, 91, 0.2);
}

/* Custom buttons with animations */
.btn-theme {
    background-color: var(--primary-theme);
    color: #ffffff;
    border: 2px solid var(--primary-theme);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-theme:hover,
.btn-theme:focus {
    background-color: var(--primary-theme-hover);
    border-color: var(--primary-theme-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 41, 91, 0.25);
}

.btn-outline-theme {
    background-color: transparent;
    color: var(--primary-theme);
    border: 2px solid var(--primary-theme);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-outline-theme:hover,
.btn-outline-theme:focus {
    background-color: var(--primary-theme);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 41, 91, 0.15);
}

.btn-secondary-accent {
    background-color: var(--secondary-accent);
    color: #ffffff;
    border: 2px solid var(--secondary-accent);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-secondary-accent:hover,
.btn-secondary-accent:focus {
    background-color: #1e293b;
    border-color: #1e293b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

/* Header logo text custom style */
.brand-logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--secondary-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Sticky Navigation Bar */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    z-index: 1030;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-theme);
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: 60px 0;
    z-index: 1;
}

.hero-badge {
    background-color: var(--primary-theme-light);
    color: var(--primary-theme);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-badge-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-badge-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Floating Trust Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 10;
    animation: floatUpDown 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 34%;
    left: 5%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 4%;
    left: 2%;
    animation-delay: 1.5s;
}

.floating-card-3 {
    bottom: 12%;
    right: 8%;
    animation-delay: 0.7s;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* How it Works / Step Cards */
.step-card {
    position: relative;
    padding: 40px 30px;
    height: 100%;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(242, 41, 91, 0.1);
    line-height: 1;
}

.step-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: var(--primary-theme-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

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

.step-card:hover .step-icon-wrapper {
    background-color: var(--primary-theme);
    transform: scale(1.05);
}

.step-card:hover .step-icon-wrapper i {
    color: #ffffff;
}

/* Eligibility List Styles */
.eligibility-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
}

.eligibility-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--success-light);
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Product Cards Slider */
.swiper-container {
    padding: 20px 10px 50px 10px;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #ffffff;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    height: 200px;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-theme);
}

/* Document Required Cards */
.doc-card {
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}

.doc-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-theme-light);
    color: var(--primary-theme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.doc-card:hover .doc-icon-wrapper {
    background-color: var(--primary-theme);
    color: #ffffff;
    transform: rotateY(180deg);
}

/* Form Customizations */
.form-section-title {
    position: relative;
    padding-left: 15px;
    margin-bottom: 25px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-theme);
}

.form-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background-color: var(--primary-theme);
    border-radius: 2px;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: var(--primary-theme);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-theme);
    box-shadow: 0 0 0 0.25rem rgba(242, 41, 91, 0.15);
}

.file-upload-box {
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background-color: #fafbfd;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.file-upload-box:hover {
    border-color: var(--primary-theme);
    background-color: var(--primary-theme-light);
}

.file-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Support Contacts */
.contact-card {
    padding: 30px 20px;
    height: 100%;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--primary-theme-light);
    color: var(--primary-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Important Notice Panel */
.notice-panel {
    background-color: #f1f5f9;
    border-left: 4px solid var(--primary-theme);
    border-radius: 8px;
    padding: 24px;
}

/* Back to top button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-theme);
    color: #ffffff;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(242, 41, 91, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.btn-back-to-top:hover {
    background-color: var(--primary-theme-hover);
    transform: translateY(-3px);
}

/* Premium illustration shapes */
.illustration-bg {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(242, 41, 91, 0.1) 0%, rgba(15, 23, 42, 0.05) 100%);
    z-index: 1;
}

.shape-lg {
    width: 320px;
    height: 320px;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: morphing 15s ease-in-out infinite;
}

.shape-sm {
    width: 140px;
    height: 140px;
    right: 10%;
    top: 5%;
    background: rgba(242, 41, 91, 0.05);
    border-radius: 50%;
}

@keyframes morphing {

    0%,
    100% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    }

    25% {
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }

    50% {
        border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    }

    75% {
        border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%;
    }
}