/* ============================================
   SANJEEVANI AYURVEDA HOSPITAL & WELLNESS CENTER
   Professional Ayurvedic Theme CSS
   ============================================ */

:root {
    /* Ayurvedic Color Palette */
    --ayur-primary: #2c5530;          /* Deep Forest Green */
    --ayur-primary-light: #4a7c59;    /* Light Forest Green */
    --ayur-primary-dark: #1a3320;     /* Dark Forest */
    --ayur-secondary: #d4af37;         /* Golden */
    --ayur-accent: #8b6f47;            /* Earthy Brown */
    --ayur-terracotta: #c86428;        /* Terracotta */
    --ayur-sage: #87a96b;              /* Sage Green */
    --ayur-cream: #f5f1e8;             /* Cream */
    --ayur-beige: #e8dcc8;             /* Beige */
    
    /* Text Colors */
    --text-dark: #2d2d2d;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-cream: #faf8f3;
    --bg-light: #f9f6f0;
    --bg-green-light: #e8f5e9;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-accent: 'Inter', sans-serif;
    --font-brand: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-round: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--ayur-primary);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

/* Links */
a {
    color: var(--ayur-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--ayur-primary-dark);
}

/* ============================================
   NAVIGATION HEADER
   ============================================ */

.professional-navbar {
    background: linear-gradient(135deg, var(--ayur-primary) 0%, var(--ayur-primary-light) 100%);
    box-shadow: var(--shadow-md);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--ayur-secondary);
}

