/* ===================================
   CADDESK Centre - Red Theme Redesign
   Primary Red: #E31E24
   =================================== */

:root {
    /* Primary Red Colors */
    --primary-red: #E31E24;
    --secondary-red: #C41E3A;
    --accent-red: #FF4444;
    --dark-red: #8B0000;
    --light-red: #FFE5E7;
    
    /* Neutral Colors */
    --charcoal: #2D2D2D;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #6B7280;
    --dark-gray: #374151;
    
    /* Success */
    --success-green: #10B981;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 15px rgba(227, 30, 36, 0.08);
    --shadow-lg: 0 5px 20px rgba(227, 30, 36, 0.12);
    --shadow-red-glow: 0 4px 12px rgba(227, 30, 36, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ===================================
   GLOBAL STYLES
   =================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: var(--primary-red);
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--secondary-red);
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%) !important;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff !important;
}

.navbar-brand {
    color: var(--charcoal) !important;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    color: var(--primary-red) !important;
    transform: translateY(-2px);
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--primary-red);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-toggler {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.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(227, 30, 36, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-enroll-nav {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-left: 1rem;
}

.btn-enroll-nav:hover {
    background-color: var(--secondary-red);
    transform: scale(1.05);
    box-shadow: var(--shadow-red-glow);
    color: var(--white);
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary-red {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary-red:hover {
    background-color: var(--secondary-red);
    transform: scale(1.05);
    box-shadow: var(--shadow-red-glow);
    color: var(--white);
}

.btn-secondary-red {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-secondary-red:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.btn-primary-red:active,
.btn-secondary-red:active {
    transform: scale(0.98);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--light-red) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--light-red) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-red);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* ===================================
   STATS CARDS
   =================================== */

.stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-red);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--light-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-red);
}

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

.stat-label {
    color: var(--medium-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ===================================
   CARDS
   =================================== */

.custom-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--light-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-red);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.card-features li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    flex-shrink: 0;
}

.card-link {
    color: var(--primary-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.card-link:hover {
    gap: 0.75rem;
}

/* ===================================
   COURSE CARDS
   =================================== */

.course-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
}

.course-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.course-meta i {
    color: var(--primary-red);
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.course-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

.course-price-old {
    font-size: 1rem;
    color: var(--medium-gray);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.btn-enroll {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    transition: var(--transition-smooth);
}

.btn-enroll:hover {
    background-color: var(--secondary-red);
    transform: scale(1.05);
    color: var(--white);
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 100%;
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--light-red);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-red);
}

.testimonial-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-rating {
    color: var(--primary-red);
    margin-top: 0.5rem;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-cta-white {
    background-color: var(--white);
    color: var(--primary-red);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cta-white:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: var(--primary-red);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-label {
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
    outline: none;
}

.form-select {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition-smooth);
}

.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
    outline: none;
}

.text-danger {
    color: var(--primary-red) !important;
}

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--light-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-red);
}

.contact-value {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-label {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--charcoal);
    color: #D1D5DB;
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--primary-red);
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

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

.footer-links a {
    color: #D1D5DB;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-red);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-in-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===================================
   UTILITY CLASSES
   =================================== */

.bg-light-red {
    background-color: var(--light-red) !important;
}

.bg-red {
    background-color: var(--primary-red) !important;
}

.text-red {
    color: var(--primary-red) !important;
}

.text-dark-red {
    color: var(--dark-red) !important;
}

.border-red {
    border-color: var(--primary-red) !important;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stats-section {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary-red,
    .hero-buttons .btn-secondary-red {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* ===================================
   LOADING & TRANSITIONS
   =================================== */

.page-transition {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* ===================================
   ENHANCED RESPONSIVE & ANIMATIONS
   =================================== */

/* Logo Image Styling */
.navbar-brand .logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand:hover .logo-image {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(227, 30, 36, 0.3));
}

/* Enhanced Hover Effects for All Interactive Elements */
.card, .btn, .nav-link, .navbar-brand, 
.service-card, .course-card, .stat-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.12);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.15);
    border-color: var(--primary-red);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--primary-red);
    color: white;
}

.course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(227, 30, 36, 0.18);
}

.course-card:hover .course-image {
    transform: scale(1.1);
}

/* Image Carousel Animations */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* Smooth Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Enhanced Button Hover Effects */
.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
    background: linear-gradient(135deg, var(--secondary-red) 0%, var(--primary-red) 100%);
}

.btn-outline-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Stat Numbers Animation */
.stat-number {
    display: inline-block;
    font-weight: 800;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.2);
    animation: pulse 1s infinite;
}

/* Nav Link Hover Enhancement */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Footer Social Icons Hover */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.social-link:hover::before {
    width: 200%;
    height: 200%;
}

.social-link:hover i {
    transform: rotate(360deg) scale(1.2);
}

/* Image Hover Effects */
img {
    transition: all 0.4s ease;
}

