/* Custom CSS for FitZone Gym */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(40,167,69,0.9) 100%),
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* New Hero Section */
.hero-section-new {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    padding: 0 60px;
}

.hero-content-stacked {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 80px 0 0 0;
}

.hero-text-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    flex-shrink: 0;
}

.hero-main-heading {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-tagline {
    position: relative;
    margin-bottom: 2rem;
}

.tagline-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    position: relative;
    z-index: 2;
}



.hero-image-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-wrapper-stacked {
    flex: 1;
    width: 100%;
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    min-height: 400px;
}

.hero-image-stacked {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    min-height: 400px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Dark Features Section */
.features-section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.features-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 25px 25px 0 0;
}

.features-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.feature-card-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0.6;
}

.feature-card-dark:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 22px 22px 0 0;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card-dark:hover .feature-icon-wrapper {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.feature-card-dark:hover .feature-icon-wrapper::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Modern CTA Section */
.cta-section-modern {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #1f1f1f 25%, #252525 50%, #2a2a2a 75%, #2d2d2d 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cta-glow-effect {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 6s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.5px;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section-modern {
        margin: 0 10px;
        padding: 80px 0;
        border-radius: 24px;
    }
    
    .cta-heading {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-glow-effect {
        width: 400px;
        height: 400px;
        right: -30%;
    }
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(52, 58, 64, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2d2d2d;
    border: 2px solid #2d2d2d;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 45, 45, 0.4);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #2d2d2d;
    color: #2d2d2d;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #2d2d2d;
    border-color: #2d2d2d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 45, 45, 0.4);
}

.btn-dark {
    background: #2d2d2d;
    border: 2px solid #2d2d2d;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.5);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid #2d2d2d;
    color: #2d2d2d;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #2d2d2d;
    border-color: #2d2d2d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 45, 45, 0.4);
}

.btn-light {
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #2d2d2d;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f8f9fa;
    border-color: #f8f9fa;
    color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-section .btn {
        display: block;
        margin-bottom: 1rem;
    }
    
    /* New Hero Section Mobile */
    .hero-section-new {
        padding: 40px 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content-stacked {
        padding: 60px 0 0 0;
    }
    
    .hero-text-wrapper {
        padding: 0 10px;
    }
    
    .hero-main-heading {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
    }
    
    .tagline-text {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .hero-tagline::after {
        display: none;
    }
    
    .hero-image-wrapper {
        height: 50vh;
        margin-top: 2rem;
    }
    
    .hero-image-wrapper-stacked {
        margin-top: 2rem;
        min-height: 300px;
        border-radius: 16px 16px 0 0;
    }
    
    .hero-image-stacked {
        min-height: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
    
    /* Dark Features Section Mobile */
    .features-heading {
        font-size: 2.5rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .feature-card-dark {
        padding: 2rem 1.5rem;
    }
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 100px 0 50px;
}

.service-card, .class-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover, .class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.08);
}

.service-card img, .class-card img {
    transition: transform 0.3s ease;
}

.service-card:hover img, .class-card:hover img {
    transform: scale(1.05);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #444;
    padding: 12px 20px;
    background: #2d2d2d;
    color: #ffffff;
}

.form-control:focus {
    border-color: #666;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.1);
    background: #2d2d2d;
    color: #ffffff;
}

.form-control::placeholder {
    color: #999;
}

.contact-info {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px;
    color: #ffffff;
}

/* Dark theme cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.card-body {
    color: #ffffff;
}

.card-title {
    color: #ffffff;
}

.card-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Dark theme sections */
.bg-light {
    background: #2d2d2d !important;
    color: #ffffff;
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Tables */
.table {
    color: #ffffff;
}

.table-dark {
    background: #2d2d2d;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.05);
}

/* Accordions */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.8);
}

/* Form elements */
.form-select {
    background: #2d2d2d;
    border: 2px solid #444;
    color: #ffffff;
}

.form-select:focus {
    background: #2d2d2d;
    border-color: #666;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.1);
}

.form-check-input {
    background: #2d2d2d;
    border: 2px solid #444;
}

.form-check-input:checked {
    background: #2d2d2d;
    border-color: #666;
}

.form-check-label {
    color: #ffffff;
}

.form-label {
    color: #ffffff;
}

/* Badges */
.badge {
    background: #2d2d2d !important;
    color: #ffffff !important;
}

.bg-primary {
    background: #2d2d2d !important;
}

.bg-warning {
    background: #666 !important;
}

.bg-success {
    background: #2d2d2d !important;
}

/* Text colors */
.text-primary {
    color: #ffffff !important;
}

.text-success {
    color: #ffffff !important;
}

.text-warning {
    color: #ffffff !important;
}

/* Links */
a {
    color: #ffffff;
}

a:hover {
    color: #ccc;
}

/* Navbar adjustments */
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ccc;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
} 

/* Services Section */
.services-section-dark {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.services-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.services-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.service-row {
    padding: 3rem 0;
}

.service-text-content {
    padding: 2rem;
}

.service-title-alt {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description-alt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-features-list {
    margin-bottom: 2.5rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-feature-item i {
    color: #ffffff;
    margin-right: 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-service-alt {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-service-alt:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.service-image-alt {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-image-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-image-alt:hover .service-img {
    transform: scale(1.05);
}

/* Responsive Services Section */
@media (max-width: 768px) {
    .services-section-dark {
        padding: 80px 0;
    }
    
    .services-heading {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .service-row {
        padding: 2rem 0;
    }
    
    .service-text-content {
        padding: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .service-title-alt {
        font-size: 1.5rem;
    }
    
    .service-description-alt {
        font-size: 1rem;
    }
    
    .service-img {
        height: 300px;
    }
    
    /* Remove order classes on mobile */
    .col-lg-6 {
        order: 0 !important;
    }
} 

/* Animation Styles */
.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.animate-fade-in.animate-active {
    opacity: 1;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-up.animate-active {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in-up.animate-active {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-in-left.animate-active {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-in-right.animate-active {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-scale-in.animate-active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for feature cards */
.feature-card-dark {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, 
                background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-text-content.animate-active .service-feature-item {
    opacity: 1;
    transform: translateX(0);
}

.service-text-content.animate-active .service-feature-item:nth-child(1) {
    transition-delay: 0.2s;
}

.service-text-content.animate-active .service-feature-item:nth-child(2) {
    transition-delay: 0.4s;
}

.service-text-content.animate-active .service-feature-item:nth-child(3) {
    transition-delay: 0.6s;
}

/* Hero section specific animations */
.hero-main-heading {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-main-heading.animate-active {
    animation: shimmer 3s ease-in-out infinite, slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover animations enhancement */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced card animations */
.feature-card-dark.animate-active {
    animation: cardSlideIn 0.8s ease-out;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Service image animations */
.service-image-alt {
    position: relative;
    overflow: hidden;
}

.service-image-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.service-image-alt.animate-active::before {
    left: 100%;
}

/* CTA section enhanced animations */
.cta-glow-effect {
    animation: pulse 6s ease-in-out infinite alternate, rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Navbar animation on scroll */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(52, 58, 64, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Footer animation */
footer .container > .row > div {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

footer .container.animate-active > .row > div {
    opacity: 1;
    transform: translateY(0);
}

footer .container.animate-active > .row > div:nth-child(1) {
    transition-delay: 0.2s;
}

footer .container.animate-active > .row > div:nth-child(2) {
    transition-delay: 0.4s;
}

footer .container.animate-active > .row > div:nth-child(3) {
    transition-delay: 0.6s;
}

/* Responsive animation adjustments */
@media (max-width: 768px) {
    .animate-slide-in-left,
    .animate-slide-in-right {
        transform: translateY(30px);
    }
    
    .animate-slide-in-left.animate-active,
    .animate-slide-in-right.animate-active {
        transform: translateY(0);
    }
    
    .service-text-content.animate-active .service-feature-item {
        transition-delay: 0.1s;
    }
    
    .service-text-content.animate-active .service-feature-item:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .service-text-content.animate-active .service-feature-item:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .service-text-content.animate-active .service-feature-item:nth-child(3) {
        transition-delay: 0.3s;
    }
} 