/* Saahas Media Website Styles */
/* Modern, responsive design with Telugu content support */

/* Import Google Fonts for Telugu text */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Telugu:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f59e0b;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Telugu text support */
.telugu-text {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-weight: 500;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header Styles */
.site-header {
    background: var(--white);
    padding: 0.1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 20px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-img {
    width: auto;
    height: 35px;
    max-width: 70px;
    margin-right: 0.5rem;
    object-fit: contain;
}

.logo-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.0;
}

.logo-tagline {
    font-size: 0.6rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.0;
}

.header-contact .contact-item {
    margin: 0 0.3rem;
    color: var(--text-light);
    font-size: 0.65rem;
    line-height: 1.0;
}

.header-contact .contact-item i {
    margin-right: 0.25rem;
    color: var(--primary-color);
    font-size: 0.65rem;
}

.header-social .social-link {
    color: var(--text-light);
    margin-left: 0.3rem;
    font-size: 0.8rem;
    transition: var(--transition);
}

.header-social .social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    padding: 0.4rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e5e7eb" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e5e7eb" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e5e7eb" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    margin-top: 0;
    max-width: 500px;
}

.hero-buttons {
    margin-top: 1rem;
}

.hero-logo {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.about-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Videos Section */
.videos-section {
    background: var(--bg-light);
}

.video-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button i {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-card:hover .play-button {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-light);
    margin: 0;
}

/* Founder Section */
.founder-section {
    background: var(--white);
}

.founder-photo img {
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.founder-name {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.founder-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.founder-social .social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 1rem;
    transition: var(--transition);
}

.founder-social .social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--white);
}

/* Programs Section */
.programs-section {
    background: var(--bg-light);
}

.program-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.program-image {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 1.5rem;
}

.program-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.program-content h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.program-content p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.program-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.program-schedule i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Program Image Placeholder Styling */
.program-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.program-image::after {
    content: '📺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.3;
}

.program-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.program-schedule {
    color: var(--text-light);
    font-size: 0.9rem;
}

.program-schedule i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Latest News Section */
.latest-news-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.latest-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/* Zigzag Layout */
.news-row {
    position: relative;
    margin-bottom: 4rem;
}

.news-row:nth-child(even) .news-content {
    order: 2;
}

.news-row:nth-child(even) .news-video-container {
    order: 1;
}

.news-row:nth-child(odd) .news-content {
    order: 1;
}

.news-row:nth-child(odd) .news-video-container {
    order: 2;
}

/* Content Styling */
.news-content {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    z-index: 2;
}

.news-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-radius: var(--border-radius);
    z-index: -1;
}

.news-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 25px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.news-date i {
    color: var(--primary-color);
    font-size: 1rem;
}