img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* RESPONSIVE DESIGN ENHANCEMENTS */

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-enroll {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .navbar-brand .logo-image {
        height: 45px;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section {
        padding: 4rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .service-card,
    .course-card {
        margin-bottom: 2rem;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-brand .logo-image {
        height: 40px;
    }
    
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 3rem 0 !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .card,
    .nav-link {
        -webkit-tap-highlight-color: rgba(227, 30, 36, 0.2);
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: 60vh;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-skeleton {
    animation: shimmer 2s infinite;
    background: linear-gradient(
        to right,
        #f0f0f0 4%,
        #e0e0e0 25%,
        #f0f0f0 36%
    );
    background-size: 1000px 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-red);
    z-index: 9999;
    transition: width 0.2s ease;
}

/* Enhanced Focus States for Accessibility */
*:focus {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
}

button:focus,
a:focus {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .social-link {
        display: none;
    }
    
    body {
        color: black;
    }
}

/* ===================================
   ADVANCED POLISH & ANIMATIONS v4.0
   =================================== */

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

body {
    overflow-x: hidden;
}

/* Advanced Navbar Animations */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.15);
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    position: relative;
    display: inline-block;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.navbar-brand:hover::before {
    opacity: 1;
}

/* Nav Links Advanced Effects */
.nav-link {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Button Press Animation */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--secondary-red) 0%, var(--primary-red) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* Hero Section Advanced Animations */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 50px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-badge i {
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-weight: 800;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, var(--dark-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    animation: slideInLeft 0.8s ease-out 0.6s both;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-subtitle {
    opacity: 1;
}

/* Stats Cards Advanced Effects */
.stat-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:hover .stat-number {
    animation: countUp 0.5s ease-out;
}

@keyframes countUp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Service Cards Premium Effects */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-red);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
    color: var(--primary-red);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.15;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
}

/* Course Cards Premium Design */
.course-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.course-card:hover::before {
    opacity: 0.05;
}

.course-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 16px 16px 0 0;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .course-image {
    transform: scale(1.15) rotate(2deg);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.course-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.course-meta i {
    color: var(--primary-red);
    margin-right: 4px;
}

.course-title {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.course-card:hover .course-title {
    color: var(--primary-red);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.course-price {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: var(--medium-gray);
}

.new-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

/* Testimonial Cards Advanced */
.testimonial-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    font-weight: 900;
    color: rgba(227, 30, 36, 0.05);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.1);
}

.testimonial-text {
    position: relative;
    z-index: 2;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.15);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--primary-red);
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 0.5rem;
}

.testimonial-rating i {
    color: var(--primary-red);
    font-size: 0.875rem;
}

/* CTA Section Dramatic Effect */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, var(--dark-red) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    animation: slideBackground 20s linear infinite;
}

@keyframes slideBackground {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(20px) translateY(20px);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    background: white;
    color: var(--primary-red);
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: var(--very-light-gray);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-feature i {
    color: white;
    font-size: 1.2rem;
}

/* Contact Form Polish */
.contact-form {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.form-label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    display: block;
}

.form-label .required {
    color: var(--primary-red);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--medium-gray);
}

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

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    transform: rotate(360deg);
}

.contact-details h6 {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-red);
}

/* Footer Polish */
.footer {
    background: var(--charcoal);
    color: var(--light-gray);
    position: relative;
}

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

.footer-column h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-red);
}

.footer-link:hover {
    color: var(--primary-red);
    padding-left: 20px;
}

.footer-link:hover::before {
    left: 0;
    opacity: 1;
}

/* Social Links Advanced */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover i {
    transform: rotate(360deg) scale(1.2);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.6);
}

/* Loading States */
.loading-spinner {
    border: 3px solid rgba(227, 30, 36, 0.2);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

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

/* Success/Error Animations */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
    }
    50% {
        transform: scale(1.2) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(45deg);
    }
}

.error-shake {
    animation: shake 0.5s ease-in-out;
}

.success-checkmark {
    animation: checkmark 0.6s ease-out;
}

/* Intersection Observer Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger Animation for Children */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

/* Mobile Menu Animation */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

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

/* Performance Optimizations */
.card,
.btn,
.service-card,
.course-card,
.stat-card {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   FIX FOR OVERLAPPING CONTENT
   =================================== */

/* Ensure proper stacking context */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

/* Hero section should not overlap navbar */
.hero-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 100px;
}

/* Carousel section spacing */
#heroCarousel {
    margin-top: 76px; /* navbar height */
    position: relative;
    z-index: 2;
}

/* Stats section proper spacing */
.stats-section {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    margin-top: 0;
}

/* All sections proper spacing */
section {
    position: relative;
    clear: both;
    width: 100%;
}

/* About section */
.about-section {
    position: relative;
    z-index: 4;
    padding: 100px 0;
}

/* Services section */
.services-section {
    position: relative;
    z-index: 5;
    padding: 100px 0;
    background: var(--white);
}

/* Fix container widths */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* Fix floating orbs in hero */
.hero-section::before,
.hero-section::after {
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-image {
    position: relative;
    z-index: 10;
}

/* Fix carousel controls */
.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
}

/* Fix scroll-to-top button */
.scroll-to-top {
    z-index: 1050;
}

/* Ensure cards don't overlap */
.card,
.service-card,
.course-card,
.stat-card,
.testimonial-card {
    position: relative;
    z-index: 1;
}

/* Fix CTA section */
.cta-section {
    position: relative;
    z-index: 6;
    padding: 120px 0;
}

.cta-section::before {
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Footer at bottom */
.footer {
    position: relative;
    z-index: 7;
    margin-top: 0;
}

/* Fix modal z-index if any */
.modal {
    z-index: 1055 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
}

.modal-dialog {
    z-index: 1056 !important;
    position: relative;
}

.modal-content {
    z-index: 1057 !important;
    position: relative;
}

/* Remove any negative margins that might cause overlap */
section + section {
    margin-top: 0;
}

/* Ensure proper flow */
body {
    margin: 0;
    padding: 0;
}

/* Fix any absolute positioning issues */
.position-absolute {
    z-index: auto;
}

/* Carousel should not overlap navbar */
.carousel {
    margin-top: 0;
}

/* Section padding consistency */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Remove parallax on hero if causing issues */
@media (max-width: 768px) {
    .hero-section {
        transform: none !important;
        padding-top: 60px;
    }
    
    #heroCarousel {
        margin-top: 70px;
    }
}

/* Fix Bootstrap conflicts */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* Clear any floating issues */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure sections stack properly */
main {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
}

/* Fix any transform issues */
.fade-in-section {
    transform-origin: center;
}

/* Remove any position fixed that might cause issues */
section:not(.navbar) {
    position: relative;
}

/* ===================================
   REMOVE SPACE BELOW NAVBAR
   =================================== */

/* Remove any margin/padding from body and main content */
body > main,
body > div:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Carousel should be directly below navbar */
.carousel-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#heroCarousel {
    margin-top: 0 !important;
}

/* Remove any space between navbar and first section */
.navbar + section,
.navbar + * {
    margin-top: 0 !important;
}

/* Ensure navbar doesn't create extra space */
.navbar-collapse {
    margin-bottom: 0 !important;
}

/* ===================================
   ENHANCED CAROUSEL DESIGN
   =================================== */

/* Carousel container */
#heroCarousel {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

/* Carousel items */
.carousel-item {
    height: 600px;
    width: 100%;
}