.professional-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.professional-navbar .navbar-brand img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.professional-navbar .hospital-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.professional-navbar .hospital-name .main-name {
    font-family: var(--font-brand);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.professional-navbar .hospital-name .sub-name {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--ayur-secondary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.professional-navbar .navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    padding: 1rem 1.25rem !important;
    position: relative;
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.professional-navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--ayur-secondary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.professional-navbar .navbar-nav .nav-link:hover::before,
.professional-navbar .navbar-nav .nav-link.active::before {
    width: 80%;
}

.professional-navbar .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.professional-navbar .navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

/* Mobile Menu */
.professional-navbar .navbar-toggler {
    border: 2px solid var(--ayur-secondary);
    padding: 0.5rem;
}

.professional-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menu Styling */
.professional-navbar .dropdown-menu {
    background: white;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
}

.professional-navbar .dropdown-item {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.professional-navbar .dropdown-item:hover {
    background: var(--bg-green-light);
    color: var(--ayur-primary);
    padding-left: 1.75rem;
}

.professional-navbar .dropdown-item:active,
.professional-navbar .dropdown-item.active {
    background: var(--ayur-primary);
    color: white;
    font-weight: 600;
}

.professional-navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(44, 85, 48, 0.1);
}

/* Dropdown arrow animation */
.professional-navbar .dropdown-toggle::after {
    transition: transform var(--transition-fast);
}

.professional-navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobile dropdown styles */
@media (max-width: 991px) {
    .professional-navbar .dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        border-left: 3px solid var(--ayur-secondary);
        margin-left: 1rem;
        margin-top: 0.25rem;
    }
    
    .professional-navbar .navbar-collapse {
        background: var(--ayur-primary);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
    }
}

/* Top Info Bar */
.top-info-bar {
    background-color: var(--ayur-primary-dark);
    color: var(--text-white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-info-bar a {
    color: var(--text-white);
    text-decoration: none;
    margin: 0 1rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.top-info-bar a:hover {
    color: var(--ayur-secondary);
    text-decoration: none;
}

.top-info-bar a i {
    margin-right: 0.5rem;
    color: var(--ayur-secondary);
}

.top-info-bar .fab,
.top-info-bar .fa-brands {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 0.25rem;
    transition: var(--transition-fast);
}

.top-info-bar .fab:hover,
.top-info-bar .fa-brands:hover {
    background: var(--ayur-secondary);
    color: var(--ayur-primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .top-info-bar {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .top-info-bar a {
        margin: 0 0.5rem;
    }
    
    .top-info-bar .fab,
    .top-info-bar .fa-brands {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.ayurvedic-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ayur-primary) 0%, var(--ayur-primary-light) 50%, var(--ayur-sage) 100%);
    overflow: hidden;
}

.ayurvedic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.ayurvedic-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text-content {
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--ayur-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 2px solid var(--ayur-secondary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ayur-secondary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ayur-secondary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Service Cards in Hero */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hero-service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.hero-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ayur-secondary);
}

.hero-service-icon {
    font-size: 3rem;
    color: var(--ayur-primary);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.hero-service-card:hover .hero-service-icon {
    color: var(--ayur-secondary);
    transform: scale(1.1);
}

.hero-service-title {
    font-size: 1.25rem;
    color: var(--ayur-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-service-description {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-ayurvedic {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-ayurvedic-primary {
    background: var(--ayur-secondary);
    color: var(--text-dark);
    border-color: var(--ayur-secondary);
}

.btn-ayurvedic-primary:hover {
    background: transparent;
    color: var(--ayur-secondary);
    border-color: var(--ayur-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ayurvedic-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-ayurvedic-outline:hover {
    background: var(--text-white);
    color: var(--ayur-primary);
}

/* ============================================
   DYNAMIC BANNER SECTION
   ============================================ */

.dynamic-banner-section {
    position: relative;
    margin: 0;
    padding: 0;
}

.dynamic-banner-section .carousel-item {
    height: 600px;
    background: var(--ayur-primary);
}

.banner-video-container,
.banner-youtube-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.banner-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-youtube-container iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dynamic-banner-section .carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.dynamic-banner-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    z-index: 10;
}

.banner-text-overlay {
    background: rgba(44, 85, 48, 0.85);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--ayur-secondary);
    box-shadow: var(--shadow-xl);
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.dynamic-banner-section .carousel-control-prev,
.dynamic-banner-section .carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: var(--transition-normal);
}

.dynamic-banner-section .carousel-control-prev:hover,
.dynamic-banner-section .carousel-control-next:hover {
    opacity: 1;
}

.dynamic-banner-section .carousel-indicators {
    margin-bottom: 2rem;
}

.dynamic-banner-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--ayur-secondary);
    border: 2px solid white;
    opacity: 0.7;
}

.dynamic-banner-section .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Banner responsive */
@media (max-width: 768px) {
    .dynamic-banner-section .carousel-item,
    .banner-video-container,
    .banner-youtube-container {
        height: 400px;
    }
    
    .dynamic-banner-section .carousel-item img {
        height: 400px;
    }
    
    .banner-text-overlay {
        padding: 2rem 1.5rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section-ayurvedic {
    padding: var(--spacing-xl) 0;
}

.section-bg-cream {
    background-color: var(--bg-cream);
}

.section-bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    background: var(--bg-green-light);
    color: var(--ayur-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--ayur-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 85, 48, 0.9), transparent);
    padding: 2rem;
    color: var(--text-white);
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ayur-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   SERVICES/TREATMENTS SECTION
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: var(--spacing-md);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(44, 85, 48, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(44, 85, 48, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(44, 85, 48, 0.15),
        0 8px 24px rgba(212, 175, 55, 0.1),
        0 0 0 3px rgba(212, 175, 55, 0.2);
    border-color: var(--ayur-secondary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ayur-primary-light) 0%, var(--ayur-sage) 100%);
    flex-shrink: 0;
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-image::after {
    opacity: 1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.service-card:hover .service-card-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05) contrast(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: linear-gradient(135deg, var(--ayur-secondary) 0%, #ddb847 100%);
    color: var(--ayur-primary-dark);
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-overlay {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Service Badge for Signature/Recommended treatments */
.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 12px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

.service-card:hover .service-badge {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(255, 107, 107, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card-body {
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-title {
    font-size: 1.4rem;
    color: var(--ayur-primary) !important;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
    /* Limit title to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.64rem;
}

.service-card:hover .service-card-title {
    color: var(--ayur-primary-dark) !important;
}

.service-card-description {
    color: var(--text-medium) !important;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
    /* Limit description to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 6.46rem;
    max-height: 6.46rem;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(44, 85, 48, 0.08);
    margin-top: auto;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-card-link {
    color: var(--ayur-primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, rgba(44, 85, 48, 0.1) 100%);
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.service-card-link i {
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    color: var(--text-white);
    background: linear-gradient(135deg, var(--ayur-primary) 0%, var(--ayur-primary-light) 100%);
    border-color: var(--ayur-secondary);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(44, 85, 48, 0.3);
    text-decoration: none;
}

.service-card-link:hover i {
    transform: translateX(4px);
}

.service-card-footer span {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ayur-secondary);
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        min-height: 540px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-body {
        padding: 1.5rem;
    }
    
    .service-card-title {
        font-size: 1.25rem;
        min-height: 3.25rem;
    }
    
    .service-card-description {
        font-size: 0.9rem;
        min-height: 6.12rem;
        max-height: 6.12rem;
    }
    
    .service-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
    }
    
    .service-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-card-link {
        width: 100%;
        justify-content: center;
    }
    
    .service-card-footer span {
        text-align: center
    }
    
    .service-card-title {
        font-size: 1.3rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

/* Testimonials Page Header */
.page-header h1 {
    color: var(--ayur-primary);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--ayur-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-medium);
}

/* Testimonial Intro */
.testimonial-intro {
    padding: 2rem 0;
}

.testimonial-intro .lead {
    color: var(--text-medium);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Featured Testimonial */
.featured-testimonial {
    background: linear-gradient(135deg, var(--bg-green-light) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--ayur-secondary);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.testimonial-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid var(--ayur-secondary);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-quote {
    margin: 0;
}

.testimonial-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: #2d2d2d !important;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial-quote .blockquote-footer {
    color: var(--ayur-primary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.testimonial-quote .blockquote-footer cite {
    color: var(--text-medium);
    font-style: normal;
}

/* Testimonial Slider */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

/* Testimonial Cards Grid */
.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--ayur-secondary);
}

.testimonial-header h5 {
    color: #2c5530 !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-header .text-muted {
    color: #5a5a5a !important;
}

.testimonial-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--ayur-secondary);
    object-fit: cover;
}

.testimonial-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-preview {
    color: #2d2d2d !important;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-treatment {
    margin-top: auto;
    padding-top: 1rem;
}

.testimonial-treatment .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Read More Button */
.read-more-btn {
    color: var(--ayur-primary) !important;
    font-weight: 600;
    text-decoration: none;
}

.read-more-btn:hover {
    color: var(--ayur-secondary) !important;
}

/* Video Testimonials */
.video-testimonials h3 {
    color: var(--ayur-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.video-testimonial {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.video-testimonial:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-button:hover {
    background: var(--ayur-secondary);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 1.8rem;
    margin-left: 5px;
}

.video-details {
    background: var(--bg-white);
}

.video-details h5 {
    color: var(--ayur-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-details p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Legacy testimonial styles */
.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--ayur-secondary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    overflow: hidden;
    border: 3px solid var(--ayur-secondary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-details h5 {
    color: var(--ayur-primary);
    margin-bottom: 0.25rem;
}

.testimonial-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.ayurvedic-footer {
    background: linear-gradient(135deg, var(--ayur-primary-dark) 0%, var(--ayur-primary) 100%);
    color: var(--text-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
}

.ayurvedic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--ayur-secondary), var(--ayur-terracotta), var(--ayur-secondary));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-brand img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--ayur-secondary);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--ayur-secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--ayur-secondary);
    padding-left: 0.5rem;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info i {
    color: var(--ayur-secondary);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.certification-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ayur-secondary);
}

/* ============================================
   TIMELINE SECTION - JOURNEY THROUGH THE YEARS
   ============================================ */

.nabh-timeline {
    position: relative;
    max-width: 900px;
    padding: 2rem 0;
}

.nabh-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(135, 169, 107, 0.4) 5%,
        rgba(87, 127, 76, 0.6) 50%,
        rgba(135, 169, 107, 0.4) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(87, 127, 76, 0.2);
}

.nabh-timeline-item {
    position: relative;
    padding-left: 55%;
    margin-bottom: 2.5rem;
}

.nabh-timeline-item:nth-child(even) {
    padding-left: 0;
    padding-right: 55%;
    text-align: right;
}

.nabh-timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #87a96b 0%, #6b8f55 100%);
    border: 4px solid #87a96b;
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 1),
        0 4px 15px rgba(87, 127, 76, 0.3);
    transition: all 0.3s ease;
}

.nabh-timeline-item:hover .nabh-timeline-dot {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 1),
        0 6px 20px rgba(87, 127, 76, 0.4);
    border-color: #6b8f55;
}

.nabh-timeline-date {
    position: absolute;
    top: 12px;
    font-size: 1rem;
    color: #87a96b;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 2px solid #87a96b;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nabh-timeline-item:nth-child(odd) .nabh-timeline-date {
    right: calc(50% + 90px);
}

.nabh-timeline-item:nth-child(even) .nabh-timeline-date {
    left: calc(50% + 90px);
}

.nabh-timeline-date-mobile {
    display: none;
}

.nabh-timeline-content {
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
    padding: 1.75rem;
    border-radius: 15px;
    border: 2px solid #e8dcc8;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(87, 127, 76, 0.04);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nabh-timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 169, 107, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nabh-timeline-item:hover .nabh-timeline-content::before {
    opacity: 1;
}

.nabh-timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
}

.nabh-timeline-item:nth-child(odd) .nabh-timeline-content::after {
    right: -20px;
    border-color: transparent transparent transparent #e8dcc8;
}

.nabh-timeline-item:nth-child(even) .nabh-timeline-content::after {
    left: -20px;
    border-color: transparent #e8dcc8 transparent transparent;
}

.nabh-timeline-item:hover .nabh-timeline-content {
    transform: translateY(-5px);
    border-color: #87a96b;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(87, 127, 76, 0.1);
}

.nabh-timeline-content h4 {
    color: #577f4c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.nabh-timeline-content p {
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Mobile responsive timeline */
@media (max-width: 768px) {
    .nabh-timeline {
        padding-left: 40px;
    }
    
    .nabh-timeline-line {
        left: 25px;
        width: 2px;
    }
    
    .nabh-timeline-item,
    .nabh-timeline-item:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
        padding-bottom: 1.5rem;
    }
    
    .nabh-timeline-dot {
        left: 25px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 3px;
    }
    
    .nabh-timeline-date {
        display: none;
    }
    
    .nabh-timeline-date-mobile {
        display: block;
        font-size: 0.9rem;
        color: #87a96b;
        font-weight: 700;
        margin-bottom: 0.5rem;
        padding: 0.3rem 0.9rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        display: inline-block;
        border: 2px solid #87a96b;
    }
    
    .nabh-timeline-content::after {
        top: 18px;
        left: -20px !important;
        border-color: transparent #e8dcc8 transparent transparent !important;
        border-width: 8px;
    }
    
    .nabh-timeline-item {
        padding-left: 70px;
    }
} 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(212, 175, 55, 0.15),
        0 0 0 3px rgba(212, 175, 55, 0.1);
}

.nabh-timeline-content h4 {
    color: var(--ayur-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.nabh-timeline-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Mobile responsive timeline */
@media (max-width: 768px) {
    .nabh-timeline {
        padding-left: 40px;
    }
    
    .nabh-timeline-line {
        left: 30px;
        width: 3px;
    }
    
    .nabh-timeline-item,
    .nabh-timeline-item:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
        padding-bottom: 2rem;
    }
    
    .nabh-timeline-dot {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-width: 4px;
    }
    
    .nabh-timeline-date {
        display: none;
    }
    
    .nabh-timeline-date-mobile {
        display: block;
        font-size: 0.95rem;
        color: var(--ayur-secondary);
        font-weight: 700;
        margin-bottom: 0.75rem;
        padding: 0.4rem 1rem;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
        border-radius: 20px;
        display: inline-block;
        border: 2px solid var(--ayur-secondary);
    }
    
    .nabh-timeline-content::after {
        top: 20px;
        left: -24px !important;
        border-color: transparent white transparent transparent !important;
    }
    
    .nabh-timeline-item {
        padding-left: 80px;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .professional-navbar .navbar-collapse {
        background: rgba(44, 85, 48, 0.98);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .ayurvedic-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-ayurvedic {
        width: 100%;
    }
    
    .professional-navbar .hospital-name .main-name {
        font-size: 1.2rem;
    }
    
    .professional-navbar .hospital-name .sub-name {
        font-size: 0.8rem;
    }
    
    /* Mobile navbar adjustments */
    .professional-navbar {
        padding: 0.5rem 0 !important;
    }
    
    .professional-navbar .container-fluid {
        padding: 0 1rem !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    }
    
    .professional-navbar .navbar-brand {
        gap: 0.5rem;
        padding: 0;
        margin-right: 0.5rem;
        flex: 0 1 auto;
        max-width: calc(100% - 60px);
        min-width: 0;
        order: 1;
    }
    
    .professional-navbar .navbar-brand img {
        height: 45px;
        flex-shrink: 0;
        width: auto;
    }
    
    .professional-navbar .hospital-name {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }
    
    .professional-navbar .hospital-name .main-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }
    
    .professional-navbar .hospital-name .sub-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }
    
    .professional-navbar .navbar-toggler {
        padding: 0.5rem 0.75rem;
        margin-left: auto;
        border-width: 2px;
        flex-shrink: 0;
        order: 2;
        position: relative;
        z-index: 10;
    }
    
    .professional-navbar .navbar-collapse {
        margin-top: 1rem;
        flex-basis: 100%;
        order: 3;
        width: 100%;
    }
    
    /* Top info bar mobile */
    .top-info-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .top-info-bar a {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .top-info-bar a i {
        font-size: 0.85rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .professional-navbar .hospital-name .main-name {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .professional-navbar .hospital-name .sub-name {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    .professional-navbar .navbar-brand {
        gap: 0.4rem;
        max-width: calc(100% - 55px);
    }
    
    .professional-navbar .navbar-brand img {
        height: 38px;
    }
    
    .professional-navbar .navbar-toggler {
        padding: 0.4rem 0.6rem;
        margin-left: 0.5rem;
    }
    
    .professional-navbar .container-fluid {
        padding: 0 0.75rem !important;
    }
    
    .top-info-bar .col-md-6:first-child a:last-child {
        display: none; /* Hide email on very small screens */
    }
    
    .top-info-bar {
        padding: 0.4rem 0;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-ayur-primary { color: var(--ayur-primary); }
.text-ayur-secondary { color: var(--ayur-secondary); }
.bg-ayur-primary { background-color: var(--ayur-primary); }
.bg-ayur-secondary { background-color: var(--ayur-secondary); }
.bg-cream { background-color: var(--bg-cream); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}
