/* GLOBAL ANIMATION DISABLE - MAKE SITE COMPLETELY STATIC */
*,
*::before,
*::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    animation-fill-mode: none !important;
    animation-play-state: paused !important;
    animation-name: none !important;
    animation: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    transition: none !important;
    transform: none !important;
    scroll-behavior: auto !important;
}

/* Disable any CSS animations/keyframes */
@keyframes fadeIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes fadeOut {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes fadeInUp {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes slideInRight {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes pulse {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes bounce {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes shake {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes zoomIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes zoomOut {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes slideIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}
@keyframes slideOut {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

/* Force disable any animation classes */
.animate__animated,
.animate__fadeIn,
.animate__fadeOut,
.animate__fadeInUp,
.animate__fadeInDown,
.animate__fadeInLeft,
.animate__fadeInRight,
.animate__slideInUp,
.animate__slideInDown,
.animate__slideInLeft,
.animate__slideInRight,
.animate__zoomIn,
.animate__zoomOut,
.animate__pulse,
.animate__bounce,
.animate-fade-in-up,
.animate-slide-in-right,
.sal-animate,
.fade-in,
.fade-out {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* COMPLETELY DISABLE ALL HOVER EFFECTS AND TRANSFORMS */
*:hover {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Disable specific hover effects */
.service-card:hover,
.testimonial-card:hover,
.gallery-section img:hover,
.team-member:hover,
.blog-card:hover,
.contact-form .btn-primary:hover,
.footer-links a:hover,
.algorithm-card:hover,
.innovation-card:hover,
.spec-card:hover,
.support-card:hover,
.feature-card:hover,
.hero-buttons .btn-primary:hover {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    box-shadow: none !important;
}

:root {
    /* Primary Color Palette - 5 colors with light/dark shades */
    --primary-color: #5257ff;
    --primary-light: #a09bfd;
    --primary-dark: #4f5ad1;
    
    --secondary-color: #12c4d9;
    --secondary-light: #6fd9eb;
    --secondary-dark: #0c939b;
    
    --accent-color: #694fe9;
    --accent-light: #c5a5ff;
    --accent-dark: #a142fc;
    
    --success-color: #0ccf93;
    --success-light: #4fe9b8;
    --success-dark: #008151;
    
    --warning-color: #f88515;
    --warning-light: #e38918;
    --warning-dark: #db8700;
    
    /* Neutral Colors */
    --text-primary: #141921;
    --text-secondary: #656c7f;
    --text-light: #858b96;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #090b16;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
}

/* Header Styles */
#header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    /* REMOVED TRANSITION TO PREVENT HEADER ANIMATIONS */
    /* transition: all 0.3s ease; */
    /* Ensure header is always visible */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
    /* Force disable any animations */
    animation: none !important;
    transition: none !important;
    /* Critical: Ensure header appears above all other content */
    z-index: 1050 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* AGGRESSIVE PROTECTION: Prevent any fade animations on header */
#header.fade-in,
#header.fade-out,
header.fade-in,
header.fade-out,
#header.animate-fade-in-up,
#header.animate-slide-in-right,
#header.animate__animated,
#header.sal-animate {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* Protect navbar elements from animations */
.navbar,
.navbar-brand,
.navbar-nav,
.navbar-toggler,
.navbar-collapse {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    display: block !important;
}

/* Force navbar to be visible */
.navbar {
    z-index: 1051 !important;
}

.navbar-brand {
    display: block !important;
}

.navbar-nav {
    display: flex !important;
}

.navbar-toggler {
    display: block !important;
}

/* Mobile responsive fixes for header */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important;
        border: none;
        padding: 0.25rem 0.5rem;
        background: transparent;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin-top: 0.5rem !important;
        border-radius: 0.5rem !important;
        padding: 1rem !important;
        box-shadow: var(--shadow-md) !important;
        /* Remove display overrides to let Bootstrap handle collapse naturally */
    }
    
    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: var(--font-size-base) !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* Desktop responsive fixes */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse {
        display: flex !important;
        background: transparent !important;
        backdrop-filter: none !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        border-bottom: none !important;
    }
}

/* SELECTIVE PROTECTION: Prevent fade animations but allow Bootstrap collapse transitions */
.navbar.fade-in,
.navbar.fade-out,
.navbar-brand.fade-in,
.navbar-brand.fade-out,
.navbar-nav.fade-in,
.navbar-nav.fade-out,
.navbar-toggler.fade-in,
.navbar-toggler.fade-out,
.navbar.animate__animated,
.navbar-brand.animate__animated,
.navbar-nav.animate__animated,
.navbar-toggler.animate__animated {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Allow Bootstrap collapse transitions but prevent other animations on navbar-collapse */
.navbar-collapse.fade-in,
.navbar-collapse.fade-out,
.navbar-collapse.animate__animated {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    /* Do NOT disable transitions - Bootstrap needs them for collapse */
}

/* Navbar brand styles moved to responsive section below */

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    /* REMOVED TRANSITION TO PREVENT HEADER ANIMATIONS */
    /* transition: color 0.3s ease; */
    transition: none !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    /* Ensure space for fixed header */
    padding-top: 80px !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-3xl);
}

h2 {
    font-size: var(--font-size-2xl);
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    font-size: var(--font-size-lg);
}

h5 {
    font-size: var(--font-size-base);
}

h6 {
    font-size: var(--font-size-sm);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light), var(--accent-light));
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 175px;
}

#hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
}

#hero-description {
    font-size: var(--font-size-lg);
    color: white;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-buttons .btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-dark));
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

#about-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

#about-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.about-features {
    display: grid;
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.feature-item i {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-top: var(--spacing-xs);
}

.feature-item h5 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.feature-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--secondary-light));
}

