﻿p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}
/*HERO*/
/* ===========================
   HERO (reduced height)
   =========================== */
.hero {
    padding: 90px 20px;
    text-align: center;
    color: white;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
}

    .hero:hover {
        box-shadow: 0 0 25px rgba(255, 200, 0, 0.6), 0 0 50px rgba(255, 100, 0, 0.4);
        transform: translateY(-4px);
    }

    /* Optional futuristic glowing border */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 2px solid transparent;
        border-radius: 15px;
        background: linear-gradient(90deg, #ffdd00, #ff6b6b, #ffdd00);
        background-size: 300% 100%;
        opacity: 0;
        transition: 0.4s ease;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .hero:hover::after {
        opacity: 1;
        animation: moveBorder 2.5s linear infinite;
        border-color: rgba(255, 200, 0, 0.8);
        box-shadow: 0 0 20px rgba(255, 200, 0, 0.7);
    }

@keyframes moveBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}


.full-background {
    background-image: url('images/bg-9.jpg'); /* your image */
    background-size: 100% 100%; /* stretch width & height */
    background-position: center; /* cover entire div */
    background-repeat: no-repeat; /* prevent repeating */
}

.hero h1 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h2 {
    margin: 15px 0 5px;
    font-size: 22px;
    font-weight: 300;
}

.hero .date {
    margin-top: 25px;
    font-size: 26px;
    background: rgba(255,255,255,0.15);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

    .section h3 {
        font-size: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }


/* INFO CARDS */
.gradient-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    position: relative;
    display: inline-block;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.15);
        border: 2px solid transparent;
        background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #ff6a00, #ee0979, #8E2DE2) border-box;
    }

    .card h4 {
        font-size: 20px;
        font-weight: 700;
    }

    .card p {
        margin-top: 8px;
        color: #555;
    }

    /* List styling */
    .card ul {
        margin-top: 10px;
        padding-left: 18px;
    }

        .card ul li {
            margin-bottom: 10px;
            text-align: left;
        }

.fade-word {
    animation: fadeIn 1.6s ease-in-out;
    display: inline-block;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        letter-spacing: 1px;
    }

    100% {
        opacity: 1;
        letter-spacing: normal;
    }
}

.highlight {
    font-weight: bold;
    font-style: italic;
}

.clean-list {
    font-size: 16px;
    line-height: 1.6;
    margin-left: 20px;
    text-align: justify;
}


/* OTHER NAV*/

/* row for heading + toggle */
.heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    /* heading text */
    .heading-row h3 {
        width: 100%;
        padding-left: 40px;
    }

/* NAV WRAPPER */
.glass-nav {
    position: relative;
    margin-left: 15px;
}

/* TOGGLE BUTTON */
.glass-btn {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    /* visible background */
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.15);
    /* floating effect */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: .3s ease;
}

    .glass-btn span {
        width: 26px;
        height: 3px;
        background: #222; /* FIXED visible lines */
        border-radius: 50px;
        transition: .4s ease;
    }

    /* HOVER EFFECT */
    .glass-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    }

/* HIDDEN CHECKBOX */
#nav-toggle {
    display: none;
}

    /* X TRANSFORM */
    #nav-toggle:checked + .glass-btn span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #nav-toggle:checked + .glass-btn span:nth-child(2) {
        opacity: 0;
    }

    #nav-toggle:checked + .glass-btn span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* KEEP LINES DARK IN X STATE */
    #nav-toggle:checked + .glass-btn span {
        background: #222 !important;
    }

/* MENU BOX */
.glass-menu {
    position: absolute;
    right: 0;
    top: 55px;
    padding: 20px 25px;
    background: #002B5B; /* DARK BLUE */
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    /*0 0 20px 10px rgba(0, 43, 91, 0.7),*/ /* Inner strong glow */
    /*0 0 50px 30px rgba(0, 43, 91, 0.3);*/ /* Outer subtle glow */
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: .45s ease;
    text-align: left;
    z-index: 50;
    padding-bottom: 10px !important;
}

#nav-toggle:checked ~ .glass-menu {
    width: 200px;
    opacity: 1;
    height: auto;
    transform: translateY(0);
    box-shadow: 0 0 25px 0px rgba(0, 43, 91, 0.9), 0 0 50px 3px rgba(0, 43, 91, 0.4);
}