/* Make images more visible - reduce gradient opacity */
.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Lighter overlay so images are more visible */
.carousel-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.5) 0%, rgba(139, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Content above overlay */
.carousel-image-wrapper .container {
    position: relative;
    z-index: 2;
}

/* Enhanced carousel animations */
.carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Slide animation from right */
.carousel-item.active.carousel-item-start,
.carousel-item.active.carousel-item-end {
    transform: translateX(0);
}

.carousel-item-next.carousel-item-start,
.carousel-item-prev.carousel-item-end {
    transform: translateX(0);
}

/* Zoom effect on active slide */
.carousel-item.active .carousel-image-wrapper {
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Text animations */
.carousel-item.active .text-white h2 {
    color: #ffffff !important;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.carousel-item.active .text-white p {
    color: #ffffff !important;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.carousel-item.active .text-white .btn {
    animation: slideInLeft 1s ease-out 0.9s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(227, 30, 36, 0.8);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: rgba(227, 30, 36, 1);
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Enhanced indicators */
.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.carousel-indicators .active {
    width: 40px;
    border-radius: 6px;
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Text styling */
.carousel-item .display-4 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff !important;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.carousel-item .lead {
    font-size: 1.5rem;
    color: #ffffff !important;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.carousel-item .btn-light {
    background: white;
    color: var(--primary-red);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.carousel-item .btn-light:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

/* Mobile responsive carousel */
@media (max-width: 768px) {
    #heroCarousel,
    .carousel-item {
        height: 450px;
    }
    
    .carousel-item .display-4 {
        font-size: 2rem;
    }
    
    .carousel-item .lead {
        font-size: 1.125rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    #heroCarousel,
    .carousel-item {
        height: 400px;
    }
    
    .carousel-item .display-4 {
        font-size: 1.75rem;
    }
    
    .carousel-item .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-item .btn-light {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Ken Burns effect - alternate zoom direction */
.carousel-item:nth-child(odd).active .carousel-image-wrapper {
    animation: kenBurnsZoomIn 8s ease-out forwards;
}

.carousel-item:nth-child(even).active .carousel-image-wrapper {
    animation: kenBurnsZoomOut 8s ease-out forwards;
}

@keyframes kenBurnsZoomIn {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.15) translateX(-20px);
    }
}

@keyframes kenBurnsZoomOut {
    0% {
        transform: scale(1.15) translateX(-20px);
    }
    100% {
        transform: scale(1) translateX(0);
    }
}

/* ===================================
   HERO SECTION FLOATING BADGES & STATS
   =================================== */

/* Hero Illustration with floating badges */
.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central icon */
.hero-illustration > i {
    font-size: 180px;
    color: rgba(227, 30, 36, 0.15);
    animation: rotateIcon 20s linear infinite;
}

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

/* Floating badges base styling */
.floating-badge {
    position: absolute;
    background: white;
    color: var(--charcoal);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.25);
    border: 3px solid var(--primary-red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    z-index: 10;
}

.floating-badge i {
    color: var(--primary-red);
    font-size: 1.25rem;
}

/* Individual badge positions and animations */
.floating-badge.badge-1 {
    top: 10%;
    right: 5%;
    animation: floatBadge1 4s ease-in-out infinite;
}

.floating-badge.badge-2 {
    bottom: 15%;
    left: 0%;
    animation: floatBadge2 5s ease-in-out infinite;
}

.floating-badge.badge-3 {
    top: 50%;
    right: 0%;
    animation: floatBadge3 4.5s ease-in-out infinite;
}

/* Floating animations */
@keyframes floatBadge1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) translateX(10px) scale(1.05);
    }
}

@keyframes floatBadge2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    50% {
        transform: translateY(-25px) translateX(-10px) scale(1.05);
    }
}

@keyframes floatBadge3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    50% {
        transform: translateY(20px) translateX(-15px) scale(1.05);
    }
}

/* Hover effect on badges */
.floating-badge:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 15px 50px rgba(227, 30, 36, 0.4);
    cursor: pointer;
}

/* Pulse animation on badge icons */
.floating-badge i {
    animation: pulseBadgeIcon 2s ease-in-out infinite;
}

@keyframes pulseBadgeIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Hero Stats Cards */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
}

.hero-stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stat item hover effect */
.hero-stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.25);
    border-left-width: 6px;
}

/* Stat icon */
.hero-stat-item > i {
    font-size: 2.5rem;
    color: var(--primary-red);
    background: rgba(227, 30, 36, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.hero-stat-item:hover > i {
    transform: rotate(360deg) scale(1.1);
    background: var(--primary-red);
    color: white;
}

/* Stat content */
.hero-stat-item > div {
    display: flex;
    flex-direction: column;
}

.hero-stat-item strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-item span {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Add shine effect to badges */
.floating-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -200%;
    }
    100% {
        left: 200%;
    }
}

/* Mobile responsive */
@media (max-width: 992px) {
    .hero-illustration {
        height: 400px;
        margin-bottom: 3rem;
    }
    
    .hero-illustration > i {
        font-size: 120px;
    }
    
    .floating-badge {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stat-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
        padding: 1rem 1.25rem;
    }
    
    .hero-stat-item > i {
        font-size: 1.75rem;
        width: 50px;
        height: 50px;
    }
    
    .hero-stat-item strong {
        font-size: 1.5rem;
    }
    
    .hero-stat-item span {
        font-size: 0.75rem;
    }
    
    .hero-illustration {
        height: 350px;
    }
    
    .hero-illustration > i {
        font-size: 100px;
    }
    
    .floating-badge {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .floating-badge.badge-1 {
        top: 5%;
        right: 0%;
    }
    
    .floating-badge.badge-2 {
        bottom: 10%;
        left: -5%;
    }
    
    .floating-badge.badge-3 {
        top: 45%;
        right: -5%;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
    }
    
    .hero-stat-item {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .hero-illustration {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .hero-illustration > i {
        font-size: 80px;
    }
    
    .floating-badge {
        padding: 0.6rem 0.875rem;
        font-size: 0.75rem;
    }
}

/* Add glow effect on hover */
.hero-stat-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
    border-radius: 16px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hero-stat-item {
    position: relative;
}

.hero-stat-item:hover::after {
    opacity: 0.5;
}

/* ===================================
   ABOUT SECTION REDESIGN & ANIMATIONS
   =================================== */

/* About Section Background */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAbout 15s ease-in-out infinite;
}

@keyframes floatAbout {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, 50px);
    }
}

/* About Content Area */
.about-content h3 {
    font-weight: 800;
    color: var(--charcoal);
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    border-radius: 2px;
}

/* Feature Items */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInLeft 0.8s ease-out both;
}

