* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff5722;
    --secondary-color: #ff7043;
    --accent-color: #ec4899;

    /* Light Mode */
    --light-bg: #ffffff;
    --lighter-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --header-bg: rgba(255, 255, 255, 0.9);
    --header-scrolled-bg: rgba(255, 255, 255, 0.98);
    --hero-gradient: linear-gradient(160deg, #fff1eb 0%, #ffd8c9 70%, #faeeee 100%);
    --services-bg: #e0f7fa;
    --team-bg: blanchedalmond;
    --about-bg: cornsilk;
    --contact-bg: #ECFFE6;
}

body.dark-mode {
    --light-bg: #111827;
    --lighter-bg: #1f2937;
    --text-dark: #f8fafc;
    --text-gray: #94a3b8;
    --card-bg: #1f2937;
    --border-color: #374151;
    --header-bg: rgba(17, 24, 39, 0.9);
    --header-scrolled-bg: rgba(17, 24, 39, 0.98);
    --hero-gradient: linear-gradient(160deg, #111827 0%, #1a233f 70%, #111827 100%);
    --services-bg: #111827;
    --team-bg: #1f2937;
    --about-bg: #030710;
    --contact-bg: #1e252c;
}

body {
    font-family: 'SUSE', sans-serif;
    background: var(--lighter-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}



/* Shared hero section base for inner pages */
.hero-section {
    padding: 8rem 5% 3rem;
    text-align: center;
    background: var(--light-bg);
    position: relative;
}
#faq-section {
    padding: 4rem 5% 3rem;
    text-align: center;
    background: var(--light-bg);
    position: relative;
}
#faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section>* {
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0.75rem 0 0.5rem;
}

.hero-section p {
    color: var(--text-gray);
}

/* Page-specific hero visuals */
body.page-faq .hero-section {
    background: linear-gradient(180deg, #e0f2ff 0%, #ffffff 60%);
}

body.page-cohorts .hero-section {
    color: #1e293b;
}

body.page-cohorts .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6));
}

body.dark-mode.page-cohorts .hero-section::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}

body.dark-mode.page-cohorts .hero-section {
    color: #f8fafc;
}

body.page-hackathons .hero-section {
    color: #1e293b;
}

body.dark-mode.page-hackathons .hero-section {
    color: #f8fafc;
}

body.page-contests .hero-section {
    color: #1e293b;
}

body.page-contests .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.55));
}

body.dark-mode.page-contests .hero-section::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}

body.dark-mode.page-contests .hero-section {
    color: #f8fafc;
}

body.page-learning .hero-section {
    color: #1e293b;
}

body.page-learning .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6));
}

body.dark-mode.page-learning .hero-section::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}

body.dark-mode.page-learning .hero-section {
    color: #f8fafc;
}

/* FAQ accordion */
.faq-accordion {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--card-bg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.08);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
}
.faq-answer p {
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* FAQ search & categories */
.faq-controls {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 0 1rem;
    display: grid;
    gap: 1rem;
}

.faq-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0.6rem 0.9rem;
}

.faq-search i {
    color: var(--primary-color);
}

.faq-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.faq-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--light-bg);
    color: var(--text-dark);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-chip i {
    color: var(--primary-color);
}

.faq-chip.active,
.faq-chip:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
    transform: translateY(-1px);
}

/* FAQ contact banner */
.faq-contact {
    max-width: 980px;
    margin: 1.5rem auto 3rem;
    border: 1px dashed var(--border-color);
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-contact p {
    color: var(--text-dark);
}

.faq-contact a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Program expandable sections */
.expandable {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    display: grid;
    gap: 1rem;
}

.expand-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--card-bg);
    overflow: hidden;
}

.expand-item:hover {
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.08);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.expand-header {
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.expand-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.expand-header i {
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.expand-content {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: var(--text-gray);
}

.expand-item.open .expand-content {
    display: block;
}

.expand-item.open .expand-header i {
    transform: rotate(90deg);
}

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1200px;
    margin: 0.5rem auto 0;
    padding: 0 5%;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 0.35rem;
}

/* Section wrappers */
.section {
    padding: 2rem 5% 3rem;
}

.section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section .section-subtitle {
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 87, 34, 0.15);
}

