
    /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Montserrat', sans-serif;
        overflow-x: hidden;
        background: #0a1929;
        color: #fff;
    }
    
    .hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* ✅ fills full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1929, #122e4d);
    overflow: hidden;
    padding: 0;
}

/* keeps text & circle responsive and centered */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;         /* ✅ stretch full width */
    max-width: 1400px;   /* ✅ keeps layout centered on big screens */
    margin: 0 auto;
    padding: 0 40px;
}

/* make sure no horizontal scrollbars */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
.hero-container {
    position: relative;
    z-index: 2;
}




    
    .hero-content {
        flex: 1;
        max-width: 600px;
        padding: 40px;
    }
    
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .circle-container {
        position: relative;
        width: 380px;
        height: 380px;
        animation: float 6s ease-in-out infinite;
    }
    
    .circle {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #63ffd6, #00bcd4);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 50px rgba(99, 255, 214, 0.4);
    }
    
    .circle-inner {
        width: 92%;
        height: 92%;
        background: #0a1929;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .circle-inner img {
        width: 70%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 0 15px rgba(99, 255, 214, 0.6));
    }
    
    .hero-badge {
        display: inline-block;
        background: rgba(99, 255, 214, 0.15);
        color: #63ffd6;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 1px;
        animation: fadeIn 1s ease-out;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 15px;
        background: linear-gradient(to right, #63ffd6, #00bcd4);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: slideIn 1s ease-out;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        font-weight: 600;
        color: #a3d9ff;
        margin-bottom: 25px;
        animation: slideIn 1.2s ease-out;
    }
    
    .hero-description {
        color: #cce5ff;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 35px;
        animation: fadeIn 1.5s ease-out;
    }
    
    .hero-stats {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
        animation: fadeIn 1.8s ease-out;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
        font-weight: 700;
        color: #63ffd6;
        line-height: 1;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: #a3d9ff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        display: flex;
        gap: 15px;
        animation: fadeIn 2s ease-out;
    }
    
    .btn {
        padding: 14px 90px;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-primary {
        background: linear-gradient(45deg, #63ffd6, #00bcd4);
        color: #0a1929;
        border: none;
        box-shadow: 0 5px 15px rgba(99, 255, 214, 0.4);
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(99, 255, 214, 0.6);
    }
    
    .btn-secondary {
        background: transparent;
        color: #63ffd6;
        border: 2px solid #63ffd6;
        box-shadow: 0 5px 15px rgba(99, 255, 214, 0.2);
    }
    
    .btn-secondary:hover {
        background: rgba(99, 255, 214, 0.1);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(99, 255, 214, 0.3);
    }
    
    .floating-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }
    
    .shape {
        position: absolute;
        background: linear-gradient(45deg, rgba(99, 255, 214, 0.1), rgba(0, 188, 212, 0.1));
        border-radius: 50%;
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        bottom: 50px;
        left: 100px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
        top: 200px;
        left: -75px;
    }
    
    .shape-4 {
        width: 100px;
        height: 100px;
        bottom: 100px;
        right: 200px;
    }
    
    @keyframes float {
        0% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0); }
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes slideIn {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    /* Mobile Logo Styling */
    .mobile-logo {
        display: none;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .mobile-logo-circle {
        width: 120px;
        height: 120px;
        background: linear-gradient(45deg, #63ffd6, #00bcd4);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 20px;
        box-shadow: 0 0 30px rgba(99, 255, 214, 0.4);
    }
    
    .mobile-logo-inner {
        width: 90%;
        height: 90%;
        background: #0a1929;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-logo-inner img {
        width: 60%;
        height: auto;
        filter: drop-shadow(0 0 10px rgba(99, 255, 214, 0.6));
    }
    
    /* Stats Section */
    .stats-section {
        background: linear-gradient(135deg, #0a1929 0%, #122e4d 100%);
        padding: 80px 0;
    }
    
    .stats-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #63ffd6;
    }
    
    .stats-section p {
        color: #a3d9ff;
    }
    
    /* About Section */
    .about-section {
        background: #0a1929;
        padding: 80px 0;
    }
    
    .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-image {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .about-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .section-title {
        color: #0a1929;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        color: #0a1929;
        margin-bottom: 40px;
    }
    
    .section-padding {
        padding: 60px 0; /* Reduced from 80px */
    }
    
    /* Feature Cards */
    .feature-card {
        background: #0a1929;
        border: 1px solid rgba(99, 255, 214, 0.1);
        border-radius: 10px;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(99, 255, 214, 0.3);
        box-shadow: 0 10px 25px rgba(99, 255, 214, 0.15);
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #63ffd6;
    }
    
    .feature-card h4 {
        color: #ffffffff;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        color: #cce5ff;
    }
    
    .btn-outline-primary {
        color: #ffffffff;
        border-color: #ffffffff;
    }
    
    .btn-outline-primary:hover {
        background-color: rgba(99, 255, 214, 0.1);
        color: #63ffd6;
        border-color: #63ffd6;
    }
    
    /* Event Cards */
        .event-card .card-title {
    color: #212529; /* Bootstrap's default dark text color */
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: none; /* remove any glowing or shadow */
    border-bottom: none; /* remove underline if any */
    padding-bottom: 0;
    margin-bottom: 0.75rem;
    transition: none; /* disable animation */
}

/* Remove hover color change and effects */
.event-card:hover .card-title {
    color: #212529;
    text-shadow: none;
}

    
    /* Gallery Section */
    .gallery-section {
        padding: 60px 0; /* Reduced from 80px */
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        background: rgba(10, 25, 41, 0.7);
        border: 1px solid rgba(99, 255, 214, 0.1);
        border-radius: 10px;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        border-color: rgba(99, 255, 214, 0.3);
        box-shadow: 0 10px 25px rgba(99, 255, 214, 0.15);
    }
    
    .testimonial-card h6 {
        color: #63ffd6;
    }
    
    .testimonial-card p {
        color: #cce5ff;
    }
    
    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #0a1929 0%, #122e4d 100%);
        padding: 80px 0;
    }
    
    .cta-section h2 {
        color: #63ffd6;
    }
    
    .cta-section p {
        color: #a3d9ff;
    }
    
    /* Footer */
    footer {
        background: #0a1929;
        border-top: 1px solid rgba(99, 255, 214, 0.1);
    }
    
    footer h5 {
        color: #63ffd6;
    }
    
    footer a {
        color: #a3d9ff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: #63ffd6;
    }
    
    footer p, footer li {
        color: #cce5ff;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .hero-container {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }
        
        .hero-content {
            max-width: 100%;
            padding: 20px;
        }
        
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-stats {
            justify-content: center;
        }
        
        .hero-buttons {
            justify-content: center;
        }
        
        .circle-container {
            width: 320px;
            height: 320px;
        }
        
        .about-content {
            flex-direction: column;
            text-align: center;
        }
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
        }
        
        .circle-container {
            width: 280px;
            height: 280px;
        }
        
        .hero-stats {
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn {
            width: 250px;
            justify-content: center;
        }
        
        /* Show mobile logo and hide desktop circle on small devices */
        .mobile-logo {
            display: block;
        }
        
        .circle-container {
            display: none;
        }
        
        .section-padding {
            padding: 50px 0;
        }
    }
    
    @media (max-width: 480px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .stat-number {
            font-size: 1.8rem;
        }
        
        .mobile-logo-circle {
            width: 100px;
            height: 100px;
        }
        
        .section-padding {
            padding: 40px 0;
        }
    }

.gallery-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    min-height: 300px; /* Ensures uniform card height for consistent grid */
}

.gallery-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.gallery-card h5 {
    color: #212529;
    font-weight: 600;
    margin: 0;
    font-size: 1.15rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

@media (max-width: 767.98px) {
    .gallery-card img {
        height: 120px;
    }
}


.notification-bar {
    white-space: nowrap;
}
.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* ✅ Prevent horizontal scroll */
}



@media (max-width: 767.98px) {
    footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    footer .row {
        flex-direction: column !important;
        text-align: center;
    }

    footer .col-lg-4,
    footer .col-lg-2,
    footer .col-md-4 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 20px;
    }

    footer h5 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    footer ul.list-unstyled {
        padding-left: 0;
        list-style: none;
    }

    footer ul.list-unstyled li {
        margin-bottom: 10px;
    }

    footer ul.list-unstyled li a {
        font-size: 1rem;
        display: inline-block;
        width: 100%;
        padding: 8px 0;
    }

    footer .d-flex.gap-3 {
        justify-content: center;
    }

    footer .d-flex.gap-3 a {
        font-size: 1.5rem;
        padding: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: rgba(99, 255, 214, 0.1);
        transition: background-color 0.3s ease;
    }

    footer .d-flex.gap-3 a:hover {
        background-color: rgba(99, 255, 214, 0.3);
        color: #63ffd6;
        text-decoration: none;
    }

    footer p.mb-0 {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}



@media (max-width: 767.98px) {
    #events .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    #events .row {
        margin-left: 0;
        margin-right: 0;
    }

    #events .col-md-4 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1.5rem;
    }

    #events .card.event-card {
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 10px;
    }

    #events .card-img-top {
        height: auto;
        max-height: 200px;
        object-fit: cover;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        width: 100%;
    }

    #events .card-title {
        font-size: 1.25rem;
        font-weight: 600;
    }

    #events .card-text {
        font-size: 0.95rem;
    }

    #events .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0 auto;
        display: block;
        border-radius: 30px;
        text-align: center;
    }

    #events .text-center.mb-5 h2.section-title {
        font-size: 1.75rem;
    }

    #events .text-center.mb-5 p.section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}



