@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200..900&display=swap");
        :root {
            --primary: #19aaed;
            --secondary: #19aaed;
            --accent: #19aaed;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gradient-primary: linear-gradient(135deg, #6ab9dfd6 0%, #19aaed 100%);
            --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
            --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
            --td-ff-body: "Unbounded", sans-serif;
            --td-ff-poppins: "Poppins", sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--td-ff-poppins);
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Top Header */
        .top-header {
            background: #fff;
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .logo-img, .emblem-img {
            max-height: 90px;
            object-fit: contain;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .emblem-img {
            max-height: 110px;
        }

        .logo-img:hover, .emblem-img:hover {
            transform: translateY(-5px);
        }

        /* News Ticker */
        .news-ticker {
            background: var(--gradient-dark);
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
        }

        .ticker-label {
            position: absolute;
            left: 0;
            background: var(--gradient-primary);
            padding: 12px 25px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 2;
            letter-spacing: 0.5px;
        }

        .ticker-wrap {
            padding-left: 20px;
            overflow: hidden;
        }

        .ticker-content {
            display: inline-block;
            white-space: nowrap;
            animation: ticker 25s linear infinite;
        }

        .ticker-content:hover {
            animation-play-state: paused;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .ticker-item {
            display: inline-block;
            padding: 0 50px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .ticker-item i {
            color: var(--accent);
            margin-right: 8px;
        }

        /* Navigation */
        .main-nav {
            background: #fff;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .nav-link {
            color: var(--dark) !important;
            font-weight: 600;
            padding: 10px 20px !important;
            margin: 0 5px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 20px;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: calc(100% - 40px);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary) !important;
            background: rgb(118 201 240 / 14%);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.15);
            border: 2px solid var(--primary);
            color: var(--accent);
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content .subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .hero-info-cards {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 25px 35px;
            min-width: 250px;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .info-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .info-card strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .info-card span {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .btn-hero {
            background: var(--gradient-primary);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            margin: 0 10px;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
            color: white;
        }

        .btn-hero-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-hero-outline:hover {
            background: white;
            color: var(--primary);
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-alt {
            background: #f8f9fa;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: rgb(236 247 253);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-header .underline {
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            margin: 0 auto 20px;
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Cards */
        .card-modern {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .card-modern:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 25px;
        }

        .card-modern h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .card-modern p {
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        /* Phase Cards */
        .phase-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-md);
            margin-bottom: 30px;
            border-left: 5px solid var(--primary);
        }

        .phase-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 2px solid #f0f0f0;
        }

        .phase-number {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            font-weight: 800;
        }

        .phase-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .phase-meta {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .phase-meta span {
            color: #666;
            font-weight: 500;
        }

        .phase-meta i {
            color: var(--primary);
            margin-right: 8px;
        }

        

        .event-item {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            margin: 0;
        }

        .event-item:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
        }

        .event-item h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .event-item h4 i {
            color: var(--primary);
        }

        .event-item ul {
            list-style: none;
            padding: 0;
        }

        .event-item li {
            padding: 8px 0;
            color: #666;
            position: relative;
            padding-left: 20px;
        }

        .event-item li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Form Styles */
        .form-modern {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
        }

        .form-floating {
            margin-bottom: 25px;
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 20px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
        }

        .form-floating label {
            padding: 12px 20px;
            color: #666;
        }

        .btn-submit {
            background: var(--gradient-primary);
            color: white;
            padding: 15px 50px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--gradient-dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            /* color: var(--accent); */
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--gradient-primary);
            transform: translateY(-5px);
            color: white;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: var(--shadow-md);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content .subtitle {
                font-size: 1.2rem;
            }

            .info-card {
                min-width: 100%;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .ticker-label {
                display: none;
            }

            .ticker-wrap {
                padding-left: 0;
            }

            .form-modern {
                padding: 30px 20px;
            }

            .phase-header {
                flex-direction: column;
                text-align: center;
            }
        }

        /* carousel code */
        /* Hero Carousel Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-inner {
    position: relative;
}

.carousel-item img {
    object-fit: cover;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    z-index: 10;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 15;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    /* .carousel-item img {
        height: 500px;
    } */
    
    .carousel-caption-custom h1 {
        font-size: 2rem;
    }
    
    .carousel-caption-custom .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-info-cards {
        flex-direction: column;
    }
    
    .info-card {
        min-width: 100%;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

/* Event Timeline Code */
.event-item1-bg {
    width: 100%;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.custom-list li:last-child {
    border-bottom: none;
}

.custom-list li:hover {
    transform: translateX(10px);
    color: #000;
}

.custom-list li i {
    font-size: 1.1rem;
}

.btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-lg {
    font-size: 1.1rem;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.event-item img {
    object-fit: cover;
    height:300px;
    transition: transform 0.5s ease;
}

.event-item:hover img {
    transform: scale(1.05);
}

.border {
    border: 1px solid #dee2e6 !important;
}

@media (max-width: 768px) {
    .event-item .row {
        min-height: auto;
    }
    
    .event-item img {
        min-height: 250px;
    }
    
    .event-item1-bg {
        padding: 25px !important;
    }
    
    .custom-list li {
        font-size: 12px;
        padding: 10px 0;
    }
}
.right-rounded{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.left-rounded{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

/* Key Objectives */
.objectives-section {
    padding: 40px 0;
}

.objectives-badge {
    display: inline-block;
    background: linear-gradient(135deg, #25afee 0%, #30b2ef 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
}

.objective-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.objective-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.objective-card:hover .objective-icon {
    transform: scale(1.1) rotate(5deg);
}

.objective-icon-1 {
    background: linear-gradient(135deg, #FF6B3520 0%, #F7931E20 100%);
    color: #FF6B35;
}

.objective-icon-2 {
    background: linear-gradient(135deg, #2E7D3220 0%, #5CB85C20 100%);
    color: #2E7D32;
}

.objective-icon-3 {
    background: linear-gradient(135deg, #F7931E20 0%, #FFC10720 100%);
    color: #F7931E;
}

.objective-icon-4 {
    background: linear-gradient(135deg, #D8524220 0%, #E9573F20 100%);
    color: #D85242;
}

.objective-content {
    flex: 1;
}

.objective-content h5 {
    color: #2d3748;
    font-size: 1.2rem;
}

.objective-content p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .objectives-badge {
        font-size: 1.2rem;
        padding: 10px 25px;
    }
    
    .objective-card {
        padding: 20px;
        gap: 15px;
    }
    
    .objective-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .objective-content h5 {
        font-size: 1.1rem;
    }
    
    .objective-content p {
        font-size: 0.9rem;
    }
}

/* About Festival */
.about-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #71caf3 0%, #19aaed 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.about-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.about-vision-mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #1aaaeda8 0%, #35b2eb 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-vision-mission-card:hover::before {
    transform: scaleX(1);
}

.about-vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgb(25 170 237 / 17%);
    border-color: #19aaed;
}

.about-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.about-vision-icon {
    background: linear-gradient(135deg, #19aaed7a 0%, #19aaed7a 100%);
    color: #3eb3e9;
}

.about-mission-icon {
    background: linear-gradient(135deg, #2E7D3215 0%, #5CB85C15 100%);
    color: #2E7D32;
}

.about-vision-mission-card:hover .about-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.about-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #718096;
    margin: 0;
}

@media (max-width: 768px) {
    .about-section-header h2 {
        font-size: 2rem;
    }
    
    .about-section-badge {
        font-size: 0.85rem;
        padding: 6px 20px;
    }
    
    .about-vision-mission-card {
        padding: 30px;
    }
    
    .about-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .about-card-title {
        font-size: 1.5rem;
    }
    
    .about-card-text {
        font-size: 1rem;
    }
}

/* Contact Us home */
.contact-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.contact-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #1aaaeda8 0%, #35b2eb 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgb(25 170 237 / 17%);
    border-color: #19aaed;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.contact-icon-director {
    background: linear-gradient(135deg, #19aaed7a 0%, #19aaed7a 100%);
    color: #3eb3e9;
}

.contact-icon-info {
    background: linear-gradient(135deg, #2E7D3215 0%, #5CB85C15 100%);
    color: #2E7D32;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.contact-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-designation {
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail span {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* Venues Section */
.venues-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.venues-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 35px;
}

.venue-card {
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.venue-card-phase1 {
    background: linear-gradient(135deg, rgb(145 235 254 / 74%) 0%, rgb(49 176 234 / 23%) 100%);
    border: 2px solid #26adeb;
}

.venue-card-phase2 {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(92, 184, 92, 0.08) 100%);
    border: 2px solid #2E7D32;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgb(201 238 251);
}

.venue-card-phase2:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgb(82 171 83 / 7%);
}
.venue-phase-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.venue-badge-1 {
    background: var(--gradient-primary);
    color: white;
}

.venue-badge-2 {
    background: linear-gradient(135deg, #2E7D32 0%, #5CB85C 100%);
    color: white;
}

.venue-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.venue-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.venue-card-phase1 .venue-detail i {
    color: var(--primary);
    font-size: 1.1rem;
}

.venue-card-phase2 .venue-detail i {
    color: #2E7D32;
    font-size: 1.1rem;
}

.venue-detail span {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .day-header{
        font-size: 1.2rem;
    }
    .contact-section-header h2 {
        font-size: 2rem;
    }
    
    .contact-section-badge {
        font-size: 0.85rem;
        padding: 6px 20px;
    }
    
    .contact-info-card,
    .venues-wrapper {
        padding: 30px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .contact-card-title {
        font-size: 1.4rem;
    }
    
    .contact-name {
        font-size: 1.2rem;
    }
    
    .venues-title {
        font-size: 1.5rem;
    }
    
    .venue-card {
        padding: 25px;
    }
    
    .venue-name {
        font-size: 1.5rem;
    }
    .phase-info h3 {
        font-size: 1.5rem;
    }
    .phase-card{
        padding: 10px;
    }
    .event-item{
        padding: 0px;
    }
    .btn{
        font-size: 12px;;
    }
}
/* Banner Breadcrumb Hero Section */
.breadcrumb-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(67 185 241) 0%, rgb(38 175 238) 100%), url(https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=1920&q=80) center / cover;
    background-attachment: fixed;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(91, 66, 243, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.3) 0%, transparent 50%);
    animation: pulseOverlay 8s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.breadcrumb-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(70px) translateY(70px); }
}

.breadcrumb-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 80px 20px;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-nav {
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
}

.modern-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 12px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.breadcrumb-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: left 0.4s ease;
    z-index: -1;
}

.breadcrumb-item a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.breadcrumb-item a:hover::before {
    left: 0;
}

.breadcrumb-item a i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.breadcrumb-item a:hover i {
    transform: scale(1.2) rotate(360deg);
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0 5px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.breadcrumb-item.active span {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: white;
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease;
}

.breadcrumb-title-section {
    text-align: center;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.breadcrumb-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.breadcrumb-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}
@media (max-width: 992px) {
    .breadcrumb-hero {
        min-height: 350px;
        background-attachment: scroll;
    }

    .breadcrumb-content {
        padding: 60px 20px;
    }

    .breadcrumb-main-title {
        font-size: 3rem;
    }

    .breadcrumb-subtitle {
        font-size: 1.2rem;
    }

    .modern-breadcrumb {
        gap: 8px;
        justify-content: center;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active span {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
    }

    .about-hero {
        padding: 80px 20px 80px;
    }

    .about-hero h1 {
        font-size: 2.8rem;
    }

    /* rest of your existing responsive styles */
}

@media (max-width: 576px) {
    .breadcrumb-hero {
        min-height: 300px;
    }

    .breadcrumb-content {
        padding: 50px 20px;
    }

    .breadcrumb-nav {
        margin-bottom: 30px;
    }

    .breadcrumb-main-title {
        font-size: 2.2rem;
    }

    .breadcrumb-subtitle {
        font-size: 1rem;
    }

    .breadcrumb-item a span {
        display: none;
    }

    .breadcrumb-item a {
        padding: 10px 15px;
    }

    .breadcrumb-item.active span {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .shape {
        display: none;
    }

    .about-hero {
        padding: 60px 20px 60px;
    }

}


/* EVENTS PAGE */
.schedule-header {
            text-align: center;
            padding: 80px 20px 60px;
            background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
        }

        .event-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            animation: fadeInDown 0.8s ease;
        }

        .schedule-header h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }

        .schedule-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .phase-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin: 20px 0 20px;
            padding: 0 20px;
        }

        .phase-tab {
            padding: 15px 35px;
            border-radius: 50px;
            border: none;
            background: #f0f0f0;
            color: #666;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.95rem;
        }

        .phase-tab:hover {
            background: #e0e0e0;
            transform: translateY(-3px);
        }

        .phase-tab.active {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 8px 25px rgb(184 219 235);
            transform: translateY(-3px);
        }

        /* Filter Section Styles */
        .filter-section {
            max-width: 1400px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        .filter-container-events {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            display: flex;
            gap: 20px;
            align-items: flex-end;
            flex-wrap: wrap;
        }

        .filter-group {
            flex: 1;
            min-width: 250px;
        }

        .filter-label {
            display: block;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .filter-label i {
            color: var(--primary);
            margin-right: 8px;
        }

        .filter-select {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 0.95rem;
            color: var(--dark);
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }

        .reset-btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .reset-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
        }

        .filter-results {
            margin-top: 20px;
            padding: 15px;
            background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
            border-radius: 12px;
            font-weight: 600;
            color: var(--dark);
            text-align: center;
            display: none;
        }

        .filter-results.show {
            display: block;
        }

        .schedule-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 80px;
        }

        .event-card {
            background: white;
            border-radius: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            overflow: hidden;
            opacity: 0;
            animation: slideInUp 0.6s ease forwards;
        }

        .event-card:nth-child(1) { animation-delay: 0.1s; }
        .event-card:nth-child(2) { animation-delay: 0.2s; }
        .event-card:nth-child(3) { animation-delay: 0.3s; }
        .event-card:nth-child(4) { animation-delay: 0.4s; }
        .event-card:nth-child(5) { animation-delay: 0.5s; }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .event-card-inner {
            display: grid;
            grid-template-columns: 200px 1fr auto;
            align-items: center;
            gap: 30px;
            padding: 30px;
            position: relative;
        }

        .time-block {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
            border-radius: 15px;
            border-left: 4px solid var(--primary);
            position: relative;
        }

        .time-start {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            display: block;
            margin-bottom: 5px;
        }

        .time-divider {
            width: 40px;
            height: 3px;
            background: var(--primary);
            margin: 8px auto;
            border-radius: 2px;
        }

        .time-end {
            font-size: 1.2rem;
            font-weight: 700;
            color: #666;
            display: block;
        }

        .event-details {
            flex: 1;
        }

        .event-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #666;
            font-weight: 500;
        }

        .meta-item i {
            color: var(--primary);
            font-size: 1rem;
        }

        .event-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .event-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .info-item {
            background: #f8f9fa;
            padding: 12px 15px;
            border-radius: 10px;
            border-left: 3px solid var(--accent);
        }

        .info-label {
            font-size: 0.75rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .info-value {
            font-size: 0.95rem;
            color: var(--dark);
            font-weight: 600;
        }

        .details-btn {
            background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .details-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
        }

        .details-btn i {
            transition: transform 0.3s ease;
        }

        .details-btn:hover i {
            transform: translateX(5px);
        }

        .phase-section {
            display: none;
        }

        .phase-section.active {
            display: block;
        }

        .section-title {
            text-align: center;
            margin: 60px 0 40px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .section-title .underline {
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            margin: 0 auto;
            border-radius: 2px;
        }

        .day-header {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        .no-results i {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }

        .no-results h3 {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 10px;
        }

        .no-results p {
            font-size: 1rem;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 992px) {
            .event-card-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .time-block {
                max-width: 200px;
                margin: 0 auto;
            }

            .details-btn {
                width: 100%;
                justify-content: center;
            }

            .schedule-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .phase-tab {
                font-size: 0.85rem;
                padding: 12px 25px;
            }

            .event-title {
                font-size: 1.1rem;
            }

            .info-item {
                grid-column: span 2;
            }

       
        }