.card h4 {
    margin-bottom: 0.4rem;
}

.card p {
    color: var(--text-gray);
}

/* Timeline */
.timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding-left: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin: 1rem 0;
    padding-left: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -12px;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.2);
}

.timeline-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem;
}

/* Leaderboard */
.leaderboard {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
}

.leaderboard-header,
.leaderboard-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px;
    padding: 0.8rem 1rem;
    align-items: center;
}

.leaderboard-header {
    background: rgba(255, 87, 34, 0.06);
    font-weight: 600;
}

.leaderboard-row:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

body.dark-mode .leaderboard-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

/* Schedule grid */
.schedule-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.schedule-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
}

.schedule-meta {
    display: flex;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Program CTAs */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 auto;
    margin-top: 1rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    text-decoration: none;
    display: inline-block;
}

/* Hackathon special: dark gradient banner and countdown */
body.page-hackathons .hero-section {
    position: relative;
}

body.page-hackathons .hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 87, 34, 0.25), transparent 40%), radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.25), transparent 40%);
    pointer-events: none;
}

.countdown {
    display: inline-flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.countdown .time {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
    min-width: 60px;
    text-align: center;
}

body.dark-mode .countdown .time {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-section {
        padding: 7rem 5% 2.5rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .breadcrumbs {
        padding: 0 5%;
        margin-top: 0.75rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .leaderboard {
        margin: 0 5%;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

body.dark-mode.page-faq .hero-section {
    background: linear-gradient(180deg, #0d1117 0%, #1a1f25 60%) !important;
    color: #f8fafc;
}

body.dark-mode.page-faq .hero-section h1 {
    color: #ffffff !important;
}

body.dark-mode.page-faq .hero-section p {
    color: #cbd5e1 !important;
}

body.dark-mode.page-faq .hero-section .hero-badge {
    background: rgba(99, 102, 241, 0.2) !important;
    color: #93c5fd !important;
}

/* Navbar Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 87, 34, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 87, 34, 0.2); 
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 87, 34, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hide auth-related nav items during initial load */
nav.auth-loading #nav-li-login,
nav.auth-loading #nav-li-signup,
nav.auth-loading #nav-li-profile {
    display: none;
}
.nav-hidden {
    display: none !important;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: #ff5722;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav .nav-links li {
    position: relative;
}

nav .nav-links li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

nav .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

nav .nav-links li a:hover {
    color: var(--primary-color);
}

nav .nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 5%;
}

body.dark-mode .nav-links.active {
    background: var(--header-scrolled-bg);
}

#theme-toggle {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease, transform 0.3s ease;
    margin-left: 1rem;
}

#theme-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1) rotate(15deg);
}

/* === Nav Auth Button Styles === */

nav .nav-links li a.btn-nav {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    line-height: 1.4;
}

nav .nav-links li a.btn-nav::after {
    display: none;
}

nav .nav-links li a.btn-nav-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

nav .nav-links li a.btn-nav-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white !important;
    transform: translateY(-2px);
}

nav .nav-links li a.btn-nav-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.4rem 1.2rem; /* Smaller padding for logout button */
}

nav .nav-links li a.btn-nav-secondary:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

nav .nav-links {
    align-items: center;
}

nav .nav-links li a#profile-icon {
    font-size: 1.5rem;
}

nav .nav-links li a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links.active li {
        text-align: center;
    }

    .nav-links.active li a.btn-nav {
        display: inline-block;
        margin-top: 0.5rem;
        padding: 0.8rem 1.8rem;
    }
}

/* Hero Section */
#home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}


@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, 50px) rotate(180deg);
    }
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    color: var(--primary-color);
}

#home h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ff5722;
    animation: fadeInUp 1s ease 0.4s backwards;
}

#home p {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #b73535;
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}
.hero-stats-bar {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem; 
    max-width: 1000px; 
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 1s backwards; 
}

