/* ==========================================================================
   General Styles
   ========================================================================== */
.home-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #f9fafb;
}

/* Responsive Styles for General */
@media (max-width: 1024px) {
    .home-wrapper {
        /* No specific changes needed, but placeholder for future adjustments */
    }
}

@media (max-width: 768px) {
    .home-wrapper {
        /* No specific changes needed */
    }
}

@media (max-width: 480px) {
    .home-wrapper {
        /* No specific changes needed */
    }
}
 .progress-section {
            max-width: 1000px;
            width: 100%;
            padding: 40px 20px;
            text-align: center;
            margin:0 auto;
        }

        .title {
            font-size: 2rem;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 40px;
        }

        .progress-bar-container {
            position: relative;
            width: 100%;
            height: 4px;
            background-color: #cbd5e1;
            border-radius: 2px;
            margin-bottom: 60px;
        }

        .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(270deg, #3b82f6, #7c3aed, #ec489e, #f97316, #10b981, #3b82f6);
            background-size: 400% 100%;
            animation: gradientFlow 5s linear infinite;
            border-radius: 2px;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .step-nodes {
            position: absolute;
            top: -12px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 12px;
            pointer-events: none;
        }

        .step-node {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 60px;
            pointer-events: auto;
        }

        .step-dot {
            width: 24px;
            height: 24px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
            background: linear-gradient(270deg, #3b82f6, #7c3aed, #ec489e, #f97316, #10b981, #3b82f6);
            background-size: 400% 100%;
            animation: gradientFlow 5s linear infinite;
        }

        .step-dot.completed {
            background: #10b981;
        }

        .step-dot.active {
            transform: scale(1.1);
            background: #f97316;
        }

        .step-label {
            font-size: 0.8rem;
            color: #334155;
            margin-top: 12px;
            transition: all 0.3s ease;
        }

        .step-label.active {
            color: #475569;
            font-weight: bold;
        }

        .tooltip {
            visibility: hidden;
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #1e293b;
            color: #fff;
            padding: 6px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            white-space: nowrap;
            z-index: 3;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .step-node:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }

        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .card {
            background: #ffffff;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 10px;
            width: 140px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .card.active {
            border: 1px solid #9ca3af;
        }

        .card-number {
            width: 20px;
            height: 20px;
            background-color: #94a3b8;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            margin: 0 auto 5px;
            transition: color 0.3s ease;
        }

        .card-title {
            font-size: 0.8rem;
            color: #1e293b;
            margin-bottom: 2px;
        }

        .card-subtext {
            font-size: 0.6rem;
            color: #64748b;
        }

        .cta {
            margin-top: 20px;
        }

        .btn-register {
            display: inline-block;
            padding: 10px 20px;
            background-color: #334155;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 0.9rem;
            transition: transform 0.2s ease;
        }

        .btn-register:hover {
            transform: scale(1.05);
        }

        @media (max-width: 1024px) {
            .progress-bar-container,
            .step-nodes {
                display: none;
            }

            .steps {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                padding: 0 10px 20px;
            }

            .card {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }
        }

        @media (max-width: 600px) {
            .card-number {
                width: 18px;
                height: 18px;
                font-size: 0.6rem;
            }

            .card-title {
                font-size: 0.75rem;
            }

            .card-subtext {
                font-size: 0.6rem;
            }
        }

        @media (max-width: 480px) {
            .card {
                max-width: 240px;
            }

            .card-number {
                width: 16px;
                height: 16px;
                font-size: 0.5rem;
            }

            .card-title {
                font-size: 0.7rem;
            }

            .card-subtext {
                font-size: 0.5rem;
            }
        }
/*==========================================================================
   Creative Header Styles
   ========================================================================== */
.creative-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo .logo-image {
    height: 50px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a855f7;
}

.nav-cta {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #fff;
    padding: 8px 20px;
    border-radius: 9999px;
}

.nav-cta:hover {
    background: linear-gradient(90deg, #9333ea, #db2777);
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
}

.menu-icon::before {
    transform: translateY(-8px);
}

.menu-icon::after {
    transform: translateY(8px);
}

.menu-toggle.active .menu-icon {
    background: transparent;
}

.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
}

.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
}

/* Responsive Styles for Header */
@media (max-width: 1024px) {
    .header-nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .header-nav .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-logo .logo-image {
        height: 40px;
    }

    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-logo .logo-image {
        height: 35px;
    }
}
/* ==========================================================================
   Hero Section Styles
   ========================================================================== */
.hero-section {
    background: #ffffff;
    padding: 120px 5%;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 66px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    line-height: 74px;
}

.hero-title .highlight-nowra {
    background: linear-gradient(90deg, #4f46e5, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block; /* Ensure the span behaves as a block for animations */
    animation: pulse 2s ease-in-out infinite, gradientShiftNowra 4s linear infinite;
}

.hero-title .highlight-nowri {
    background: linear-gradient(90deg, #ec4899, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block; /* Ensure the span behaves as a block for animations */
    animation: pulse 2s ease-in-out infinite, gradientShiftNowri 4s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03); /* Reduced scale for subtlety */
    }
}

@keyframes gradientShiftNowra {
    0% {
        background: linear-gradient(90deg, #4f46e5, #a855f7);
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% {
        background: linear-gradient(90deg, #a855f7, #4f46e5);
        -webkit-background-clip: text;
        background-clip: text;
    }
    100% {
        background: linear-gradient(90deg, #4f46e5, #a855f7);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

@keyframes gradientShiftNowri {
    0% {
        background: linear-gradient(90deg, #ec4899, #f97316);
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% {
        background: linear-gradient(90deg, #f97316, #ec4899);
        -webkit-background-clip: text;
        background-clip: text;
    }
    100% {
        background: linear-gradient(90deg, #ec4899, #f97316);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

/* Rest of your original CSS remains unchanged */
.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-cta .btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-register {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    color: #fff;
}

.btn-register:hover {
    background: linear-gradient(90deg, #7c3aed, #db2777);
}

.btn-login {
    background: transparent;
    color: #7c3aed;
    border: 2px solid #d1d5db;
}

.btn-login:hover {
    background: #f3f4f6;
}

.match-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.match-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.match-icon img {
    width: 30px;
    height: 30px;
}

.nowra-icon {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.match-heart {
    background: #fce7f3;
    position: relative;
}

.match-heart img {
    width: 24px;
    height: 24px;
}

.nowri-icon {
    background: linear-gradient(135deg, #a855f7, #d946ef);
}

.match-label {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.hero-section .hero-feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-section .hero-feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.hero-section .hero-feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.hero-section .hero-feature-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Responsive Styles for Hero Section */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 5%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .match-options {
        gap: 20px;
    }

    .match-icon {
        width: 50px;
        height: 50px;
    }

    .match-icon img {
        width: 24px;
        height: 24px;
    }

    .match-heart img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 5%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .match-options {
        gap: 20px;
    }

    .match-icon {
        width: 50px;
        height: 50px;
    }

    .match-icon img {
        width: 24px;
        height: 24px;
    }

    .match-heart img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 5%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-cta .btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .match-options {
        gap: 15px;
    }

    .match-icon {
        width: 45px;
        height: 45px;
    }

    .match-icon img {
        width: 20px;
        height: 20px;
    }

    .match-heart img {
        width: 18px;
        height: 18px;
    }
}
.hero-title .highlight-nowra {
    color: #4f46e5;
    display: inline-block;
    animation: colorShiftNowra 4s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

.hero-title .highlight-nowri {
    color: #ec4899;
    display: inline-block;
    animation: colorShiftNowri 4s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

@keyframes colorShiftNowra {
    0% { color: #4f46e5; }
    50% { color: #a855f7; }
    100% { color: #4f46e5; }
}

@keyframes colorShiftNowri {
    0% { color: #ec4899; }
    50% { color: #f97316; }
    100% { color: #ec4899; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}
/* ==========================================================================
   Community Hero Section Styles
   ========================================================================== */
.community-hero-section {
    background: #f9fafb;
    padding: 80px 5%;
    text-align: center;
}

.community-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.community-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(90deg, #8b5cf6, #ec4899, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
}

.community-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    padding:0 0 40px 0;
}

.community-hero-text {
    flex: 1;
    text-align: left;
}

.community-hero-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.community-hero-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.dashboard-frame {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.avatar {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.avatar-1 {
    top: -20px;
    left: -30px;
    background: #bbf7d0;
}

.avatar-2 {
    top: -40px;
    right: -20px;
    background: #fbcfe8;
}

.avatar-3 {
    bottom: -30px;
    left: -20px;
    background: #fef9c3;
}

.avatar-4 {
    bottom: -20px;
    right: -30px;
    background: #e9d5ff;
}

.community-hero-cta {
    flex: 1;
    text-align: right;
}

.btn-join-now {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.btn-join-now:hover {
    color: #1d4ed8;
}

/* Responsive Styles for Community Hero Section */
@media (max-width: 1024px) {
    .community-hero-title {
        font-size: 48px;
    }

    .community-hero-inner {
        flex-direction: column;
        gap: 20px;
    }

    .community-hero-text,
    .community-hero-cta {
        text-align: center;
    }

    .community-hero-subtext {
        font-size: 16px;
    }

    .btn-join-now {
        font-size: 16px;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }

    .avatar-1 {
        top: -15px;
        left: -20px;
    }

    .avatar-2 {
        top: -30px;
        right: -15px;
    }

    .avatar-3 {
        bottom: -20px;
        left: -15px;
    }

    .avatar-4 {
        bottom: -15px;
        right: -20px;
    }
}

@media (max-width: 768px) {
    .community-hero-section {
        padding: 60px 5%;
    }

    .community-hero-title {
        font-size: 36px;
    }

    .community-hero-subtext {
        font-size: 14px;
    }

    .btn-join-now {
        font-size: 14px;
    }

    .dashboard-frame {
        padding: 15px;
    }

    .avatar {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .community-hero-section {
        padding: 40px 5%;
    }

    .community-hero-title {
        font-size: 28px;
    }

    .community-hero-subtext {
        font-size: 13px;
    }

    .btn-join-now {
        font-size: 13px;
    }

    .dashboard-frame {
        padding: 10px;
    }

    .avatar {
        width: 30px;
        height: 30px;
    }

    .avatar-1 {
        top: -10px;
        left: -15px;
    }

    .avatar-2 {
        top: -20px;
        right: -10px;
    }

    .avatar-3 {
        bottom: -15px;
        left: -10px;
    }

    .avatar-4 {
        bottom: -10px;
        right: -15px;
    }
}

/* ==========================================================================
   Features Section Styles
   ========================================================================== */
.features-section {
    background: #ffffff;
    padding: 60px 5%;
    text-align: center;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #020817;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding:0 0 20px 0;
}

.feature-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #0000001f;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.feature-text {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #020817;
    text-align: left;
    margin: 0 0 8px 0;
}

.feature-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.feature-icon-panel {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
    border-radius: 0 10px 10px 0;
}


/*.pastel-blue { background-color: #dbeafe; }*/
/*.pastel-green { background-color: #d3f9e1; }*/
/*.pastel-pink { background-color: #fff1f9; }*/
/*.pastel-yellow { background-color: #fefce8; }*/
/*.pastel-purple { background-color: #f5eaff; }*/
/*.pastel-orange { background-color: #ffedd5; }*/
/*.pastel-teal { background-color: #ccfbf1; }*/
/*.pastel-lavender { background-color: #ede9fe; }*/
/*.pastel-coral { background-color: #ffe4e6; }*/
/*.pastel-mint { background-color: #d1fae5; }*/
/*.pastel-rose { background-color: #ffe4e6; }*/
/*.pastel-sky { background-color: #e0f2fe; }*/
/*.pastel-peach { background-color: #ffedd5; }*/
/*.pastel-lime { background-color: #ecfccb; }*/
/*.pastel-indigo { background-color: #e0e7ff; }*/

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 5%;
    }

    .features-title {
        font-size: 28px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 16px;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 13px;
    }
    .feature-icon-panel {
    padding:0;
}
   

}

@media (max-width: 480px) {
    .features-title {
        font-size: 24px;
    }
.feature-icon-panel {
    padding:0;
}
    .features-subtitle {
        font-size: 14px;
    }

    .feature-text h3 {
        font-size: 15px;
    }

    .feature-text p {
        font-size: 12px;
    }
}

/* ==========================================================================
   Support Contact Bar Section Styles
   ========================================================================== */
.support-contact-section {
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    padding: 20px 0;
    overflow: hidden;
}

.support-contact-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.support-contact-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    color: #fff;
    white-space: nowrap;
}

.support-text {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.support-phone {
    font-size: 18px;
    font-weight: 700;
    color: #f3e8ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-phone:hover {
    color: #fff;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styles for Support Contact Bar Section */
@media (max-width: 1024px) {
    .support-contact-content {
        gap: 15px;
        padding: 0 20px;
    }

    .support-text,
    .support-phone {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .support-text,
    .support-phone {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .support-contact-content {
        gap: 10px;
        padding: 0 15px;
    }

    .support-text,
    .support-phone {
        font-size: 13px;
    }
}

/* ==========================================================================
   Team Section Styles
   ========================================================================== */
.team-section {
    background: #ffffff;
    padding: 60px 5%;
    border: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2)) 1;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.team-text-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.leader-widget {
    display: flex;
    flex-direction: column;
}

.leader-name {
    font-size: 24px;
    font-weight: 600;
    color: #020817;
    margin: 0;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leader-designation {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin: 5px 0 0;
}

.leader-bio {
    font-size: 16px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.6;
    margin: 0;
}

.team-members-title {
    font-size: 20px;
    font-weight: 600;
    color: #020817;
    margin: 20px 0 10px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-members-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.team-member-card {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.team-image-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.team-portrait-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Responsive Styles for Team Section */
@media (max-width: 1024px) {
    .team-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-text-column,
    .team-image-column {
        padding: 15px;
    }

    .leader-name {
        font-size: 22px;
    }

    .leader-designation {
        font-size: 15px;
    }

    .leader-bio {
        font-size: 15px;
    }

    .team-members-title {
        font-size: 18px;
    }

    .team-member-card {
        width: 90px;
        height: 90px;
    }

    .carousel-arrow {
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 40px 5%;
    }

    .leader-name {
        font-size: 20px;
    }

    .leader-designation {
        font-size: 14px;
    }

    .leader-bio {
        font-size: 14px;
    }

    .team-members-title {
        font-size: 16px;
    }

    .team-member-card {
        width: 80px;
        height: 80px;
    }

    .team-portrait-image {
        max-width: 350px;
    }

    .carousel-arrow {
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 30px 5%;
    }

    .team-text-column,
    .team-image-column {
        padding: 10px;
    }

    .leader-name {
        font-size: 18px;
    }

    .leader-designation {
        font-size: 13px;
    }

    .leader-bio {
        font-size: 13px;
        line-height: 1.5;
    }

    .team-members-title {
        font-size: 14px;
        margin: 15px 0 8px;
    }

    .team-members-row {
        gap: 10px;
    }

    .team-member-card {
        width: 70px;
        height: 70px;
    }

    .team-portrait-image {
        max-width: 300px;
    }

    .carousel-arrow {
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* ==========================================================================
   Marketing Banner Section Styles
   ========================================================================== */
.marketing-banner-section {
    background: #ffffff;
    padding: 60px 5%;
    text-align: center;
    border: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2)) 1;
    font-family: 'Inter', sans-serif;
}

.marketing-banner-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.banner-title {
    font-size: 36px;
    font-weight: 600;
    color: #020817;
    margin: 0;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.btn-login-now {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #ffffff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn-login-now:hover {
    background: linear-gradient(90deg, #9333ea, #db2777);
}

/* Responsive Styles for Marketing Banner Section */
@media (max-width: 1024px) {
    .marketing-banner-section {
        padding: 40px 5%;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .btn-login-now {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .marketing-banner-section {
        padding: 40px 5%;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .btn-login-now {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .marketing-banner-section {
        padding: 30px 5%;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .btn-login-now {
        padding: 8px 20px;
        font-size: 13px;
    }
}
/* ==========================================================================
   Footer Styles
   ========================================================================== */
.site-footer {
    background: linear-gradient(135deg, #f3e8ff 0%, #e0f2fe 100%);
    color: #1f2937;
    padding: 60px 5% 30px;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    padding: 10px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #7c3aed;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #7c3aed;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    color: #1e1b4b;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #7c3aed;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.footer-contact {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #6d28d9;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #7c3aed;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-section.about {
        grid-column: span 2;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 5% 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 18px;
    }

    .footer-description,
    .footer-links a,
    .footer-contact,
    .footer-bottom p {
        font-size: 14px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}