.about-feature-item:nth-child(1) { animation-delay: 0.1s; }
.about-feature-item:nth-child(2) { animation-delay: 0.2s; }
.about-feature-item:nth-child(3) { animation-delay: 0.3s; }
.about-feature-item:nth-child(4) { animation-delay: 0.4s; }

.about-feature-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.15);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon-box i {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.about-feature-item:hover .feature-icon-box::before {
    opacity: 1;
}

.about-feature-item:hover .feature-icon-box i {
    color: white;
    transform: scale(1.2) rotate(360deg);
}

.about-feature-item h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.about-feature-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

/* Achievement Cards */
.about-achievements {
    position: relative;
}

.achievement-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

/* Stagger animation for cards */
.achievement-card.card-1 { animation-delay: 0.2s; }
.achievement-card.card-2 { animation-delay: 0.3s; }
.achievement-card.card-3 { animation-delay: 0.4s; }
.achievement-card.card-4 { animation-delay: 0.5s; }

.achievement-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 50px rgba(227, 30, 36, 0.25);
}

/* Achievement Icon */
.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-red);
    transition: all 0.5s ease;
    position: relative;
}

.achievement-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.achievement-card:hover .achievement-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.achievement-card:hover .achievement-icon::after {
    opacity: 0.3;
    transform: scale(1.2);
}

/* Achievement Number */
.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-number {
    transform: scale(1.1);
}

/* Achievement Label */
.achievement-label {
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating particles effect */
.about-achievements::before,
.about-achievements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.about-achievements::before {
    top: -50px;
    left: -50px;
    background: radial-gradient(circle, var(--primary-red), transparent);
    animation: pulse 4s ease-in-out infinite;
}

.about-achievements::after {
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, var(--secondary-red), transparent);
    animation: pulse 4s ease-in-out infinite reverse;
}

/* Counter animation on scroll */
.achievement-number {
    counter-reset: number;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content h3 {
        font-size: 1.75rem;
    }
    
    .about-feature-item {
        padding: 1.25rem;
    }
    
    .feature-icon-box {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
    
    .achievement-card {
        padding: 1.5rem 1rem;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon-box {
        margin: 0 auto;
    }
    
    .about-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .achievement-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-feature-item {
        padding: 1rem;
    }
    
    .achievement-number {
        font-size: 1.75rem;
    }
    
    .achievement-label {
        font-size: 0.85rem;
    }
}

/* Add glow effect on achievement cards */
.achievement-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red), var(--accent-red));
    border-radius: 20px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.achievement-card:hover::after {
    opacity: 0.4;
}

/* Achievement cards need relative positioning */
.achievement-card {
    position: relative;
    z-index: 1;
}

/* Ensure cards in about-achievements are above particles */
.about-achievements > .row {
    position: relative;
    z-index: 2;
}

/* ===================================
   ABOUT SECTION - NEW CARD DESIGN
   =================================== */

/* Section Background */
.about-section-new {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Enhanced Section Title */
.section-title-new {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.2;
}

.text-gradient-new {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, #8B0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(10deg);
    }
}

.section-subtitle-new {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Why Choose Card - Main Container */
.why-choose-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red), #FF4444);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Left Content Area */
.why-choose-content {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.03) 0%, rgba(227, 30, 36, 0.01) 100%);
    height: 100%;
}

.why-choose-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.why-choose-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
    animation: slideInLeft 0.8s ease-out 0.4s both, floatBadge 3s ease-in-out infinite;
}

.why-choose-badge i {
    font-size: 1.2rem;
    animation: rotate360 4s linear infinite;
}

/* Feature Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 3rem 3rem 3rem 2rem;
}

/* Modern Feature Cards */
.feature-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

/* Staggered entrance animations */
.card-animate-1 {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.card-animate-2 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.card-animate-3 {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.card-animate-4 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card-modern:hover::before {
    opacity: 0.05;
}

.feature-card-modern:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.2);
    border-color: var(--primary-red);
}

/* Feature Card Corner Accent */
.feature-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), transparent);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.feature-card-modern:hover .feature-card-corner {
    width: 100px;
    height: 100px;
    opacity: 0.2;
}

/* Feature Card Icon */
.feature-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-red);
    margin-bottom: 1.25rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.feature-card-modern:hover .feature-card-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

/* Feature Card Content */
.feature-card-content {
    position: relative;
    z-index: 2;
}

.feature-card-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-card-content h5 {
    color: var(--primary-red);
}

.feature-card-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Stats Cards Row */
.stats-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* New Stat Cards */
.stat-card-new {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out both;
}

.stat-1 { animation-delay: 0.5s; }
.stat-2 { animation-delay: 0.6s; }
.stat-3 { animation-delay: 0.7s; }

/* Animated Background */
.stat-card-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
    z-index: 1;
}

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

.stat-card-new:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.08);
}

/* Stat Card Icon */
.stat-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stat-card-icon::after {
    content: '';
    position: absolute;
    inset: -15px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.stat-card-new:hover .stat-card-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    transform: rotateY(360deg) scale(1.15);
}

.stat-card-new:hover .stat-card-icon::after {
    opacity: 0.4;
    transform: scale(1.2);
}

/* Stat Number */
.stat-card-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.stat-card-new:hover .stat-card-number {
    transform: scale(1.15);
    letter-spacing: 2px;
}

/* Stat Label */
.stat-card-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Shine Effect */
.stat-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 3;
}

.stat-card-new:hover .stat-card-shine {
    left: 100%;
}