.news-date span {
    font-weight: 600;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
    background: rgba(30, 58, 138, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.news-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.news-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.news-highlights h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
}

.news-highlights h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.highlights-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.highlights-list i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

/* Video Container */
.news-video-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.news-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.news-video-container:hover .video-overlay {
    opacity: 1;
}

.play-button-large {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button-large i {
    color: var(--white);
    font-size: 2rem;
    margin-left: 5px;
}

.play-button-large:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Zigzag Connector Lines */
.news-row::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.news-row:last-child::after {
    display: none;
}

/* New Platform Section */
.new-platform-section {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: var(--white);
}

.platform-banner h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.platform-banner h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.platform-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info .contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-info .contact-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-widget h4 {
    color: var(--secondary-color);  /* Orange titles */
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: auto;
    height: 50px;
    max-width: 100px;
    margin-right: 1rem;
    object-fit: contain;
}

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

.footer-social .social-link {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--primary-color);  /* Blue social icons */
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Company Info Section */
.company-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.company-info .info-item i {
    color: var(--secondary-color);  /* Orange icons */
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.company-info .info-item span {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}

.company-info .info-item strong {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright, .powered-by {
    color: #9ca3af;
    margin: 0;
}

.powered-by a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .header-contact {
        display: none;
    }
    
    .logo-title {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .about-card, .video-card, .program-card {
        margin-bottom: 2rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 70px;
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .news-text {
        font-size: 1rem;
    }
    
    .play-button-large {
        width: 60px;
        height: 60px;
    }
    
    .play-button-large i {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .logo-img {
        height: 30px;
        max-width: 60px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
   /* News Text Styles */
.news-text {
    font-size: 0.95rem;
}

.highlights-list li {
    font-size: 0.9rem;
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Logo Quality and Responsive Adjustments */
.logo-img,
.hero-logo img,
.footer-logo-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Latest News Section - Modern Design */
.latest-news-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.latest-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/* Section Header Modern */
.section-header-modern {
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-modern {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.modern-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* News Row Modern */
.news-row-modern {
    margin-bottom: 5rem;
    position: relative;
}

.news-row-modern::after {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    width: 3px;
    height: 3rem;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.news-row-modern:last-child::after {
    display: none;
}

.news-row-modern.reverse {
    flex-direction: row-reverse;
}

/* News Content Modern */
.news-content-modern {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.news-content-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.news-content-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.news-meta-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
}

.date-badge {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.location-badge {
    background: linear-gradient(135deg, #004e89, #0066cc);
}

.guest-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.launch-badge {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.impact-badge {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.partnership-badge {
    background: linear-gradient(135deg, #17a2b8, #20c997);
}

.meta-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.content-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.news-text-modern {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.telugu-text {
    font-family: 'Noto Sans Telugu', Arial, sans-serif;
}

/* Highlights Section */
.highlights-section, .participants-section, .vision-section {
    margin-top: 2rem;
}

.highlights-title, .participants-title, .vision-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.highlights-title i, .participants-title i, .vision-title i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.highlights-grid, .participants-grid, .vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.highlight-item, .participant-category, .vision-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 78, 137, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover, .participant-category:hover, .vision-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
}

.highlight-icon, .category-icon, .vision-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h5, .participant-category h5, .vision-content h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.highlight-content p, .participant-category p, .vision-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Video Container Modern */
.video-container-modern {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.video-container-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.video-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.news-video-modern {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.4s ease;
}

.video-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 25px;
}

.video-container-modern:hover .video-overlay-modern {
    opacity: 1;
}

.play-button-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.play-button-modern:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.video-info-overlay {
    text-align: center;
    color: var(--white);
}

.video-info-overlay h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-info-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.video-stats {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0 0 25px 25px;
}

.stat-item-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-item-modern i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Media Container Modern */
.media-container-modern {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.media-container-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.media-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.media-image-modern {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: var(--white);
    padding: 2rem;
    transition: all 0.4s ease;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(0, 78, 137, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 25px;
}

.media-container-modern:hover .media-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.media-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-modern {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-modern.primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
}

.badge-modern.secondary {
    background: linear-gradient(135deg, var(--secondary-color), #0066cc);
}

/* Achievement Card Modern */
.achievement-card-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.achievement-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.achievement-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.achievement-header h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.achievement-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.stat-icon-modern {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 1.2rem;
}

.achievement-footer {
    position: relative;
    z-index: 2;
}

.success-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.2);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.success-indicator i {
    font-size: 1.5rem;
    color: #28a745;
}

.success-indicator span {
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .section-title-modern {
        font-size: 2.8rem;
    }
    
    .section-subtitle-modern {
        font-size: 1.5rem;
    }
    
    .news-content-modern {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-row-modern.reverse {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .section-title-modern {
        font-size: 2.2rem;
    }
    
    .section-subtitle-modern {
        font-size: 1.3rem;
    }
    
    .news-content-modern {
        padding: 1.5rem;
    }
    
    .news-video-modern,
    .media-image-modern {
        height: 300px;
    }
    
    .play-button-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .achievement-card-modern {
        padding: 2rem;
    }
    
    .stat-number-modern {
        font-size: 2rem;
    }
    
    .highlights-grid,
    .participants-grid,
    .vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .news-content-modern {
        padding: 1rem;
    }
    
    .meta-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
    }
}