/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fffcfc;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 25%, #3b82f6 75%, #60a5fa 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 800px;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #00aaff; /* apka current blue shade */
    text-shadow:
    -1px -1px 0 white,
     1px -1px 0 #00aaff,
    -1px  1px 0 #00aaff,
     1px  1px 0 #00aaff;
    }

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #e2e8f0;
    max-width: 600px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Removed AdSense banner styles per cleanup */

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Videos Section */
.featured-videos {
    padding: 80px 0;
    background: #ffffff;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.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(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: #2563eb;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #9ca3af;
}

.load-more-container {
    text-align: center;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: #f8fafc;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
    text-decoration: none;
    color: inherit;
}

.clickable-category {
    position: relative;
    overflow: hidden;
}

.clickable-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.clickable-category:hover::before {
    left: 100%;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.category-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #1d4ed8;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

#newsletter-email {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

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

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
}

.youtube-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: auto;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: #ff0000;
    font-weight: 500;
}

.youtube-link:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.youtube-link span {
    font-size: 0.95rem;
}

.youtube-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    padding: 0;
}

.youtube-simple:hover {
    color: #ff0000;
    background: none;
    transform: none;
}

.youtube-simple i {
    font-size: 1.2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

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

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

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #2563eb;
}

/* Removed old modal styles (videos now only in blog detail page inline) */

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Mobile First Approach - Base styles for mobile devices */
/* Extra Small devices (phones, 320px and up) */
@media (max-width: 575.98px) {
    /* Mobile header/menu only */
    .navbar { padding: 0.75rem 0; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: whitesmoke;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.25);
        padding: 0.75rem 0;
        z-index: 1001;
    }
    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-link { color: #e5e7eb; padding: 0.85rem 1rem; display: block; }
    .nav-link:hover, .nav-link.active { color: #60a5fa; }
    .nav-link::after { background: #60a5fa; }
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
        padding: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .category-description {
        font-size: 0.9rem;
    }

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

    .form-group {
        flex-direction: column;
    }

    #newsletter-email {
        width: 100%;
    }

    .footer-content {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: center;
        align-items: stretch;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .footer {
        padding: 30px 0 15px;
    }

    /* About Page Mobile - updated to mimic desktop layout */
     .about-hero {
        padding: 60px 10px;   /* thoda compact padding mobile ke liye */
        min-height: auto;
    }

    .about-hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;  /* 2 equal columns (left text, right image) */
        gap: 1rem;
        align-items: center;
        text-align: left;
    }

    .about-hero-title {
        font-size: 1.2rem;   /* thoda bada mobile par readability ke liye */
        line-height: 1.4;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .about-hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .about-hero-stats {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .about-hero-image {
        text-align: center;
    }

    .profile-img {
        max-height: 200px;   /* mobile ke liye thoda adjust */
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* Contact Page Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-method {
        padding: 1rem;
        gap: 1rem;
    }

    /* Make contact cards full-bleed on mobile (remove side padding) */
    .contact-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-methods {
        margin-left: 0;
        margin-right: 0;
    }

    .contact-method {
        border-radius: 0; /* edge-to-edge look */
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
        display: none; /* hide on mobile */
    }

    .form-title {
        font-size: 1.4rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        width: auto;
        min-width: 150px;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .about-hero-title {
        font-size: 3.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero-title {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Show contact form card only on desktop widths */
@media (min-width: 992px) {
    .contact-form-card { display: block; }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .about-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .profile-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .hero-buttons,
    .btn {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        padding: 20px 0;
    }

    .hero-title,
    .section-title,
    .page-title {
        color: black !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* Additional responsive utilities and fixes */

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive video containers */
.video-container,
iframe {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly button sizes on mobile */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .filter-btn,
    .blog-action-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        overflow-x: hidden;
    }
}

/* Improve text readability on small screens */
@media (max-width: 768px) {
    p, li, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Ensure proper spacing on very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .about-hero {
        min-height: -webkit-fill-available;
    }
}

/* Ensure proper focus states for accessibility */
@media (prefers-reduced-motion: no-preference) {
    .btn:focus,
    .nav-link:focus,
    .filter-btn:focus,
    .blog-card:focus {
        outline: 2px solid #2563eb;
        outline-offset: 2px;
    }
}

/* Dark mode support (if user prefers dark mode) */
@media (prefers-color-scheme: dark) {
    /* This can be expanded if you want to add dark mode support in the future */
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
    
    .btn-outline {
        border: 2px solid #000;
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .blog-card {
        animation: none;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Blue + Mint Theme Overrides and Typography Enhancements ===== */
:root {
    --color-blue-600: #2563eb;
    --color-blue-700: #1d4ed8;
    --color-mint-500: #2dd4bf;
    --color-mint-600: #14b8a6;
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-text: #0f172a;
    --color-muted: #6b7280;
    --gradient-primary: linear-gradient(135deg, var(--color-blue-600) 0%, var(--color-mint-600) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-mint-600) 0%, var(--color-blue-600) 100%);
}

body { color: var(--color-text); background-color: var(--color-bg); }
.header { background: var(--color-surface); }
.nav-logo a { color: var(--color-text); }
.logo-text { font-weight: 800; letter-spacing: 0.2px; background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-link { color: var(--color-text); }
.nav-link:hover, .nav-link.active { color: var(--color-blue-600); }
.nav-link::after { background: var(--color-blue-600); }
.bar { background: var(--color-text); }

/* Hero */
.hero { background: var(--gradient-primary); }
.hero-title { font-weight: 800; letter-spacing: -0.5px; background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-description { opacity: 0.92; }
.hero-img { height: auto; max-height: 480px; }

/* Buttons */
.btn-primary { background: var(--color-blue-600); }
.btn-primary:hover { background: var(--color-blue-700); }
.btn-outline { color: var(--color-blue-600); border-color: var(--color-blue-600); }
.btn-outline:hover { background: var(--color-blue-600); color: #fff; }
.btn-secondary:hover { color: var(--color-blue-600); }

/* Sections and headings */
.section-title, .page-title, .about-hero-title, .cta-title { font-weight: 800; letter-spacing: -0.3px; background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-subtitle, .page-subtitle { color: var(--color-muted); }
.categories, .mission-section, .services-section, .why-choose-section { background: var(--color-surface); }
.videos-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.video-card:hover .play-button { background: var(--color-blue-600); }
.video-description { color: var(--color-muted); }

/* Category + icon accents */
.category-icon, .service-icon, .feature-icon, .contact-icon { background: var(--gradient-primary); }
.category-link { color: var(--color-blue-600); }
.category-link:hover { color: var(--color-blue-700); }

/* Newsletter + page header */
.newsletter, .page-header, .cta-section, .about-hero { background: var(--gradient-primary); }

/* Footer */
.footer { background: #0b1220; }
.footer-logo-text { font-weight: 800; background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-links a:hover, .social-link:hover, .footer-bottom-links a:hover { color: var(--color-blue-600); background: initial; }
.footer-bottom { border-top-color: #111827; }

/* Fine-tune spacing on small screens */
@media (max-width: 480px) {
  .hero { min-height: auto; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.05rem; }
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white; /* apka current blue shade */
    text-shadow:
    -1px -1px 0 #00aaff,
     1px -1px 0 #00aaff,
    -1px  1px 0 #00aaff,
     1px  1px 0 #00aaff;
}

.about-hero-subtitle {
    font-size: 1.0rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.about-hero-description strong {
    color: #fbbf24;
    font-weight: 600;
}

.about-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-hero-stats .stat-item {
    text-align: center;
}

.about-hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.about-hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-hero-image {
    text-align: center;
}

.profile-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #ffffff;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
     color: white; /* apka current blue shade */
    text-shadow:
    -1px -1px 0 #00aaff,
     1px -1px 0 #00aaff,
    -1px  1px 0 #00aaff,
     1px  1px 0 #00aaff;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
     color: white; /* apka current blue shade */
    text-shadow:
    -1px -1px 0 #00aaff,
     1px -1px 0 #00aaff,
    -1px  1px 0 #00aaff,
     1px  1px 0 #00aaff;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color:whitesmoke;
}

/* Sidebar Styles (keeping for reference) */
.sidebar {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3e5d9e;
}

.sidebar h3 {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.sidebar p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.sidebar p:last-child {
    margin-bottom: 0;
}

.sidebar strong {
    color:var(--gradient-primary);
    font-weight: 600;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.document-meta {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #61697b;
}

.document-meta p {
    margin: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.content-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 1rem 0;
}

.content-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
    color: #4b5563;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 500;
}

.contact-info i {
    color: white;
    width: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Contact Page Styles */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

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

/* Contact Info Styles */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-details span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Contact Form Styles */
.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #234690;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background-color: #2563eb;
    color: white;}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8fafc;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background: #ffffff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-card.youtube:hover {
    border-color: #ff0000;
}

.social-card.facebook:hover {
    border-color: #1877f2;
}

.social-card.instagram:hover {
    border-color: #e4405f;
}

.social-card.linkedin:hover {
    border-color: #0077b5;
}

.social-card .social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-card.youtube .social-icon {
    background: linear-gradient(45deg, #ff0000, #ff4444);
}

.social-card.facebook .social-icon {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #e4405f, #f09433);
}

.social-card.linkedin .social-icon {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-followers {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
} 

/* Strong mobile overrides for About section (placed after base About styles) */
@media (max-width: 575.98px) {
    .about-hero {
        padding: 70px 0 50px;
    }

    .about-hero-content {
        grid-template-columns: 1fr; /* single column on phones */
        gap: 1rem;
        text-align: left;
    }

    /* Keep three stats in a single row on phones */
    .about-hero-stats {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: nowrap; /* do not wrap to next line */
        gap: 0.75rem;
    }

    .about-hero-stats .stat-number {
        font-size: 1.25rem;
        line-height: 1.1;
    }

    .about-hero-stats .stat-label {
        font-size: 0.85rem;
    }

    .about-hero-title {
        font-size: 1.8rem; /* much smaller for mobile */
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .about-hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Prevent head from being cropped and make photo a bit smaller */
    .about-hero-image { display: flex; justify-content: center; }
    .profile-img {
        width: auto;
        max-width: 85%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
}