@media (max-width: 767.98px) {
    #gallery .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    #gallery .row.g-3 {
        margin-left: 0;
        margin-right: 0;
    }

    #gallery .col-md-3,
    #gallery .col-6 {
        max-width: 50% !important;
        flex: 0 0 50% !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1.25rem;
    }

    #gallery .img-fluid.rounded {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
    }

    #gallery h5 {
        font-size: 1rem;
        margin-top: 0.5rem;
        color: #000;
        word-break: break-word;
        text-align: center;
    }

    #gallery .text-center.mt-4 .btn-primary {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 30px;
        margin: 1rem auto 0 auto;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #gallery .col-md-3,
    #gallery .col-6 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}


@media (max-width: 767.98px) {
    .cta-section .row {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .cta-section .col-lg-8,
    .cta-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .cta-section .col-lg-4 {
        text-align: center !important;
    }

    /* ✅ Buttons side by side */
    .cta-section .col-lg-4 .btn {
        display: inline-block;
        width: auto;
        min-width: 140px; /* keeps good size */
        margin: 5px;
        font-size: 1rem;
        padding: 12px 24px;
        border-radius: 30px;
    }
}
 .notification-bar {
            height: 50px;
            border-radius: 8px;
            margin: 1rem 0;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25) !important;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .notification-bar:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35) !important;
        }
        
        .marquee-container {
            white-space: nowrap;
            position: relative;
        }
        
        .marquee {
            display: inline-block;
            padding-left: 100%; /* Start from right */
            animation: marquee 20s linear infinite;
        }
        
        .notification-item {
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        @keyframes marquee {
            0%   { transform: translateX(0%); }
            100% { transform: translateX(-100%); }
        }
        
        .pulse-dot {
            width: 12px;
            height: 12px;
            background-color: #ff0000;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
            box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
            }
            
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
            }
            
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
            }
        }
        
        /* Add a subtle flash animation to the entire bar */
        .notification-bar {
            animation: subtleFlash 3s infinite;
        }
        
        @keyframes subtleFlash {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.9; }
        }


        /* Features section general styling */