/* Decorative Elements */
.about-decorator {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.decorator-1 {
    width: 300px;
    height: 300px;
    top: 50px;
    left: -100px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.decorator-2 {
    width: 400px;
    height: 400px;
    bottom: 50px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.06) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.decorator-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title-new {
        font-size: 2.25rem;
    }
    
    .feature-cards-grid {
        padding: 2rem;
        gap: 1.25rem;
    }
    
    .why-choose-content {
        padding: 2rem;
    }
    
    .stats-cards-row {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title-new {
        font-size: 2rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
    
    .stats-cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-content {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-title {
        font-size: 1.5rem;
    }
    
    .stat-card-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-section-new {
        padding: 60px 0;
    }
    
    .section-title-new {
        font-size: 1.75rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .stat-card-new {
        padding: 2rem 1.5rem;
    }
    
    .stat-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .stat-card-number {
        font-size: 2rem;
    }
}

/* ===================================
   SERVICES SECTION - MODERN CARD DESIGN
   =================================== */

/* Services Section Background */
.services-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Modern Service Card */
.service-card-modern {
    background: white;
    border-radius: 25px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out both;
}

/* Staggered entrance animations */
.service-animate-1 { animation-delay: 0.1s; }
.service-animate-2 { animation-delay: 0.2s; }
.service-animate-3 { animation-delay: 0.3s; }
.service-animate-4 { animation-delay: 0.4s; }
.service-animate-5 { animation-delay: 0.5s; }
.service-animate-6 { animation-delay: 0.6s; }

/* Glowing Background on Hover */
.service-card-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red), #FF4444);
    border-radius: 25px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.6s ease;
    z-index: -1;
}

.service-card-modern:hover .service-card-glow {
    opacity: 0.4;
}

.service-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.25);
    border-color: var(--primary-red);
}

/* Icon Wrapper */
.service-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
    transition: all 0.6s ease;
}

.service-card-modern:hover .service-icon-wrapper::after {
    opacity: 0.3;
    transform: scale(1.2) rotate(180deg);
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card-modern:hover .service-icon-bg {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    transform: scale(1.1) rotate(360deg);
}

.service-card-modern:hover .service-icon-wrapper i {
    color: white;
    transform: scale(1.15) rotateY(360deg);
}

/* Card Title */
.service-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1rem;
    text-align: center;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-card-title {
    color: var(--primary-red);
}

/* Card Description */
.service-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li i {
    color: var(--primary-red);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-features-list li {
    opacity: 1;
    transform: translateX(5px);
}

.service-card-modern:hover .service-features-list li i {
    transform: scale(1.2) rotate(360deg);
}

/* Add stagger to list items on hover */
.service-card-modern:hover .service-features-list li:nth-child(1) {
    transition-delay: 0.05s;
}

.service-card-modern:hover .service-features-list li:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card-modern:hover .service-features-list li:nth-child(3) {
    transition-delay: 0.15s;
}

.service-card-modern:hover .service-features-list li:nth-child(4) {
    transition-delay: 0.2s;
}

/* Card Footer */
.service-card-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid rgba(227, 30, 36, 0.1);
    margin-top: auto;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-learn-more i {
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-learn-more {
    gap: 1rem;
}

.service-card-modern:hover .service-learn-more i {
    transform: translateX(5px);
}

/* Pulse animation for cards */
@keyframes cardPulse {
    0%, 100% {
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 10px 40px rgba(227, 30, 36, 0.15);
    }
}

.service-card-modern:hover {
    animation: cardPulse 2s ease-in-out infinite;
}

/* Decorative Elements */
.services-decorator {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.services-dec-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -200px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.06) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.services-dec-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.05) 0%, transparent 70%);
    animation: float 18s ease-in-out infinite reverse;
}

/* Wave effect on card border */
@keyframes waveBorder {
    0%, 100% {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary-red);
    }
}

/* Shimmer effect on icon */
@keyframes shimmerIcon {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
    100% {
        filter: brightness(1);
    }
}

.service-card-modern:hover .service-icon-wrapper i {
    animation: shimmerIcon 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .services-section-new {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .service-icon-wrapper i {
        font-size: 2rem;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .service-card-modern {
        padding: 1.75rem 1.25rem;
    }
    
    .service-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .service-card-title {
        font-size: 1.125rem;
    }
    
    .service-card-desc {
        font-size: 0.9rem;
    }
    
    .service-features-list li {
        font-size: 0.85rem;
    }
}

/* Add entrance animation for section */
.services-section-new.is-visible .service-card-modern {
    animation-play-state: running;
}

/* Add glowing effect to random cards */
.service-card-modern:nth-child(2n):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(227, 30, 36, 0.02) 100%);
}

/* Floating animation for icons on load */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-icon-wrapper {
    animation: iconFloat 3s ease-in-out infinite;
}

.service-card-modern:nth-child(1) .service-icon-wrapper {
    animation-delay: 0s;
}

.service-card-modern:nth-child(2) .service-icon-wrapper {
    animation-delay: 0.2s;
}

.service-card-modern:nth-child(3) .service-icon-wrapper {
    animation-delay: 0.4s;
}

.service-card-modern:nth-child(4) .service-icon-wrapper {
    animation-delay: 0.6s;
}

.service-card-modern:nth-child(5) .service-icon-wrapper {
    animation-delay: 0.8s;
}

.service-card-modern:nth-child(6) .service-icon-wrapper {
    animation-delay: 1s;
}

/* Particle effect on hover */
.service-card-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.service-card-modern:hover::after {
    width: 300px;
    height: 300px;
}

/* ===================================
   COURSES SECTION - MODERN CARD DESIGN
   =================================== */

/* Courses Section Background */
.courses-section-new {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Courses Grid Layout */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Course Card Link */
.course-card-new {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

/* Staggered animations */
.course-animate-1 { animation-delay: 0.1s; }
.course-animate-2 { animation-delay: 0.2s; }
.course-animate-3 { animation-delay: 0.3s; }
.course-animate-4 { animation-delay: 0.4s; }
.course-animate-5 { animation-delay: 0.5s; }
.course-animate-6 { animation-delay: 0.6s; }

/* Course Card Glow */
.course-card-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red), #FF4444);
    border-radius: 25px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.6s ease;
    z-index: -1;
}

.course-card-new:hover .course-card-glow {
    opacity: 0.5;
}

.course-card-new:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(227, 30, 36, 0.3);
}

/* Course Image Container */
.course-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card-new:hover .course-img {
    transform: scale(1.15);
}

