
        /* Featured Event Section */
        .featured-event-section {
           
            padding: 0.1rem 0;
            position: relative;
            width: 100%;
            max-width: 100%;
        }

        .featured-event-container {
            max-width: 870px;
            margin: 0 auto;
            padding-top: 0rem;
            padding-bottom: 0.8rem;
            
        }

        .featured-event-title {
            text-align: center;
            color: orangered;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        .featured-event-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .featured-event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #0b2494, #764ba2);
        }

        .event-header {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 0.1rem;
        }

        .event-date-box {
            background: #0f2259;
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            min-width: 100px;
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .event-date-day {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
        }

        .event-date-month {
            font-size: 2.45rem;
            font-weight: 900;
            margin-top: 0.3rem;
        }

        .event-details {
            flex: 1;
        }

        .event-title {
            font-size: 2rem;
            font-weight: 900;
            color: #0f2259;
            margin-bottom: 1rem;
        }

        .event-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .event-info-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #666;
            font-size: 1rem;
            text-align: justify;
        }

        .event-info-icon {
            font-size: 1.2rem;
            color: orangered;
        }

        .event-description {
            color: #666;
            line-height: 1;
             margin-top: 1.2rem;
            text-align: justify;
            font-style: italic;
        }


        /* Countdown Timer */
        .countdown-section {
            background: #f8f9ff;
            border-radius: 15px;
            text-align: center;
            padding-top: 1rem;
            padding-bottom: 0.5rem;
        }

        .countdown-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0f2259;
            margin-bottom: 1rem;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: white;
            border-radius: 10px;
            padding: 1rem;
            min-width: 80px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: 900;
            color: #0f2259;
            line-height: 1;
        }

        .countdown-label {
            font-size: 0.75rem;
            color: #666;
            margin-top: 0.5rem;
            font-weight: 600;
        }




        /* Submenu container */
        .has-submenu .submenu {
            display: none;
            position: absolute;
            background-color: rgba(0, 0, 0, 0.9);
            list-style: none;
            padding: 4px 2px;
            margin: 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            min-width: 100px;
            z-index: 900;
        }

        /* Show submenu on hover */
        .has-submenu:hover .submenu {
            display: block;
        }

        /* Submenu items */
        .submenu li {
            width: 100%;
        }

        .submenu a {
            display: block;
            padding: 10px 10px;
            color: white;
            text-decoration: none;
            white-space: nowrap;
        }

        /* Submenu hover effect */
        .submenu a:hover {
            background-color: rgba(0, 0, 0, 0.9);
        }


        
        /* Responsive Design */
        @media (max-width: 768px) {
            html, body {
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }
            
            .featured-event-container,
            .slider-container,
            .calendar-container,
            .upcoming-events-container {
                padding: 0 0rem;
                max-width: 100%;
            }
            
            .featured-event-card {
                margin: 0;
                width: 100%;
                box-sizing: border-box;
            }
            
             .countdown-timer {
                gap: 0.5rem;
            }

            .countdown-item {
                min-width: 60px;
                padding: 0.8rem;
            }

            .countdown-number {
                font-size: 1.2rem;
            }
             .event-date-box {
            display: none;
            }
            
            .event-title{
            font-size: 1.3rem;
            }


        .featured-event-card {
            padding: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .image-slider-section,
        .calendar-section,
        .upcoming-events-section {
            width: 100%;
            max-width: 900px;
            padding: 0.5rem;
        }
    }

         @media (max-width: 480px) {
            .featured-event-title {
                font-size: 1.4rem;
            }

            .event-date-day {
                font-size: 2rem;
            }

            .event-title{
            font-size: 1.2rem;
            }

            .calendar-day {
                min-height: 1.5rem;
                padding: 0.3rem;
            }
            .mobile-nav-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-align: center;
        }

        }



/* New Connect, Grow & Thrive Section Styles */
        .connect-grow-thrive-section {
            background: white;
            padding: 0.6rem 0rem 1rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem auto;
        }

        .connect-growth-thrive-section {
            background: white;
            padding: 0.2rem 0.2rem 0.1rem;
            text-align: center;
            max-width: 870px;
            margin: 0 auto 0.4rem auto;
        }
        .connect-growth-thrive-container p {
            font-size: 1.25rem;
            font-weight: 500;
            max-width: 900px;
            margin: 0 auto 1rem auto;
            color: #222;
        }

        .connect-grow-thrive-container h2 {
            font-size: 1.3rem;
            font-weight: 900;
            margin-bottom: 0.2rem;
            letter-spacing: 1.5px;
        }

        .connect-grow-thrive-container p {
            font-size: 1.25rem;
            font-weight: 500;
            max-width: 850px;
            margin: 0 0.5rem 1.8rem 0.5rem;
            color: #222;
        }

        .connect-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(265px, 3fr));
            gap: 1.2rem; 
            padding: 0 0.5rem;
        }

        .connect-card {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            background: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: default;
        }

        .connect-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.15);
        }

        .connect-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .connect-card h3 {
            margin: 0.5rem 0.5rem 0.5rem 0;
            font-weight: 900;
            font-size: 1.1rem;
            color: #222;
            letter-spacing: 0.8px;
            padding: 0.5rem;
        }
        .card-slider {
    position: relative;
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.card-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.card-slider img.active {
    opacity: 1;
}

/* WhatsApp CTA */
.whatsapp-container {
    position: fixed;
    bottom: 165px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px; /* space between text and button */
    z-index: 1000;
}

.whatsapp-button {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-text {
    background-color: orangered;
    color: white;
    font-family: Montserrat;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
    font-weight: bold;
}

.whatsapp-container {
    position: fixed;
    bottom: 165px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px; /* space between text and button */
    z-index: 1000;
    opacity: 1; /* visible initially */
    transition: opacity 0.5s; /* smooth fade */
} 



/* Navigation arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.card-slider:hover .slider-btn {
    opacity: 0.6;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}
    }
 @media (max-width: 320px) {

    .connect-cards {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            margin: 0;
        }

        .mobile-nav-label {
            font-size: 0.6rem;
            font-weight: 600;
            text-align: center;
        }
    }

@media (max-width: 768px) {
    .slider-btn {
        opacity: 0.6;
        pointer-events: auto;
        margin: 0;
    }
}
