@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

p {
    font-size: 13px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1290px;
    }
}

/* Navbar */
.header-logo {
    height: 85px;
    object-fit: contain;
}

/* Desktop Nav Links */
.nav-link-custom {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: #00b3b3;
}

/* Mobile Nav Links */
.nav-link-mobile {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.nav-link-mobile:hover {
    color: #00b3b3;
}

/* CTA Button */
.btn-header-cta {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;

    /* Gradient */
    background: linear-gradient(90deg, #6a6df0, #8a63f8);

    /* Shadow */
    box-shadow: 0 6px 15px rgba(106, 109, 240, 0.35);

    /* Smooth hover */
    transition: all 0.3s ease;
}

.btn-header-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 109, 240, 0.45);
}

@media (max-width: 768px) {
    .header-logo {
        height: 55px;
    }
}

@media (max-width: 991px) {
    #global-header .btn {
        padding: 6px 10px;
    }

    #global-header .fa-bars {
        font-size: 26px;
    }

    .btn-header-cta {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 15px;
    }
}

/* Hero Section */

.hero-section {
    background: radial-gradient(circle at 50% 50%, #3a2a70, #0f172a);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #6c63ff, #ff6ec4, #ffa600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
    font-size: 18px;
}

.badge-box {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 10px;
    color: white;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.4);
}

.stats h2 {
    font-weight: 700;
}

.stats p {
    color: #94a3b8;
}

.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
}

/* About Section */

.about-section {
    background: #f5f7ff;
}

.about-img {
    border-radius: 20px;
}

/* Floating Card */

.events-coming{
background:#f7f8fb;
font-family: 'Segoe UI', sans-serif;
}

.event-badge{
background:#eef0ff;
color:#6366f1;
padding:6px 14px;
border-radius:20px;
font-size:14px;
font-weight:600;
}

.event-badge .dot{
height:8px;
width:8px;
background:#6366f1;
border-radius:50%;
display:inline-block;
margin-right:6px;
}

.main-title{
font-size:42px;
font-weight:700;
color:#1f2937;
}