.stat-item {
    background: rgba(255, 87, 34, 0.1); 
    backdrop-filter: blur(5px);
    border-radius: 50px; 
    padding: 1.25rem 2rem;
    text-align: center;
    flex-basis: 200px; 
    flex-grow: 1;      
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 87, 34, 0.2); 
}

.stat-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-item .label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Services Section */
#services {
    background-color: var(--services-bg);
    padding: 6rem 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

#services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.4s ease;
    
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
    margin: auto 1.5rem auto;
    /* filter: brightness(0) invert(1); */
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: capitalize;
    position: relative;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
}

/* Team Section */
#team {
    padding: 6rem 5%;
    background: var(--team-bg);
}

#team h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.team-member {
    display: flex;
    gap: 2.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.team-member:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.15);
}

.team-member:nth-child(even):hover {
    transform: translateX(-10px);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--primary-color);
    transition: transform 0.4s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-info {
    flex: 1;
}

.team-member h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member .role {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member .description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* GET STARTED SECTION */
.get-started {
  margin-bottom: 0;
  text-align: center;
  padding: 80px 20px 50px;
  background: linear-gradient(180deg, #fff1eb 0%, #e0f7fa 100%);
  color: #333;
  font-family: 'Poppins', sans-serif;
}

/* Headings */
.get-started h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff5722;
  transition: color 0.3s ease;
}

body.dark-mode .get-started {
  background: linear-gradient(180deg, #2c2c2c 0%, #3a3a3a 100%);
}

body.dark-mode .get-started h2 {
  color: #ffd8c9; 
}

.get-started h2 span {
  color: #ff5722;
}

.get-started .subtitle {
  color: #555;
  margin-bottom: 50px;
  font-size: 1rem;
}

/* TIMELINE CONTAINER */
.timeline {
  position: relative;
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #ff5722, #ff7043, #ec4899);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* === EACH TIMELINE ITEM === */
.timeline li {
  position: relative;
  width: 50%;
  padding: 40px 50px;
  box-sizing: border-box;
}

/* === SIDE ALIGNMENT === */
.direction-l {
  float: left;
  text-align: left;
}

.direction-r {
  float: right;
  text-align: left;
}

/* === CLEAR FLOATS === */
.timeline::after {
  content: "";
  display: table;
  clear: both;
}

/* === FLAG WRAPPER === */
.flag-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.direction-l .flag-wrapper {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

/* === ICON FOR TIMELINE=== */
.hexa {
  position: relative;
  width: 70px;
  height: 40px;
  background: linear-gradient(135deg, #ff5722, #ff7043, #ec4899);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
}

.hexa img {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
}

/* === TEXT BLOCK === */
.flag {
  background: #fff;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.15);
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.desc {
  background: #fff;
  padding: 15px 18px;
  margin-top: 10px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(255, 87, 34, 0.1);
  line-height: 1.6;
  color: #444;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

/* === ALIGN HEXA TO CENTER LINE === */
.direction-l .hexa {
  margin-right: -38px;
}

.direction-r .hexa {
  margin-left: -38px;
}

/* === IMPROVED ZIG-ZAG LAYOUT === */
.timeline li.direction-l {
  margin-top: 60px;
}

.timeline li.direction-r {
  margin-top: 120px;
}

/* Slight fine-tuning for a smooth step look */
.timeline li:nth-child(1).direction-l { margin-top: 0; }
.timeline li:nth-child(2).direction-r { margin-top: 80px; }
.timeline li:nth-child(3).direction-l { margin-top: 80px; }
.timeline li:nth-child(4).direction-r { margin-top: 80px; }


/* === HOVER EFFECTS (new polish) === */
.timeline li:hover .flag,
.timeline li:hover .desc {
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 900px) {
  .timeline::before {
    left: 30px;
  }

  .timeline li {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin-top: 40px !important;
    margin-bottom: 40px;
  }

  .direction-l,
  .direction-r {
    float: none;
    text-align: left;
  }

  .direction-l .flag-wrapper {
    flex-direction: row;
    justify-content: flex-start;
  }

  .direction-l .hexa,
  .direction-r .hexa {
    margin: 0;
  }

  .desc {
    text-align: left;
  }
}



/* --- Join Button --- */
.join-btn {
  background: linear-gradient(90deg, #ff5722, #ff7043, #ec4899);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 14px 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.3);
}

.join-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

body.dark-mode .join-btn {
  color: #fffaf8;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/*FAQ SECTION*/
.faq-section {
  background: #fff1eb;
  padding: 80px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  color: #ff5722;
  margin-bottom: 10px;
}

body.dark-mode .faq-section {
  background: #2c2c2c;
}

body.dark-mode .faq-section h2 {
  color: #ffd8c9;
}

.faq-intro {
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* FAQ Items */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(255, 87, 34, 0.1);
  overflow: hidden;
}

body.dark-mode .faq-item {
  background: #3a3a3a;
  color: #f5f5f5;
}

/* FAQ Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff5722;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #ffd8c9;
}

body.dark-mode .faq-question {
  color: #ffbfa9;
}

body.dark-mode .faq-question:hover {
  background: #444;
}

/* FAQ Answers */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fffaf8;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

body.dark-mode .faq-answer p {
  color: black;
}

/* GENERAL DARK MODE FALLBACKS*/
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: #ffd8c9;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Testimonials Section */
#testimonials {
    padding: 6rem 5%;
    background: var(--contact-bg);
    position: relative;
    overflow: hidden;
}

#testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-wrapper {
    max-width: 800px; /* Keep the width constraint */
    margin: 4rem auto 0;
    position: relative;
}

.testimonials-container {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    height: 100%;
    padding-top: 10px; /* Provides space for hover animation */
}

.testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 0 1rem; /* Creates space between cards */
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(3px);
    box-shadow: 0 10px 10px rgba(255, 87, 34, 0.15);
    border: 2px solid var(--primary-color);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }
}

.quote-icon i {
    color: white;
    font-size: 1.5rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1) rotate(5deg);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.rating {
    display: flex;
    gap: 0.3rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.rating i:nth-child(1) {
    animation-delay: 0s;
}

.rating i:nth-child(2) {
    animation-delay: 0.2s;
}

.rating i:nth-child(3) {
    animation-delay: 0.4s;
}

.rating i:nth-child(4) {
    animation-delay: 0.6s;
}

.rating i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

/* Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 87, 34, 0.3);
}

.testimonial-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-nav.prev {
    left: -25px;
}

.testimonial-nav.next {
    right: -25px;
}

/* Dots Navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #testimonials {
        padding: 4rem 3%;
    }

    .testimonials-container {
        height: 480px;
    }

    .testimonial-card {
        padding: 2rem;
    }

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

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-nav.prev {
        left: -10px;
    }

    .testimonial-nav.next {
        right: -10px;
    }

    .testimonial-author {
        gap: 1rem;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        height: 520px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
    }

    .quote-icon i {
        font-size: 1.2rem;
    }
}


/* About Section */
#about-us {
    padding: 6rem 5%;
    background: var(--about-bg);
}

#about-us h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 4rem auto 0;
    background: var(--card-bg);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 700px;
}

.about-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 87, 34, 0.3);
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.about-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-text .title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
#contact {
    padding: 4rem 5%;
    background: var(--contact-bg);
}

#contact h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-top: 4rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-container h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.contact-container>p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.2rem;
    background: var(--lighter-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-family: 'SUSE', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
    background: var(--light-bg);
}

.contact-form button {
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

/* Footer */
footer {
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 5% 2rem;
}



.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5722;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) rotate(5deg);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 87, 34, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .team-member {
        flex-direction: column !important;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    #home h1 {
        font-size: 2.5rem;
    }

    #home p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-container,
    .about-content {
        padding: 2rem;
    }

    .team-member img,
    .about-image img {
        width: 150px;
        height: 150px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================
   PRELOADER STYLES
===================== */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

#loader-logo {
  width: 90px;
  height: 90px;
  animation:  2s linear infinite;
  
}

#loader-text {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #444;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}