/* Course Overlay */
.course-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.9), rgba(196, 30, 58, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.course-card-new:hover .course-overlay {
    opacity: 1;
}

.course-view-btn {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.course-card-new:hover .course-view-btn {
    transform: translateY(0);
}

.course-view-btn i {
    font-size: 1.5rem;
}

/* Featured Badge */
.course-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Course Card Content */
.course-card-content {
    padding: 1.75rem;
}

.course-card-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.course-card-new:hover .course-card-title {
    color: var(--primary-red);
}

.course-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Course Meta Info */
.course-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(227, 30, 36, 0.1);
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.course-meta-item i {
    color: var(--primary-red);
    font-size: 0.95rem;
}

/* Course Card Footer */
.course-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-enroll-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.course-enroll-link i {
    transition: transform 0.3s ease;
}

.course-card-new:hover .course-enroll-link {
    gap: 1rem;
}

.course-card-new:hover .course-enroll-link i {
    transform: translateX(5px);
}

/* View All Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-view-all:hover::before {
    opacity: 1;
}

.btn-view-all span,
.btn-view-all i {
    position: relative;
    z-index: 1;
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
    color: white;
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Courses Decorators */
.courses-decorator {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.courses-dec-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.06) 0%, transparent 70%);
    animation: float 18s ease-in-out infinite;
}

.courses-dec-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -200px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.05) 0%, transparent 70%);
    animation: float 22s ease-in-out infinite reverse;
}

/* ===================================
   TRAINING CENTERS SECTION
   =================================== */

/* Centers Section Background */
.centers-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Centers Grid */
.centers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Center Card */
.center-card-new {
    background: white;
    border-radius: 25px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
}

/* Staggered animations for centers */
.center-animate-1 { animation-delay: 0.1s; }
.center-animate-2 { animation-delay: 0.2s; }
.center-animate-3 { animation-delay: 0.3s; }
.center-animate-4 { animation-delay: 0.4s; }
.center-animate-5 { animation-delay: 0.5s; }
.center-animate-6 { animation-delay: 0.6s; }

/* Center Card Glow */
.center-card-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red), #FF4444);
    border-radius: 25px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.6s ease;
    z-index: -1;
}

.center-card-new:hover .center-card-glow {
    opacity: 0.4;
}

.center-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.25);
}

/* Center Icon */
.center-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.center-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
    transition: all 0.6s ease;
}

.center-card-new:hover .center-icon-wrapper::after {
    opacity: 0.3;
    transform: scale(1.2) rotate(180deg);
}

.center-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.center-card-new:hover .center-icon-bg {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    transform: scale(1.1) rotate(360deg);
}

.center-card-new:hover .center-icon-wrapper i {
    color: white;
    transform: scale(1.15) rotateY(360deg);
}

/* Center Header */
.center-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.center-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.center-card-new:hover .center-card-title {
    color: var(--primary-red);
}

.center-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Center Details */
.center-details {
    margin-bottom: 1.5rem;
}

.center-detail-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.center-detail-item:last-child {
    border-bottom: none;
}

.center-detail-item i {
    color: var(--primary-red);
    font-size: 1rem;
    min-width: 20px;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.center-detail-item a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.center-detail-item a:hover {
    color: var(--primary-red);
}

.center-card-new:hover .center-detail-item {
    transform: translateX(5px);
}

.center-card-new:hover .center-detail-item i {
    transform: scale(1.2);
}

/* Registration Number */
.center-reg-number {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid rgba(227, 30, 36, 0.1);
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.center-reg-number i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* Centers Decorators */
.centers-decorator {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.centers-dec-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.06) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.centers-dec-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.05) 0%, transparent 70%);
    animation: float 18s ease-in-out infinite reverse;
}

/* ===================================
   COMING SOON STATE
   =================================== */

.coming-soon-container {
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.coming-soon-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 3s ease-in-out infinite;
}

.coming-soon-icon i {
    font-size: 4rem;
    color: var(--primary-red);
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.coming-soon-text {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Pulse Animation */
.coming-soon-animation {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.pulse-dot {
    width: 15px;
    height: 15px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulseDot 1.4s ease-in-out infinite;
}

.pulse-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.pulse-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .courses-grid,
    .centers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .courses-section-new,
    .centers-section-new {
        padding: 60px 0;
    }
    
    .courses-grid,
    .centers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-icon {
        width: 120px;
        height: 120px;
    }
    
    .coming-soon-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .course-card-content,
    .center-card-new {
        padding: 1.5rem 1.25rem;
    }
    
    .course-card-title,
    .center-card-title {
        font-size: 1.25rem;
    }
    
    .coming-soon-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   TESTIMONIALS CAROUSEL - Auto-scrolling with animations
   Version 12.0 - Moving Testimonials
   ============================================ */

/* Testimonials Section Container */
.testimonials-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorators */
.testimonials-decorator {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.testimonials-dec-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-red), transparent);
    top: -200px;
    right: -200px;
    animation: floatSlow 20s ease-in-out infinite;
}

.testimonials-dec-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-red), transparent);
    bottom: -150px;
    left: -150px;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

/* Carousel Container */
.testimonials-carousel-container {
    margin: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

/* Testimonials Track - Horizontal Scrolling */
.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 120s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Individual Testimonial Card */
.testimonial-card-new {
    flex: 0 0 400px;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 1px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(227, 30, 36, 0.08);
}

.testimonial-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(227, 30, 36, 0.15),
        0 5px 20px rgba(227, 30, 36, 0.1);
    border-color: var(--primary-red);
}

.testimonial-card-new:hover::before {
    transform: scaleX(1);
}

/* Quote Icon */
.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.25);
    animation: pulseQuote 2s ease-in-out infinite;
}

.testimonial-quote-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

@keyframes pulseQuote {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(227, 30, 36, 0.25);
    }
    50% {
        box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
    }
}

/* Testimonial Text */
.testimonial-text-new {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.75rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-red);
}

/* Author Section */
.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card-new:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 0.25rem 0;
}

.testimonial-author-role {
    font-size: 0.925rem;
    color: var(--medium-gray);
    margin: 0 0 0.5rem 0;
}

/* Star Rating */
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 0.875rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

