/* Variable Definitions - Premium Medical Theme */
:root {
    --primary-color: #0a2342;
    /* Deep Navy Blue */
    --primary-light: #16365f;
    --secondary-color: #0ea5e9;
    /* Bright Blue */
    --accent-color: #c5a059;
    /* Gold/Bronze */
    --text-color: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0a2342;
    --white: #FFFFFF;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s ease;
    --header-height: 80px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sections */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--text-white);
}

.section-light {
    background-color: var(--bg-light);
}

/* Feature Cards (Why Choose Us) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Stats Box */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* CTA Section */
.cta-box {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    background-image: linear-gradient(135deg, var(--secondary-color), var(--primary-light));
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reusable Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
}

.text-center {
    text-align: center;
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    /* More corporate look */
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 35, 66, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.full-btn {
    width: 100%;
    text-align: center;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo i {
    display: none;
    /* Hide icon for cleaner text logo */
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: -2px;
}

/* Mobile Menu - Hidden by default on mobile devices */
.nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 4rem 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-align: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

/* Show menu when hamburger is clicked */
.nav-menu.show-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle,
.nav-close {
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    display: block;
    flex-shrink: 0;
    padding: 0.5rem;
    /* Add tap target size */
}

.nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.nav-cta {
    display: inline-block;
}

/* Hero Section */
.hero {
    margin-top: var(--header-height);
    background: #ffffff;
    /* Clean white background */
    min-height: 90vh;
    /* Increased height for more impact */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    align-items: center;
}

/* New Modern Hero Typography */
.hero-subtitle-new {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.hero-title-new {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    /* Large bold text */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1d2b36;
    /* Dark slate */
    font-weight: 800;
}

.hero-description-new {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons-new {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Hero Button - Pink Pill */
.btn-hero-pink {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #ef3e5c;
    /* Pink-Red color from image */
    color: var(--white);
    padding: 0.6rem 2rem 0.6rem 0.6rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(239, 62, 92, 0.3);
}

.btn-hero-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(239, 62, 92, 0.4);
    background-color: #d62c4a;
}

.btn-icon-circle {
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef3e5c;
    font-size: 1rem;
}

/* Hero Button - Green Play */
.btn-hero-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #8cc63f;
    /* Light Green */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(140, 198, 63, 0.3);
    position: relative;
    padding-left: 5px;
    /* Visual center fix for play icon */
}

.btn-hero-play::after {
    /* Pulse effect ring */
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(140, 198, 63, 0.5);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.btn-hero-play:hover {
    transform: scale(1.1);
    background-color: #7ab32f;
}


.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* Align image to right */
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    z-index: 2;
    /* Remove border and shape for cleaner look */
    max-width: 100%;
}

.hero-img-main {
    width: 100%;
    max-width: 550px;
    /* Larger image */
    display: block;
    /* Remove border radius for cut-out feel if transparent, else keep */
    border-radius: 0;
    /* Assuming user image might be cut out, or rectangular. Let's keep it simple. */
}

/* Hide old shape */
.hero-shape {
    display: none;
}

/* Responsive for Hero */
@media screen and (max-width: 992px) {
    .hero-title-new {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 1rem;
    }

    .hero-title-new {
        font-size: 2.8rem;
    }

    .hero-description-new {
        margin: 0 auto 2rem auto;
    }

    .hero-buttons-new {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-img-main {
        max-width: 100%;
    }
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-img-box {
    position: relative;
}

.about-img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.exp-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.badge {
    background-color: rgba(10, 35, 66, 0.05);
    /* Light primary */
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(10, 35, 66, 0.1);
}

.about-description {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.education-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 10px 10px 0;
}

.education-box h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
}

.education-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.education-list li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Expertise Section */
.expertise {
    background-color: #f4f6f9;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent-color);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.expertise-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 5px;
}

/* Experience Section - Timeline */
.experience {
    background-color: var(--white);
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
}

.experience-lead {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* Experience Section - 3D Cards */
.experience {
    background-color: #fcfdff;
    padding: 6rem 0;
}

.experience-content {
    max-width: 1100px;
    margin: 0 auto;
}

.experience-lead {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    perspective: 1000px;
}

.experience-card-3d {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* 3D Static State */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05),
        0 6px 6px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid var(--accent-color);
}

.experience-card-3d:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.1),
        0 15px 12px rgba(10, 35, 66, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
}

.card-3d-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(10, 35, 66, 0.2);
    transition: var(--transition);
}

.experience-card-3d:hover .card-3d-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color), #d4af37);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.experience-card-3d h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-3d-place {
    font-size: 0.95rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.card-3d-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Experience Photo Gallery */
.experience-gallery {
    width: 100%;
    margin-top: 2rem;
    overflow: hidden;
}

.gallery-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Add gradient mask for fade effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.gallery-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding: 1rem 0;
}

.gallery-track img {
    height: 250px;
    width: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-track img:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the track width (since we duplicated) */
    }
}

/* Mobile Responsive Gallery */
@media screen and (max-width: 768px) {
    .gallery-track {
        gap: 1rem;
    }

    .gallery-track img {
        height: 180px;
    }
}

/* Educational Videos Section */
.videos {
    background-color: #f4f6f9;
    /* Slight contrast for video section */
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-title {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
}

.form-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fafbff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--accent-color);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--white);
}

/* Pulse Animation for WhatsApp Button */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
            0 0 0 10px rgba(37, 211, 102, 0.1),
            0 0 0 20px rgba(37, 211, 102, 0.05);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile adjustments for WhatsApp button */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

/* Responsive */
@media screen and (min-width: 768px) {

    .nav-toggle,
    .nav-close {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        display: flex;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        z-index: auto;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-cta {
        display: inline-block;
        margin-left: 2rem;
    }

    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .about-container {
        grid-template-columns: 1.2fr 0.8fr;
    }





    .contact-container {
        grid-template-columns: 1fr 1.2fr;
    }

    .logo-subtitle {
        display: block;
    }
}

/* Video Page Enhancements - New Layout */
.video-content {
    padding: 1.5rem;
    text-align: center;
}

.video-headline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.video-mention {
    font-size: 0.95rem;
    color: var(--text-light);
    /* Softer color for the Kannada text */
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
}

.video-item:hover .video-headline {
    color: var(--accent-color);
}