#features {
    padding: 60px 20px;
}

#features .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

#features .section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

#features .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: #0d1b2a; /* dark bg look */
    color: #fff;
}

#features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#features .feature-icon {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 12px;
}

/* Card title & text */
#features .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

#features .card-text {
    font-size: 0.95rem;
    color: #dee2e6;
    margin-bottom: 15px;
    min-height: 60px; /* keeps cards consistent height */
}

/* Buttons */
#features .btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#features .btn:hover {
    background: #00bcd4;
    color: #fff;
}

/* Responsive styling */
@media (max-width: 991.98px) {
    #features {
        padding: 40px 15px;
    }
}

/* Mobile screens: 2 per row & compact */
@media (max-width: 575.98px) {
    #features {
        padding: 25px 10px;
    }

    #features .section-title {
        font-size: 1.4rem;
    }

    #features .section-subtitle {
        font-size: 0.9rem;
    }

    #features .feature-card {
        padding: 12px !important;
        margin-bottom: 12px;
    }

    #features .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    #features .card-title {
        font-size: 1rem;
    }

    #features .card-text {
        font-size: 0.8rem;
        min-height: 50px;
    }

    #features .btn {
    display: block;
    width: 100%;
    font-size: 0.7rem;      /* smaller text */
    padding: 4px 8px;       /* less padding */
    margin-top: 6px;
    text-align: center;
    border-radius: 18px;    /* smaller rounded button */
    white-space: normal;
    word-break: break-word;
}


    #features .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #features .row > div {
        padding-left: 6px;
        padding-right: 6px;
    }
}