/* Carousel Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.testimonial-control-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-red);
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-control-btn i {
    color: var(--primary-red);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.testimonial-control-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

.testimonial-control-btn:hover i {
    color: #ffffff;
}

.testimonial-control-btn:active {
    transform: scale(0.95);
}

#pauseTestimonial {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border: none;
}

#pauseTestimonial i {
    color: #ffffff;
}

#pauseTestimonial:hover {
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonial-card-new {
        flex: 0 0 380px;
    }
}

@media (max-width: 992px) {
    .testimonials-section-new {
        padding: 80px 0;
    }
    
    .testimonial-card-new {
        flex: 0 0 350px;
        padding: 1.75rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section-new {
        padding: 60px 0;
    }
    
    .testimonial-card-new {
        flex: 0 0 320px;
        padding: 1.5rem;
    }
    
    .testimonial-text-new {
        font-size: 0.95rem;
    }
    
    .testimonial-quote-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-quote-icon i {
        font-size: 1.1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author-name {
        font-size: 1rem;
    }
    
    .testimonial-author-role {
        font-size: 0.875rem;
    }
    
    .testimonials-controls {
        margin-top: 2rem;
        gap: 0.75rem;
    }
    
    .testimonial-control-btn {
        width: 45px;
        height: 45px;
    }
    
    #pauseTestimonial {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .testimonial-card-new {
        flex: 0 0 280px;
        padding: 1.25rem;
    }
    
    .testimonials-carousel-container {
        margin: 3rem 0 2rem;
    }
    
    .testimonials-track {
        gap: 1.25rem;
    }
    
    .testimonial-text-new {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-quote-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .testimonial-quote-icon i {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-control-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-control-btn i {
        font-size: 1rem;
    }
    
    #pauseTestimonial {
        width: 50px;
        height: 50px;
    }
}

/* Animation States */
.testimonials-track.paused {
    animation-play-state: paused !important;
}

.testimonials-track.playing {
    animation-play-state: running !important;
}

/* Print Styles */
@media print {
    .testimonials-controls {
        display: none;
    }
    
    .testimonials-track {
        animation: none;
        flex-wrap: wrap;
    }
    
    .testimonial-card-new {
        page-break-inside: avoid;
        break-inside: avoid;
    }
}

/* ============================================
   CONTACT PAGE - Animated Contact Form & Info Cards
   Version 13.0 - Contact Us Enhancement
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05), transparent);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.contact-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.03), transparent);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 700px;
    line-height: 1.8;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

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

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 1px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.contact-info-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 
        0 20px 50px rgba(227, 30, 36, 0.15),
        0 5px 20px rgba(227, 30, 36, 0.1);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover::after {
    width: 300px;
    height: 300px;
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.3;
    transition: transform 0.4s ease;
}

.phone-icon::before {
    background: linear-gradient(135deg, #10B981, #059669);
}

.email-icon::before {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.web-icon::before {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.contact-info-card:hover .contact-icon-wrapper::before {
    transform: translate(-50%, -50%) scale(1.5);
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.phone-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.web-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.1) rotate(10deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    z-index: 1;
    position: relative;
    text-align: center;
    width: 100%;
}

.contact-info-text {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
    text-align: center;
    width: 100%;
    line-height: 1.6;
}

.contact-info-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    z-index: 1;
    position: relative;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    background: rgba(227, 30, 36, 0.05);
}

.contact-info-link:hover {
    color: #ffffff;
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

/* Social Media Section */
.social-media-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 30px;
}

.social-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.social-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: socialPulse 3s ease-in-out infinite;
}

@keyframes socialPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    }
}

.social-link-btn:nth-child(1) {
    animation-delay: 0s;
}

.social-link-btn:nth-child(2) {
    animation-delay: 0.3s;
}

.social-link-btn:nth-child(3) {
    animation-delay: 0.6s;
}

.social-link-btn:nth-child(4) {
    animation-delay: 0.9s;
}

.social-link-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link-btn:hover::before {
    width: 100%;
    height: 100%;
}

.social-link-btn:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #0D5FBF);
}

