/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Browser Compatibility */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* Fallback if logo doesn't load */
.nav-logo:has(.logo-img[src=""]) .logo-img,
.nav-logo:has(.logo-img:not([src])) .logo-img {
    display: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h2 {
    color: #2563eb;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #2563eb;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f1f5f9;
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with AI Background */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2d1b4e 50%, #1a1f3a 75%, #0a0e27 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-ai-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Hero Background Image with AI Theme */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-ai-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
}

/* Overlay for better text readability */
.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(26, 31, 58, 0.5) 50%, rgba(45, 27, 78, 0.6) 100%);
    z-index: 1;
}

/* Fallback if image doesn't exist - AI-themed gradient */
.hero-bg-image:not([style*="hero-ai-background.png"]) {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2d1b4e 50%, #1a1f3a 75%, #0a0e27 100%);
    opacity: 1;
}

.hero-bg-image:not([style*="hero-ai-background.png"])::after {
    display: none;
}

/* AI Particles Animation - Enhanced AI Theme */
.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(16, 185, 129, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 30% 90%, rgba(236, 72, 153, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 70% 40%, rgba(251, 191, 36, 0.1) 0%, transparent 30%);
    animation: particleMove 25s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

/* AI Grid Pattern - Neural Network Style */
.ai-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 120px 120px, 120px 120px;
    animation: gridMove 40s linear infinite;
    opacity: 0.4;
    z-index: 2;
    pointer-events: none;
}

/* AI Waves */
.ai-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.15));
    animation: waveMove 15s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

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

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

@keyframes waveMove {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-25px) scaleY(1.1); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #60a5fa;
    animation: sparkle 2s ease-in-out infinite;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    color: #94a3b8;
}

/* Hero stats removed - fresh start */

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    vertical-align: middle;
    user-select: none;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.download-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

.download-btn:disabled:hover {
    background: #94a3b8;
    transform: none;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 4rem;
    opacity: 0.8;
}

.hero-graphic i {
    animation: float 3s ease-in-out infinite;
}

.hero-graphic i:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-graphic i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.achievement-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Achievement badge removed */

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

.features-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
}