.services-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    display: block;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-card .price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
}

.testimonials-section h2 {
    color: white;
    margin-bottom: var(--spacing-2xl);
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.gallery-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
}

.gallery-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--success-light));
}

.faq-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
}

.accordion-item {
    border: none;
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: white;
    border: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 120, 250, 0.25);
}

.accordion-body {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: var(--spacing-lg);
}

/* Team Section */
.team-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--warning-light), var(--success-light));
}

.team-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
}

.team-member {
    text-align: center;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: var(--spacing-lg);
}

.team-member h5 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.team-member p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Blog Section */
.blog-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--warning-light));
}

.blog-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-content h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.blog-date {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--primary-light));
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
}

.contact-form {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    border: 2px solid var(--bg-secondary);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(122, 134, 247, 0.25);
}

.contact-form .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-dark));
    color: white;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-light);
}

#site-copyright {
    opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--bg-secondary);
    padding: var(--spacing-md) 0;
    padding-top: calc(var(--spacing-md) + 80px); /* Account for fixed navbar */
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Additional Pages Styles */
.ai-technology-section,
.enterprise-overview-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--secondary-light));
}

.ai-features,
.enterprise-benefits {
    display: grid;
    gap: var(--spacing-lg);
}

.ai-feature,
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.ai-feature i,
.benefit-item i {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-top: var(--spacing-xs);
}

.algorithms-section,
.deployment-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.algorithm-card,
.deployment-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.algorithm-card:hover,
.deployment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.algorithm-card i,
.deployment-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.performance-section,
.security-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
}

.metrics {
    display: grid;
    gap: var(--spacing-lg);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--accent-color);
}

.metric-label {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.security-features {
    display: grid;
    gap: var(--spacing-md);
}

.security-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.security-item i {
    color: var(--success-color);
    font-size: var(--font-size-lg);
}

.innovation-section,
.integrations-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.innovation-card,
.integration-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.innovation-card:hover,
.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.innovation-card img,
.integration-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
}

.specifications-section,
.support-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--warning-light), var(--success-light));
}

.spec-card,
.support-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.spec-card:hover,
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.spec-card i {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.support-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.support-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.support-card li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
}

.support-card li:before {
    content: "â";
    color: var(--success-color);
    margin-right: var(--spacing-xs);
}

/* Hide skip link button */
.skip-link {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Ensure navbar brand is responsive */
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: var(--font-size-xl);
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: var(--font-size-lg) !important;
    }
}

/* Fix navbar toggler icon */
.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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Price Plan Section */
.priceplan-section {
    background: var(--bg-secondary);
}

.priceplan-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.priceplan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.priceplan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.priceplan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-display {
    margin: var(--spacing-lg) 0;
}

.price-large {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.feature-list li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--bg-secondary);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "✓";
    color: var(--success-color);
    margin-right: var(--spacing-xs);
    font-weight: bold;
}

/* Case Study Section */
.casestudy-section {
    background: var(--bg-secondary);
}

.casestudy-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.casestudy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.casestudy-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--secondary-light));
}

.process-step {
    position: relative;
    padding: var(--spacing-lg);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
}

.process-step i {
    font-size: var(--font-size-2xl);
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.process-step h5 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Timeline Section */
.timeline-section {
    background: var(--bg-secondary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item > div:not(.timeline-year) {
    flex: 1;
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 var(--spacing-2xl);
}

/* Career Section */
.career-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--warning-light));
}

.career-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.career-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Core Info Section */
.coreinfo-section {
    background: var(--bg-secondary);
}

.coreinfo-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.coreinfo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.coreinfo-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* About Page Sections */
.about-story-section {
    background: var(--bg-primary);
}

.story-highlights,
.approach-points {
    margin-top: var(--spacing-xl);
}

.highlight-item,
.approach-point {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.highlight-item i,
.approach-point i {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-top: var(--spacing-xs);
    flex-shrink: 0;
}

.philosophy-section {
    background: var(--bg-secondary);
}

.philosophy-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.philosophy-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.approach-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-light));
}

.facilities-section {
    background: var(--bg-secondary);
}

.facility-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.facility-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.why-choose-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--success-light));
}

.advantage-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Services Page Sections */
.service-overview-section {
    background: var(--bg-primary);
}

.service-benefits {
    margin-top: var(--spacing-xl);
}

.class-types-section {
    background: var(--bg-secondary);
}

.class-type-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.class-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.class-type-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-options-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-light));
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.schedule-section {
    background: var(--bg-secondary);
}

.schedule-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.schedule-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.booking-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--success-light));
}

.booking-step {
    position: relative;
    padding: var(--spacing-lg);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.border-radius-custom {
    border-radius: var(--border-radius-lg);
}

/* Space-specific styles */
.features-section,
.solutions-section,
.technology-section {
    padding: var(--spacing-2xl) 0;
}

.features-section {
    background: var(--bg-secondary);
}

.solutions-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-light));
}

.technology-section {
    background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
}

.feature-card,
.solution-item {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover,
.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.solution-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
}

.tech-features {
    display: grid;
    gap: var(--spacing-md);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.tech-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.tech-item span {
    color: var(--text-secondary);
}

/* Animations */
/* DISABLED ANIMATIONS - STATIC SITE */
@keyframes fadeInUp {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes slideInRight {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

.animate-fade-in-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.animate-slide-in-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
} 