.main-title span{
background:linear-gradient(90deg,#6366f1,#ec4899);
-webkit-background-clip:text;
color:transparent;
}

.subtitle{
color:#6b7280;
max-width:650px;
margin:auto;
}

.event-filters .filter{
border:none;
background:#e9ecf3;
padding:10px 20px;
border-radius:25px;
margin:5px;
font-size:14px;
font-weight:600;
}

.filter.active{
background:#6366f1;
color:white;
}

.coming-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.coming-card:hover{
transform:translateY(-6px);
}

.card-top{
height:140px;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.card-top i{
font-size:42px;
color:white;
}

.purple{
background:linear-gradient(135deg,#6366f1,#8b5cf6);
}

.orange{
background:linear-gradient(135deg,#ff6a6a,#ff9a00);
}

.green{
background:linear-gradient(135deg,#0ea5a4,#10b981);
}

.coming-tag{
position:absolute;
top:12px;
left:12px;
background:rgba(255,255,255,0.3);
color:white;
padding:5px 12px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

.card-body{
padding:25px;
}

.card-body h5{
font-weight:700;
margin-bottom:10px;
}

.card-body p{
color:#6b7280;
font-size:14px;
}

.card-body a{
color:#6366f1;
font-weight:600;
font-size:14px;
text-decoration:none;
}

.notify-btn{
background:#6366f1;
color:white;
border:none;
padding:12px 28px;
border-radius:30px;
font-weight:600;
}

.notify-btn:hover{
background:#4f46e5;
}


.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a6df0, #8a63f8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

/* Badge */

.about-badge {
    display: inline-block;
    padding: 6px 15px;
    background: #eef0ff;
    border-radius: 25px;
    font-size: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #6c63ff;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

/* Heading */

.about-title {
    font-size: 40px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, #6c63ff, #ff5ea8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-desc {
    color: #6c757d;
    font-size: 15px;
    max-width: 520px;
}

/* Features */

.feature-box {
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-purple {
    background: #6c63ff;
}

.icon-pink {
    background: #ff5ea8;
}

.icon-green {
    background: #20c997;
}

/* Link */

.learn-more {
    color: #6c63ff;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Event Section */

/* EVENTS SECTION */

.events-section {
    background: #f7f8ff;
}

/* Badge */

.event-badge {
    background: #eef0ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #6c63ff;
}

/* Title */

.events-title {
    font-size: 40px;
    font-weight: 700;
}

.events-desc {
    color: #6b7280;
    max-width: 600px;
    margin: auto;
}

/* Filters */

.filter-pill {
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    background: #eef0ff;
    margin: 5px;
    font-size: 14px;
}

.filter-pill.active {
    background: linear-gradient(135deg, #6c63ff, #8a63f8);
    color: #fff;
}

/* Cards */

.events-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.events-card:hover {
    transform: translateY(-6px);
}

/* Image */

.events-img {
    position: relative;
}

.events-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Tag */

.events-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    color: white;
}

.tag-purple {
    background: #6c63ff;
}

.tag-green {
    background: #10b981;
}

.tag-pink {
    background: #ff5ea8;
}

/* Content */

.events-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.events-date {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.events-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

.events-location {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* Button */

.events-btn {
    margin-top: auto;
    border: none;
    padding: 10px;
    border-radius: 8px;
    color: white;
    background: linear-gradient(135deg, #6c63ff, #8a63f8);
}

/* View All */

.view-events-btn {
    background: #eef0ff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #6c63ff;
    font-weight: 600;
}

.why-attend-section {
    background: #f8f9ff;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Icon Colors */

.icon-purple {
    background: linear-gradient(45deg, #6a5cff, #8f6bff);
}

.icon-orange {
    background: linear-gradient(45deg, #ff7a18, #ffb347);
}

.icon-green {
    background: linear-gradient(45deg, #00c9a7, #00e0a3);
}

.icon-pink {
    background: linear-gradient(45deg, #ff5f6d, #ffc371);
}

.icon-violet {
    background: linear-gradient(45deg, #6a5cff, #b06cff);
}

.icon-teal {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
}

.featured-event-section {
    background: #f4f6fb;
}

.featured-image {
    position: relative;
}

.featured-image img {
    border-radius: 20px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg, #ff4da6, #ff6a6a);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* floating stats */

.featured-stats {
    position: absolute;
    bottom: -25px;
    left: 30px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    padding: 18px 25px;
    gap: 20px;
    align-items: center;
}

.stat-item h4 {
    margin: 0;
    font-weight: 700;
    color: #6a5cff;
}

.stat-item p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

.divider {
    width: 1px;
    height: 40px;
    background: #eee;
}

/* right content */

.date-pill {
    display: inline-block;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.featured-title {
    font-size: 42px;
    font-weight: 700;
}

.featured-desc {
    color: #666;
    margin-top: 10px;
}

/* countdown */

.countdown-box {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.time-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.time-card h4 {
    margin: 0;
    font-weight: 700;
}

.time-card span {
    font-size: 13px;
    color: #777;
}

/* buttons */

.btn-register {
    background: linear-gradient(90deg, #6a5cff, #a45cff);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-learn {
    background: #e9ecef;
    padding: 12px 25px;
    border-radius: 10px;
    margin-left: 10px;
}

.partners-section {
    background: #f7f8fc;
}

.partners-badge {
    background: #eef0ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #5c6cff;
}

.partners-title {
    font-size: 42px;
    font-weight: 700;
}

.partners-desc {
    max-width: 600px;
    margin: 15px auto 40px;
    color: #6c757d;
}

/* logos */

.partners-logos {
    margin-top: 30px;
}

.partner-item {
    font-size: 22px;
    font-weight: 600;
    color: #9aa0a6;
    padding: 20px 10px;
    transition: 0.3s;
}

.partner-item:hover {
    color: #4a4aff;
    transform: scale(1.05);
}

/* CTA */

.partner-cta-text {
    color: #6c757d;
    margin-bottom: 15px;
}

.partner-btn {
    background: #e9ecff;
    color: #5a5cff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
}

.partner-btn:hover {
    background: #dfe3ff;
}

.community-section {
    background: linear-gradient(90deg, #5b6cff, #d84a9c);
    color: #fff;
    border-radius: 0;
}

.community-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.community-title {
    font-size: 42px;
    font-weight: 700;
}

.community-desc {
    max-width: 600px;
    margin: 10px auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.community-form {
    gap: 10px;
    flex-wrap: wrap;
}

.community-input {
    width: 350px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.community-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.community-btn {
    padding: 14px 30px;
    border-radius: 10px;
    background: #fff;
    color: #5b6cff;
    border: none;
    font-weight: 600;
}

.community-btn:hover {
    background: #f3f3f3;
}

.community-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-section {
    background: #f7f8fc;
}

.contact-badge {
    background: #eef0ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #5c6cff;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
}

.contact-desc {
    color: #6c757d;
    margin-top: 10px;
    max-width: 450px;
}

/* contact info */

.contact-info {
    gap: 15px;
    align-items: flex-start;
}

.contact-info h6 {
    margin: 0;
    font-weight: 600;
}

.contact-info p {
    margin: 0;
    color: #6c757d;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.icon-purple {
    background: linear-gradient(45deg, #6a5cff, #8f6bff);
}

.icon-pink {
    background: linear-gradient(45deg, #ff5f6d, #ff7eb3);
}

.icon-green {
    background: linear-gradient(45deg, #00c9a7, #00e0a3);
}

/* social icons */

.social-icons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef0ff;
    margin-right: 8px;
    color: #5c6cff;
}

/* form */

.contact-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-submit {
    background: linear-gradient(90deg, #5b6cff, #a95cff);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
}

/* Footer */

.site-footer {
    background: #ffffff;
    padding: 60px 0 30px;
    color: #000;
    font-size: 15px;
}

.footer-logo {
    max-width: 160px;
}

.footer-text {
    color: #333;
    line-height: 1.7;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00b3b3;
}

.footer-contact i {
    margin-right: 10px;
    color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: 0.3s;
}

.footer-social a:hover {
    background: rgb(99 102 241 / var(--tw-text-opacity, 1));
    color: #fff;
}

.site-footer hr {
    margin: 40px 0 20px;
    border-color: #ddd;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

.footer-bottom-links a {
    margin-left: 15px;
    color: #000;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #00b3b3;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links a {
        margin: 0 8px;
    }

    .footer-logo {
        max-width: 100px;
    }
}


/* about page */

    .about-hero {
        position: relative;

        height: 75vh;        /* 👈 reduced height */
        min-height: 520px;

        background-image: url('/images/about-banner.jpg');
        background-size: cover;
        background-position: right center;
        background-repeat: no-repeat;

        display: flex;
        align-items: center;
        color: #fff;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;

        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 40%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(0, 0, 0, 0.05) 100%
        );

        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 850px;
        margin: auto;
    }

    .hero-heading {
        font-size: 44px;
        font-weight: 800;
        line-height: 1.15;
    }

    .hero-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 18px 0 26px;
    }

    .hero-divider span {
        width: 70px;
        height: 1px;
        background: rgba(255,255,255,0.4);
    }

    .hero-divider .dot {
        width: 6px;
        height: 6px;
        background: #f4a261;
        border-radius: 50%;
    }
    .hero-para {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .hero-para.muted {
        font-size: 15.5px;
        opacity: 0.85;
    }

    .hero-actions {
        margin-top: 28px;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: linear-gradient(90deg, #6a6df0, #8a63f8);
        color: #ffffff;
        padding: 14px 28px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        /* box-shadow: 0 12px 25px rgba(15, 185, 177, 0.35); */
    }

    .btn-outline {
        border: 1px solid rgba(255,255,255,0.6);
        padding: 12px 24px;
        border-radius: 6px;
        color: #fff;
        text-decoration: none;
    }

    @media (max-width: 768px) {

        .hero-para {
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 13px;
        }
        .about-hero {
            height: auto;
            min-height: 420px;
            padding: 80px 0;
            background-position: center;
        }
        .hero-heading {
            font-size: 26px;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            padding: 40px 0 0px
        }

        .hero-title {
            font-size: 30px;
        }

        .hero-desc {
            font-size: 16px;
        }

        .hero-buttons a {
            margin-bottom: 10px;
        }

        .wave {
            height: 0;
        }

        .about-title {
            font-size: 30px;
        }

        .main-title {
            font-size: 30px;
        }

        .events-title {
            font-size: 30px;
        }

        .community-title {
            font-size: 30px;
        }

        .contact-title {
            font-size: 30px;
        }

        .gradient-text {
            font-size: 30px;
        }
    }