.feature-card ul li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.feature-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.feature-card code {
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #3b82f6;
    font-family: 'Courier New', monospace;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: white;
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6, #10b981);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-phase {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-phase {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.phase-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.phase-q1 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.phase-q2 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.phase-q3 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.phase-q4 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.roadmap-phase h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.roadmap-content {
    flex: 1;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content ul li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.roadmap-content ul li i {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* Vision & Mission Section - Horizontal Full Width */
.vision-mission-horizontal {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.vm-section {
    width: 100%;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.vm-vision {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e40af 100%);
    color: white;
}

.vm-mission {
    background: linear-gradient(135deg, #1e293b 0%, #312e81 50%, #4c1d95 100%);
    color: white;
}

.vm-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.vm-icon-large {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.vm-text-content {
    flex: 1;
}

.vm-text-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-text-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

/* Responsive Design for Vision & Mission */
@media (max-width: 1024px) {
    .vm-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .vm-icon-large {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .vm-text-content h2 {
        font-size: 2rem;
    }

    .vm-text-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .vm-section {
        padding: 3rem 0;
    }

    .vm-content-wrapper {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .vm-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .vm-text-content h2 {
        font-size: 1.75rem;
    }

    .vm-text-content p {
        font-size: 1rem;
    }
}

.vm-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.vm-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.vm-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 0;
    background: transparent;
    margin: 0;
}

.about-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* About stats removed - fresh start */

.about-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: #2563eb;
    opacity: 0.1;
}

/* Enquiry Section */
.enquiry {
    padding: 80px 0;
    background: white;
}

.enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.enquiry-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enquiry-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.enquiry-item i {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.enquiry-item h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.enquiry-item p {
    color: #64748b;
}

.enquiry-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-label,
.consent-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.checkbox-label input[type="checkbox"],
.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.consent-label a {
    color: #2563eb;
    text-decoration: none;
}

.consent-label a:hover {
    text-decoration: underline;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error::before {
    content: "⚠";
    font-size: 0.75rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.notification-success {
    background: #10b981;
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: #3b82f6;
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Consent Banner Styles - Premium Floating Card on Right */
.consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    width: calc(100% - 48px);
    max-width: 380px;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 1.75rem;
    z-index: 10000;
    border-radius: 16px;
    border: 1px solid rgba(79, 70, 229, 0.35); /* Indigo accent highlight */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(79, 70, 229, 0.15);
}

.consent-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
}

.consent-content h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consent-content h4::before {
    content: "\f563"; /* FontAwesome Cookie icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f59e0b; /* Cookie amber color */
}

.consent-content p {
    margin: 0;
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.5;
}

.consent-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
}

.consent-buttons .btn {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
    border-radius: 10px;
    font-weight: 700;
    justify-content: center;
    box-sizing: border-box;
}

.consent-buttons .btn-primary {
    background: var(--primary, #4f46e5) !important;
    border: none !important;
    color: white !important;
}

.consent-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.consent-buttons .btn-outline {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.consent-buttons .btn-outline:hover {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Consent Banner Mobile Responsive */
@media (max-width: 768px) {
    .consent-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
        padding: 1.25rem;
    }
    
    .consent-content {
        gap: 1rem;
    }
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e293b;
}

/* Privacy Policy Section */
.privacy-policy {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

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

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.policy-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem 0;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Coming Soon Section */
.coming-soon {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.coming-soon h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.features-preview {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.features-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fbbf24;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.notify-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.notify-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.notify-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.notify-form button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-content > .contact-info {
    grid-column: 1;
}

.contact-content > .contact-form-wrapper {
    grid-column: 2;
}

.contact-content > .contact-map {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content > .contact-info,
    .contact-content > .contact-form-wrapper,
    .contact-content > .contact-map {
        grid-column: 1;
    }
    
    .contact-content > .contact-map {
        margin-top: 0;
    }
}

.contact-map {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
}

.map-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    text-align: center;
}

.map-info h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-map {
    margin-top: 1rem;
}

.footer-map iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
}

.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.contact-form-container h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.enquiry-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.enquiry-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.enquiry-form label i {
    color: var(--primary-color);
    width: 20px;
}

.enquiry-form input,
.enquiry-form textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.otp-section {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.otp-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.otp-input {
    flex: 1;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: #2563eb;
}

.form-text {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 150px;
}

#enquiryMessage {
    margin-top: 1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

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

/* GYM Management System Card */
.gym-showcase {
    padding: 80px 0;
    background: white;
}

.gym-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.gym-card-left {
    position: relative;
}

.gym-image-section {
    display: grid;
    grid-template-rows: 2fr 1fr;
    height: 100%;
    gap: 0;
}

.gym-main-image {
    position: relative;
    overflow: hidden;
}

.gym-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.discount-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.discount-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.discount-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.gym-secondary-image {
    position: relative;
    overflow: hidden;
}

.gym-photo-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
}

.gym-card-right {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gym-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gym-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.gym-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.gym-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.gym-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.gym-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #475569;
}

.feature-item i {
    width: 20px;
    color: #8b5cf6;
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 500;
}

.gym-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-gradient {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-outline {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.gym-pricing {
    margin-top: auto;
}

.pricing-box {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.pricing-label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

/* OTP Verification Modal */
.otp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.otp-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.otp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.otp-modal-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
}

.otp-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.otp-modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.otp-modal-body {
    padding: 2rem;
}

.otp-info {
    text-align: center;
    margin-bottom: 2rem;
}

.otp-info p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.otp-info strong {
    color: #1e293b;
    font-size: 1.1rem;
}

.otp-input-group {
    margin-bottom: 1.5rem;
}

.otp-input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    transition: border-color 0.3s ease;
}

.otp-input-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.otp-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.otp-actions .btn {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.otp-timer {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.otp-timer p {
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

#otpTimer {
    color: #2563eb;
    font-weight: 600;
}

.otp-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.otp-message-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.otp-message-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Custom Redesigned Footer Layout */
.footer-row-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-row-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    margin-bottom: 1.5rem;
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.footer-contact-list a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-contact-list a:hover {
    color: #3b82f6;
}

@media (max-width: 992px) {
    .footer-row-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-row-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-contact-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-row-1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-links span {
    color: #64748b;
}

.security-seal {
    margin: 0;
    padding: 0;
}

.security-seal #siteseal {
    display: inline-block;
}

.security-seal img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

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

    .nav-logo {
        gap: 0.5rem;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text h2 {
        font-size: 1.1rem;
    }

    .logo-text span {
        font-size: 0.7rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* About section redesigned */

    .enquiry-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About stats removed */

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gym-card {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .gym-card-right {
        padding: 2rem;
    }

    .gym-header h2 {
        font-size: 1.5rem;
    }

    .gym-actions {
        flex-direction: column;
    }

    .btn-gradient,
    .btn-outline {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* About text styles removed */

    .gym-header h2 {
        font-size: 1.3rem;
    }

    .gym-card-right {
        padding: 1.5rem;
    }

    .pricing-amount {
        font-size: 1.5rem;
    }

    .gym-badges {
        justify-content: center;
    }

    .nav-logo {
        gap: 0.75rem;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text h2 {
        font-size: 1.2rem;
    }

    .logo-text span {
        font-size: 0.75rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Hero stats removed */

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        flex-direction: row !important;
        padding-left: 3rem;
    }

    .roadmap-phase {
        flex: 1;
    }

    .roadmap-content {
        display: none;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .map-overlay {
        position: relative;
        padding: 0;
        margin-top: 1rem;
    }

    .map-info {
        width: 100%;
    }

    .footer-map {
        margin-top: 1rem;
    }

    .footer-map iframe {
        height: 150px;
    }
}

/* Video Demonstrations Section */
.videos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.video-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.video-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #667eea;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.video-loading {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

.video-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

    .video-info {
        padding: 1rem;
    }
}

/* ==========================================
   E360 & GVKart Modern UI Additions
   ========================================== */

/* Modern root variable defaults (override / extend) */
:root {
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(226, 232, 240, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
}

/* Dynamic Hero Carousel */
.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #0f172a;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(30, 41, 59, 0.4) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.hero-slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slide-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-slide-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Glassmorphism Offers & Ads */
.offers-section {
    padding: 80px 0;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

.offers-section .section-header h2 {
    color: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.offer-badge {
    background: #3b82f6;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    align-self: flex-start;
    margin-bottom: 1.5rem;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.offer-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Pricing Widget & Calculator */
.pricing-section {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 12px 24px;
    border-radius: 30px;
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.calculator-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-label {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.slider-value {
    font-weight: 800;
    color: #2563eb;
    font-size: 1.25rem;
    background: #eff6ff;
    padding: 4px 12px;
    border-radius: 8px;
}

.custom-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #cbd5e1;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
    transition: transform 0.1s;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-summary {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.summary-title {
    font-weight: 700;
    color: #475569;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price-display {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin: 1.5rem 0;
    line-height: 1;
}

.price-display span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
}

.plan-features-list {
    text-align: left;
    margin: 1.5rem 0;
    list-style: none;
    font-size: 0.95rem;
    color: #475569;
}

.plan-features-list li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features-list li i {
    color: #10b981;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #0f172a;
}

.modal-tabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.modal-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.modal-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.form-group-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .hero-slide-content h2 {
        font-size: 2.25rem;
    }
    
    .hero-slide-content p {
        font-size: 1.05rem;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .pricing-tabs {
        margin-bottom: 2rem;
        gap: 0.5rem;
    }
    
    .pricing-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .calculator-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .calc-sliders {
        gap: 1.75rem;
    }
    
    .calc-summary {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    #priceBreakdown {
        padding: 1rem 0.85rem !important;
        border-radius: 12px !important;
        margin-bottom: 1.25rem !important;
    }
    
    #priceBreakdown > div {
        font-size: 0.88rem !important;
    }
    
    #priceBreakdown > div:last-child {
        font-size: 1.15rem !important;
    }
    
    .coupon-group {
        margin-bottom: 1.25rem !important;
    }
    
    .coupon-group label {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .coupon-group input {
        padding: 0.6rem 0.85rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }
    
    .coupon-group button {
        padding: 0.6rem 1rem !important;
        border-radius: 10px !important;
        font-size: 0.9rem !important;
    }
    
    #btnCheckout, #btnContactSales {
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
        margin-top: 0.75rem !important;
    }
}

/* ==========================================
   Dark & Light Theme Overrides & Legibility Fixes
   ========================================== */

/* Theme Variables (Light mode by default) */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: #e2e8f0;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-text: #1e293b;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-text: #475569;
    --title-color: #0f172a;
    --btn-sec-bg: #f1f5f9;
    --btn-sec-text: #0f172a;
    --btn-sec-border: #cbd5e1;
}

/* Dark mode variables */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --border-color: #334155;
    --nav-bg: rgba(15, 23, 42, 0.95);
    --nav-text: #cbd5e1;
    --card-bg: rgba(30, 41, 59, 0.8);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-text: #cbd5e1;
    --title-color: #ffffff;
    --btn-sec-bg: #1e293b;
    --btn-sec-text: #f8fafc;
    --btn-sec-border: #334155;
}

/* Core theme application */
body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navbar Enhancements for High Contrast & Legibility */
.navbar {
    background: var(--nav-bg) !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.nav-link {
    color: var(--nav-text) !important;
    font-weight: 700 !important; /* Make font weight bolder for clarity */
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2563eb !important;
}

.logo-text h2 {
    color: #2563eb !important;
}

.logo-text span {
    color: var(--text-secondary) !important;
}

/* Mobile dropdown background fix */
@media (max-width: 768px) {
    .nav-menu {
        background-color: var(--nav-bg) !important;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
}

/* Sections color mapping */
.services, .pricing-section, .contact {
    background-color: var(--bg-secondary) !important;
    color: var(--text-secondary);
    transition: background-color 0.3s ease;
    scroll-margin-top: 90px;
}

/* White background section fixes */
.services[style*="background: white"],
.services[style*="background: white;"],
#e360.services,
#aithra.services {
    background-color: var(--bg-primary) !important;
}

.section-header h2, 
.service-card h3, 
.pricing-section h2, 
.calc-summary h3,
.contact h2,
.modal-content h3,
.form-group label {
    color: var(--title-color) !important;
}

.section-header p,
.service-card p,
.calc-summary p,
.form-text {
    color: var(--text-secondary) !important;
}

/* Cards & Widgets */
.service-card, .calculator-wrapper, .contact-form-container, .offer-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    color: var(--text-secondary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.offer-card h3 {
    color: var(--title-color) !important;
}

.slider-label {
    color: var(--title-color) !important;
}

.calc-summary {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
}

.price-display {
    color: var(--title-color) !important;
}

/* Form Controls */
.form-group input, 
.form-group textarea, 
.form-group select {
    background-color: var(--bg-primary) !important;
    color: var(--title-color) !important;
    border: 2px solid var(--border-color) !important;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    border-color: #2563eb !important;
}

/* Reduced Registration Modal size and padding */
.modal-content {
    background-color: var(--bg-primary) !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--border-color) !important;
    max-width: 420px !important; /* Reduced width */
    padding: 1.75rem !important; /* Reduced padding */
    border-radius: 20px !important;
}

.modal-tab {
    color: var(--text-secondary) !important;
}

.modal-tab.active {
    color: #2563eb !important;
    border-bottom-color: #2563eb !important;
}

.modal-close {
    color: var(--text-secondary) !important;
}

.modal-close:hover {
    color: var(--title-color) !important;
}

/* Buttons theme styling */
.btn-secondary {
    background-color: var(--btn-sec-bg) !important;
    color: var(--btn-sec-text) !important;
    border: 1px solid var(--btn-sec-border) !important;
}
.btn-secondary:hover {
    opacity: 0.9;
}