* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background-color: transparent;
    border-radius: 4px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #2c3e50;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/*  .phone-mockup {
            position: relative;
            background: linear-gradient(145deg, #667eea, #764ba2);
            border-radius: 30px;
            padding: 20px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .mockup-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 18px; 
        }
        .phone-screen {
            width: 250px;
            height: 400px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }

        .phone-screen::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: #333;
            border-radius: 2px;
        } */

/* Welcome Section */
.welcome-section {
    background: white;
    padding: 5rem 0;
}

.p-5 {
    padding: 5rem 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.welcome-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.welcome-text h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #e74c3c);

    border-radius: 2px;
}

.welcome-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}



/* Live Streaming Slideshow */
.stream-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.stream-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.live-stream-item {
    flex: 0 0 100%;
    min-width: 100%;
}

.stream-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.stream-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.stream-carousel-prev {
    left: 10px;
}

.stream-carousel-next {
    right: 10px;
}

@media (max-width: 768px) {
    .stream-carousel-nav {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
}







.live-streaming-panel {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.live-streaming-panel h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-stream-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stream-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stream-time {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

/*  /* Live Webcast Section */
.webcast-section {
    background: linear-gradient(135deg, #1a2a3a, #0d1520);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.webcast-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMxLjIgMCAyLjEuOSAyLjEgMi4xdjE5LjhjMCAxLjItLjkgMi4xLTIuMSAyLjFIMjRjLTEuMiAwLTIuMS0uOS0yLjEtMi4xVjIwLjFjMC0xLjIuOS0yLjEgMi4xLTIuMWgxMnpNMzAgNDJjMS43IDAgMyAxLjMgMyAzcy0xLjMgMy0zIDMtMy0xLjMtMy0zIDEuMy0zIDMtM3oiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIiBzdHJva2Utd2lkdGg9IjIiLz48L2c+PC9zdmc+');
    opacity: 0.05;
    z-index: 0;
}

.webcast-section .container {
    position: relative;
    z-index: 1;
}


.webcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    /* Ensures top alignment */
}

.live-webcast,
.recent-live {
    height: 100%;
    /* Ensures both sections take full height of their container */
}

/* Live Webcast Styles */
.live-webcast h2,
.recent-live h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    /*  text-align: center; */
}

.webcast-section h2 {
    color: #ffffff;
}

.webcast-section h2:after {
    background: linear-gradient(135deg, #3498db, #9b59b6);
}


.live-webcast h2:after,
.recent-live h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #e74c3c);
    /*   margin: 1rem auto; */
    border-radius: 2px;
}


.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TV-style border for video player */
.video-player {
    height: 100%;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    /* Fixed height to match 3 live items */
    position: relative;
    padding: 20px;
    background: linear-gradient(to bottom, #333333, #111111);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 8px solid #222;
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.video-player::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 20px;
    width: 8px;
    height: 8px;
    background-color: #e74c3c;
    border-radius: 50%;
    box-shadow: 0 0 5px #e74c3c;
    animation: blink 2s infinite;
    z-index: 2;
}

.tv-controls {
    position: absolute;
    bottom: 5px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.tv-control {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    border: 1px solid #666;
}

.tv-brand {
    position: absolute;
    bottom: 8px;
    left: 20px;
    font-size: 10px;
    color: #666;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.video-player video {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: cover;
    border-radius: 2px;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 8px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Recent Live Styles - Improved Alignment */
.live-item {
    display: flex;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100px;
    /* Fixed height for consistency */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-item:hover {

    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.live-thumbnail {
    width: 180px;
    height: 100px;
    flex-shrink: 0;
    /* Prevents thumbnail from shrinking */
    overflow: hidden;
}

.live-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-details {
    padding: 0.8rem 1rem;
    flex: 1;
    display: flex;
    color: #ffffff;
    flex-direction: column;
    justify-content: center;
    /* Centers content vertically */
}
.truncate-2 {
  display: -webkit-box;          /* required */
  -webkit-box-orient: vertical;  /* required */
  overflow: hidden;
  -webkit-line-clamp: 2;         /* Chrome, Safari, Edge */
  line-clamp: 2;                 /* future standard */
}

.live-details h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
  /*   white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
    max-width: 350px;
}

.live-meta {
    display: flex;
    flex-direction: row;
    /* Changed from column to row */
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    gap: 0.5rem;
    /* Increased gap for better spacing between elements */
    align-items: center;
}

.service-type {
    font-style: italic;
}

.service-date {
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .webcast-grid {
        grid-template-columns: 1fr;
    }

    .live-thumbnail {
        width: 120px;
    }
}




/*  /* Live Webcast Section */

/*
        .webcast-section {
            background: #f8f9fa;
            padding: 4rem 0;
        }

        .webcast-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .webcast-player {
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        #videoPlayer {
            width: 100%;
            height: 300px;
            background: #000;
        }

        .player-controls {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            padding: 1rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .control-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: #2980b9;
            transform: scale(1.05);
        }
*/
/* Recent Live Section */


/* 
        .recent-section {
            background: white;
            padding: 4rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
            position: relative;
            font-weight: 600;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #3498db, #e74c3c);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .recent-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .recent-video {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .recent-video:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .video-thumbnail {
            height: 180px;
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            position: relative;
        }

        .video-thumbnail::before {
            content: '▶';
            position: absolute;
            font-size: 3rem;
            opacity: 0.8;
        }

        .video-info {
            padding: 1.5rem;
        }

        .video-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .video-date {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
 
        /* Network Section */
/*   .network-section {
            background: linear-gradient(135deg, #667eea, #764ba2);
            padding: 5rem 0;
        }

        .network-title {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .network-subtitle {
            text-align: center;
            color: rgba(255,255,255,0.9);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .network-card {
            background: rgba(255,255,255,0.95);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .network-card:hover {
            transform: scale(1.05);
        }

        .network-logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 15px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .network-name {
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .network-channel {
            color: #7f8c8d;
            font-size: 0.9rem;
            font-weight: 600;
        } */

.section-title {
    text-align: center;
    font-size: 2.5rem;
   
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
   
    margin: 1rem auto;
    border-radius: 2px;
}


/* Network Carousel */
.network-section {
    padding: 4rem 0;
    background: white;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
  
    padding: 2rem;
}


.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.network-card {
    flex: 0 0 250px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.network-card:hover {
    transform: scale(1.05);
}

.network-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #e74c3c);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.network-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.network-channel {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(41 59 77);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: white;
    color: #0f0d0d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}





/* Footer */

/* Animations */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .welcome-grid,
    .webcast-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .network-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .phone-mockup {
        height: 300px;
    }

    .phone-screen {
        width: 200px;
        height: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/* Professional Footer */
.footer {
    background: linear-gradient(to right, #1a2a3a, #2c3e50);
    color: #e6e6e6;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3498db, #e74c3c);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #e74c3c);
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #bdc3c7;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #3498db;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form button {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* About */


 .lead {
     color: var(--muted);
     margin-top: 8px
 }

 .card {
     background: var(--card);
     border-radius: var(--radius);
     padding: 20px;
     margin-top: 20px;
     box-shadow: 0 6px 20px rgba(12, 18, 24, 0.06)
 }

 .grid {
     display: grid;
     grid-template-columns: 1fr 340px;
     gap: 20px
 }

 @media (max-width:880px) {
     .grid {
         grid-template-columns: 1fr
     }
 }

 .programs li {
     margin: 8px 0
 }

 .cta {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-top: 18px
 }



 blockquote {
     margin: 18px 0;
     padding: 14px;
     border-left: 4px solid var(--accent);
     background: #fbfdfd;
     color: #0b3d3f;
     border-radius: 8px
 }

 .meta {
     font-size: 13px;
     color: var(--muted);
     margin-top: 6px
 }

 .socials a {
     margin-right: 8px;
     text-decoration: none;
     color: var(--accent);
     font-weight: 600
 }



@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}






/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Different animation types */
.fade-in {
    opacity: 0;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
}

.slide-right {
    opacity: 0;
    transform: translateX(-40px);
}

.slide-left {
    opacity: 0;
    transform: translateX(40px);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
}

/* Animation active states */
.fade-in.active {
    opacity: 1;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

.rotate-in.active {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Staggered animation delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    /* Nav menu on mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #fff;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        /* above overlay */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 10px 0;
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #ecf0f1;
        color: #2c3e50;
        font-weight: 500;
        text-decoration: none;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }



    /* Mobile overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        /* lower than nav-links */
        width: 100%;
        height: 100vh;
    }

    .mobile-overlay.active {
        display: block;
    }



}

/* Tablet Responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {

    .welcome-text h2{
        font-size: 1.5rem;
    }
    .container {
        padding: 0 0.5rem;
    }

    .nav {
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }

    .nav-links {
        width: 80%;
        padding: 70px 1.5rem 2rem;
    }
    .webcast-grid{
display: block;
    }
    .video-player {
   
    background-color: #000;
    border-radius: 4px;
    overflow: hidden;
    height: 240px;
    position: relative;
    padding: 3px;
    background: linear-gradient(to bottom, #333333, #111111);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
 
}
}






  .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .contact-form, .contact-map {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.8s ease-out;
        }

        .contact-form:hover, .contact-map:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3);
        }

        .form-header {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .form-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-header p {
            opacity: 0.9;
            font-size: 1rem;
        }

        .contact-form form {
            padding: 40px;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .contact-form input, 
        .contact-form textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #fafafa;
            outline: none;
            position: relative;
        }

        .contact-form input:focus, 
        .contact-form textarea:focus {
            border-color: #667eea;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .contact-form input:focus + .focus-ring,
        .contact-form textarea:focus + .focus-ring {
            opacity: 1;
            transform: scale(1);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .contact-map {
            position: relative;
            min-height: 400px;
            display: flex;
            flex-direction: column;
        }

      
       

        .alert {
            padding: 16px 20px;
            margin-bottom: 20px;
            border-radius: 12px;
            font-weight: 500;
            animation: slideIn 0.5s ease-out;
        }

        .alert-error {
            background: linear-gradient(135deg, #fee2e2, #fecaca);
            color: #dc2626;
            border-left: 4px solid #dc2626;
        }

        .alert-success {
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            color: #059669;
            border-left: 4px solid #059669;
        }

          .address-info {
            padding: 40px;
        }

        .address-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 28px;
            transition: all 0.3s ease;
            padding: 16px;
            border-radius: 12px;
            background: #fafafa;
        }

        .address-item:hover {
            background: #f0f9ff;
            transform: translateX(8px);
        }

        .address-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
            color: white;
            font-size: 1.2rem;
        }

        .address-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 4px;
        }

        .address-content p {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .address-content a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .address-content a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        .contact-map {
            position: relative;
            min-height: 500px;
            display: flex;
            flex-direction: column;
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) scale(1);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px) scale(1.1);
                opacity: 0.4;
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                transform: translateY(60px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .site-header h1 {
                font-size: 2rem;
            }
            
            .contact-form form, .address-info {
                padding: 30px 24px;
            }
            
            .form-header, .map-header {
                padding: 24px 20px;
            }
            
            .form-header h2, .map-header h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-container {
                padding: 0 16px;
            }
            
            .contact-form form, .address-info {
                padding: 24px 16px;
            }
            
            .site-header h1 {
                font-size: 1.8rem;
            }
             .welcome-grid{
        display: block;
      }
        }




        /* about Us */