/* MENU LINKS */


.glass-menu li {
    list-style: none;
    margin: 12px 0;
    padding-left: 40px !important;
}

.glass-menu a {
    color: #ffffff !important; /* WHITE TEXT */
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .3px;
    transition: .3s ease;
}

    .glass-menu a:hover {
        opacity: 0.8;
        color: #0077ff;
    }

.glass-nav ul li:before {
    content: "\f101";
    font-family: FontAwesome;
    color: #fff !important;
    position: absolute;
    left: 26px;
}

.glass-menu li:hover {
    opacity: 0.8;
    color: #0077ff;
}

@media (max-width: 600px) {

    .heading-row {
        flex-direction: column; /* stack items vertically */
        align-items: flex-end; /* move toggle button to right */
    }

    .glass-nav {
        order: -1; /* move toggle above heading */
        margin-bottom: 10px; /* space below toggle */
    }

    .heading-row h3 {
        width: 100%;
        text-align: center; /* center heading */
        padding-left: 0; /* remove left padding on mobile */
        margin-top: 5px;
    }

    .glass-btn {
        width: 40px;
        height: 40px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 13px;
    }
}

.glow-heading {
    /* Downward glow using multiple shadows */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.6), /* subtle white glow just below text */
    0 8px 12px rgba(255, 165, 0, 0.5), /* orange glow farther below */
    0 16px 24px rgba(255, 165, 0, 0.3); /* softer wider orange glow even farther below */
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 40px auto;
    flex-wrap: wrap;
}

.circle {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    margin-left: -40px; /* Overlapping effect */
}

.circle {
    transition: 0.35s ease;
    border: 1px solid #fff;
}

    .circle:hover {
        transform: scale(1.07);
        border: 4px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
        z-index: 10; /* Brings hovered circle above others */
    }

    .circle:first-child {
        margin-left: 0;
    }

/* Colors matching the image */
.step1 {
    background: #7b62a3;
}

.step2 {
    background: #8464a9;
}

.step3 {
    background: #4b63ab;
}

.step4 {
    background: #497eb5;
}

.step5 {
    background: #57a7b7;
}

.small-text {
    font-size: 13px;
    font-weight: 400;
}

.schedule-section {
    margin: auto;
}

.schedule-hero {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 30px;
    position: relative;
}

.schedule-main-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1d1d1d;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #005ffc, #9636ff, #ff7b34);
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

    /* Neon underline */
    .schedule-main-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 220px;
        height: 4px;
        background: linear-gradient(90deg, #005ffc, #ff5c5c);
        border-radius: 50px;
        transform: translateX(-50%);
        box-shadow: 0 0 12px rgba(0, 120, 255, 0.6);
    }

.schedule-subinfo {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    padding: 25px 30px;
    border-radius: 12px;
    /* Background graphic - replace with your own URL or SVG */
    background-image: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
    background-repeat: repeat;
    background-size: 100px 100px;
    /* Light translucent overlay */
    background-color: rgba(255, 255, 255, 0.85);
    /* Optional subtle box shadow */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

    /* Slightly different style for strong text */
    .schedule-subinfo strong {
        font-size: 22px;
        color: #444;
    }

    /* Cultural program italic styling */
    .schedule-subinfo .cultural {
        font-size: 16px;
        color: #555;
        font-style: italic;
    }



.day-title {
    font-size: 26px;
    font-weight: 700;
    /*   margin-top: 40px;*/
    text-transform: uppercase;
    color: #333;
}

.day-theme {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #8A2BE2;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    margin-bottom: 40px;
}

    .schedule-table th,
    .schedule-table td {
        padding: 14px 18px;
        border: 1px solid #ddd;
        vertical-align: top;
    }

    .schedule-table th {
        background: #f5f5f5;
        font-weight: 700;
        text-transform: uppercase;
    }

    .schedule-table tr:nth-child(even) {
        background: #fafafa;
    }

/* Responsive */
@media(max-width: 768px) {
    .schedule-table th,
    .schedule-table td {
        font-size: 14px;
        padding: 10px;
    }
}