.twitter-btn {
    background: linear-gradient(135deg, #1DA1F2, #0C85D0);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077B5, #005885);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0 100px;
    background: #ffffff;
    position: relative;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

.form-icon-badge i {
    color: #ffffff;
    font-size: 2rem;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Animated Form Inputs */
.form-group-animated {
    position: relative;
    margin-bottom: 2rem;
}

.form-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.form-group-animated textarea ~ .form-input-icon {
    top: 1.5rem;
    transform: none;
}

.form-control-animated {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    font-size: 1rem;
    color: var(--dark-gray);
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 15px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control-animated:focus,
.form-control-animated:not(:placeholder-shown) {
    background: #ffffff;
    border-color: var(--primary-red);
}

.form-control-animated:focus ~ .form-input-icon,
.form-control-animated:not(:placeholder-shown) ~ .form-input-icon {
    color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.form-control-animated:focus ~ .form-label-animated,
.form-control-animated:not(:placeholder-shown) ~ .form-label-animated {
    top: -12px;
    left: 3rem;
    font-size: 0.875rem;
    color: var(--primary-red);
    background: #ffffff;
    padding: 0 0.5rem;
}

select.form-control-animated:valid ~ .form-label-animated {
    top: -12px;
    left: 3rem;
    font-size: 0.875rem;
    color: var(--primary-red);
    background: #ffffff;
    padding: 0 0.5rem;
}

.form-label-animated {
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

textarea.form-control-animated {
    resize: vertical;
    min-height: 150px;
    padding-top: 1.25rem;
}

textarea.form-control-animated ~ .form-label-animated {
    top: 1.5rem;
    transform: none;
}

textarea.form-control-animated:focus ~ .form-label-animated,
textarea.form-control-animated:not(:placeholder-shown) ~ .form-label-animated {
    top: -12px;
    left: 3rem;
}

.form-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 2px;
}

.form-control-animated:focus ~ .form-input-border {
    transform: scaleX(1);
}

/* Submit Button */
.btn-submit-animated {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border: none;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-submit-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit-animated:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
}

.btn-submit-animated:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-submit-animated:hover .btn-icon {
    transform: translateX(5px);
}

/* Background Decorators */
.contact-decorator {
    position: fixed;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.contact-dec-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-red), transparent);
    top: 10%;
    right: -150px;
    animation: floatSlow 20s ease-in-out infinite;
}

.contact-dec-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-red), transparent);
    bottom: 20%;
    left: -100px;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

.contact-dec-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-red), transparent);
    top: 50%;
    left: 50%;
    animation: floatSlow 30s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-card {
        padding: 2.5rem 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 0 40px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .social-media-section {
        padding: 40px 1.5rem;
    }
    
    .social-link-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-section {
        padding: 60px 0 80px;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-icon-badge {
        width: 60px;
        height: 60px;
    }
    
    .form-icon-badge i {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.75rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .contact-info-title {
        font-size: 1.25rem;
    }
    
    .social-title {
        font-size: 1.5rem;
    }
    
    .social-link-btn {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
    }
    
    .contact-form-card {
        padding: 1.5rem 1.25rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-control-animated {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 0.95rem;
    }
    
    .btn-submit-animated {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* CTA Stats Cards */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.cta-stat-item i {
    font-size: 2.5rem;
    color: #ffffff;
    opacity: 0.9;
    animation: statIconFloat 3s ease-in-out infinite;
}

@keyframes statIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.cta-stat-item:nth-child(1) i {
    animation-delay: 0s;
}

.cta-stat-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.cta-stat-item:nth-child(3) i {
    animation-delay: 1s;
}

.cta-stat-item div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-stat-item strong {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.cta-stat-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive CTA Stats */
@media (max-width: 768px) {
    .cta-stats {
        gap: 1.5rem;
    }
    
    .cta-stat-item {
        padding: 1.5rem 2rem;
        min-width: 180px;
    }
    
    .cta-stat-item i {
        font-size: 2rem;
    }
    
    .cta-stat-item strong {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .cta-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stat-item {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   Why Choose Section - Redesign v2.0
   ================================== */

.why-choose-redesign {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(227, 30, 36, 0.03), transparent 50%);
    pointer-events: none;
}

/* Left Content Styles */
.why-choose-content-new {
    padding: 2rem 0;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-badge-inline {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 50px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
}

.why-choose-heading {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.gradient-text-red {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text-red::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    animation: lineExpand 1.5s ease-out;
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.why-choose-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

/* Feature Items Inline */
.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-red), var(--secondary-red));
    transition: height 0.4s ease;
}

.feature-item-inline:hover {
    transform: translateX(10px);
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.08);
}

.feature-item-inline:hover::before {
    height: 100%;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
}

.feature-item-inline:hover .feature-icon-circle {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Trust Badge */
.trust-badge-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.95), rgba(139, 0, 0, 0.95));
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badge-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
    animation: rotateBadge 10s linear infinite;
}

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

.trust-badge-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.trust-badge-text {
    position: relative;
    z-index: 2;
}

.trust-badge-text h4 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.trust-badge-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

/* Right Side: Feature Cards Grid */
.feature-cards-new-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card-hover {
    position: relative;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.feature-card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.03), rgba(227, 30, 36, 0.01));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-hover:hover::before {
    opacity: 1;
}

.feature-card-hover:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.1);
}

/* Card Glow Effect */
.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-hover:hover .card-glow-effect {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Card Number */
.feature-card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(227, 30, 36, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-card-hover:hover .feature-card-number {
    color: rgba(227, 30, 36, 0.15);
    transform: scale(1.2) rotate(5deg);
}

/* Feature Icon Box */
.feature-icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
    border-radius: 16px;
    color: var(--primary-red);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.feature-card-hover:hover .feature-icon-box {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

/* Card Title & Description */
.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.feature-card-hover:hover .feature-card-title {
    color: var(--primary-red);
}

.feature-card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Hover Shine Effect */
.card-hover-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.feature-card-hover:hover .card-hover-shine {
    left: 100%;
}

/* Staggered Animation for Cards */
.card-hover-1 {
    animation: cardFadeIn 0.6s ease-out 0.1s both;
}

.card-hover-2 {
    animation: cardFadeIn 0.6s ease-out 0.2s both;
}

.card-hover-3 {
    animation: cardFadeIn 0.6s ease-out 0.3s both;
}

.card-hover-4 {
    animation: cardFadeIn 0.6s ease-out 0.4s both;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .why-choose-heading {
        font-size: 2.25rem;
    }
    
    .feature-cards-new-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-choose-content-new {
        text-align: center;
    }
    
    .section-badge-inline {
        margin: 0 auto;
    }
    
    .feature-item-inline {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-badge-large {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .why-choose-heading {
        font-size: 1.85rem;
    }
    
    .feature-card-hover {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card-number {
        font-size: 2.5rem;
    }
}


/* ===================================
   Top Bar Styles
   ================================== */

.top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 2px solid var(--primary-red);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-brand {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.top-bar-link:hover {
    color: var(--primary-red);
    text-decoration: none;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar-contact {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.top-bar-contact:hover {
    color: var(--primary-red);
    text-decoration: none;
}

.top-bar-contact i {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .top-bar {
        padding: 0.6rem 0;
        font-size: 0.8rem;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .top-bar-left {
        margin-bottom: 0.75rem;
    }
    
    .top-bar-right {
        margin-bottom: 0;
    }
    
    .top-bar-contact span {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .top-bar-contact span {
        display: none;
    }
    
    .top-bar-contact {
        gap: 0.25rem;
    }
    
    .top-bar-contact i {
        font-size: 1rem;
    }
}


/* ===================================
   FOOTER GOOGLE MAPS SECTION
   =================================== */

.footer-map-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(227, 30, 36, 0.2);
}

.footer-map-section h5 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.3);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    display: block;
}

@media (max-width: 768px) {
    .footer-map-wrapper iframe {
        height: 300px;
    }
    
    .footer-map-section h5 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .footer-map-wrapper iframe {
        height: 250px;
    }
    
    .footer-map-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

/* ===================================
   PREVENT SCROLLBARS IN SPECIFIC SECTIONS
   =================================== */

/* India's #1 IT Training Institute section */
.section-badge,
.hero-section,
.carousel-item,
#heroCarousel {
    overflow: hidden !important;
    max-width: 100%;
}

/* Our Services section */
.services-section,
.service-card,
.service-item {
    overflow: hidden !important;
    max-width: 100%;
}

/* About us section with images */
.about-section,
.about-image,
.about-img-wrapper {
    overflow: hidden !important;
    max-width: 100%;
}

.about-section img,
.about-image img {
    max-width: 100%;
    display: block;
}

/* Get In Touch section */
.contact-hero-section,
.contact-info-section,
.contact-section {
    overflow: hidden !important;
    max-width: 100%;
}

/* Prevent any card or container from showing scrollbar */
.card,
.card-body,
.col,
[class*="col-"] {
    overflow: hidden;
}

/* Fix for any section that might overflow */
section > .container,
section > .container-fluid {
    overflow: hidden;
}
