:root {
    --primary-color: #121212;
    --secondary-color: #1a1a1a;
    --accent-color: #e60000;
    --accent-color-dark: #b30000;
    --accent-color-light: #ff1a1a;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --gradient-primary: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #e60000 0%, #b30000 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #121212 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: #00cc66;
    --warning-color: #ffcc00;
    --error-color: #e60000;
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

body {
    font-family: 'Rajdhani', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Dot grid pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at center, rgba(230, 0, 0, 0.12) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px, 15px 15px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

/* Subtle scanline effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.04) 2px,
            rgba(255, 255, 255, 0.04) 4px);
    pointer-events: none;
    z-index: 0;
    animation: scanline 20s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateY(0);
    }

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

/* Ensure content stays above background pattern */
main,
footer,
section {
    position: relative;
    z-index: 1;
}

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

/* Navbar Styles */
.navbar {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--accent-color);
}

.nav-links a:hover {
    color: var(--text-color);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-cta {
    background: transparent;
    color: var(--text-color);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid var(--accent-color);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    background: var(--accent-color);
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.4);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: transparent;
    border: none;
    width: 45px;
    height: 45px;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 28px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 8px;
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 21px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 30px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 999;
    }

    .nav-container.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 51, 51, 0.1);
        transform: translateY(-5px);
    }

    .nav-cta {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-logo {
        height: 50px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    opacity: 0.5;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #000000);
    z-index: 1;
    pointer-events: none;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}



.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-color-light) 0%, var(--accent-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 51, 51, 0.5), 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Scrolling Text Loop */
.text-loop-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0;
    opacity: 0.6;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Divider Style 2 - Double Line */
.section-divider-2 {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0;
    opacity: 0.8;
    position: relative;
}

.section-divider-2::before,
.section-divider-2::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-color);
}

.section-divider-2::before {
    left: 20%;
}

.section-divider-2::after {
    right: 20%;
}

/* Divider Style 3 - Dotted Line */
.section-divider-3 {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right,
            var(--accent-color) 0,
            var(--accent-color) 4px,
            transparent 4px,
            transparent 12px);
    margin: 0;
    opacity: 0.7;
    position: relative;
}

.section-divider-3::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-size: 12px;
    text-shadow: 0 0 8px var(--accent-color);
}

/* Divider Style 4 - Zigzag */
.section-divider-4 {
    width: 100%;
    height: 8px;
    background: linear-gradient(45deg,
            transparent 33.333%,
            var(--accent-color) 33.333%,
            var(--accent-color) 66.667%,
            transparent 66.667%);
    background-size: 20px 8px;
    margin: 0;
    opacity: 0.6;
    position: relative;
}

/* Divider Style 5 - Triple Dots */
.section-divider-5 {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0;
    opacity: 0.6;
    position: relative;
}

.section-divider-5::before,
.section-divider-5::after,
.section-divider-5 .dot-center {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-color);
}

.section-divider-5::before {
    left: 30%;
}

.section-divider-5::after {
    right: 30%;
}

.section-divider-5 .dot-center {
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-loop {
    display: inline-block;
    animation: loop 20s linear infinite;
    position: relative;
    left: 0;
    margin: 0;
    padding: 0;
    width: 300%;
}

.text-item {
    display: inline-block;
    font-size: 10rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 8px;
    padding: 0 24rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: none;
    margin: 0;
    position: relative;
    width: 100%;
    text-align: center;
    mix-blend-mode: overlay;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-66.67%);
    }
}

@media (max-width: 768px) {
    .text-item {
        font-size: 6rem;
        letter-spacing: 6px;
        padding: 0 12rem;
    }
}

@media (max-width: 480px) {
    .text-item {
        font-size: 4rem;
        letter-spacing: 4px;
        padding: 0 8rem;
    }
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #000000;
}

.services h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Services Grid */
.services-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: var(--secondary-color);
    border-radius: 4px;
    overflow: hidden;
    border: none;
    height: 100%;
}

.service-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-header:hover::before {
    opacity: 1;
}

.service-header:hover {
    background: var(--accent-color);
}

.service-header:hover h3 {
    color: white;
}

.service-header:hover i:first-child {
    color: #000000;
}

.service-header i:first-child {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-header h3 {
    flex: 1;
    color: var(--text-color);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.toggle-icon {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-item.active .toggle-icon {
    transform: rotate(180deg);
    color: white;
}

/* Ensure active state is isolated to only the clicked item */
.service-item.active {
    z-index: 10;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--secondary-color);
}

.service-item.active .service-content {
    max-height: 500px;
}

/* Ensure only the active service item shows content */
.service-item:not(.active) .service-content {
    max-height: 0;
    overflow: hidden;
}

.service-content ul {
    list-style: none;
    padding: 0 2rem 1.5rem;
    margin: 0;
}

.service-content li {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

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

.service-content li::before {
    content: '►';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .services-accordion {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .service-item {
        margin-bottom: 1rem;
    }
}

/* Markets Section */
.markets {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #000000 0%, #0A0A0A 60%, rgba(139, 0, 0, 0.5) 90%, rgba(139, 0, 0, 0.6) 100%);
}

.markets h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.market-card {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1f1f1f 100%);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Textured background effect */
.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 51, 51, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 51, 51, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px);
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Subtle grain texture */
.market-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 51, 51, 0.2), 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 51, 51, 0.2);
}

.market-card:hover::before {
    opacity: 0.8;
}

.market-card i {
    position: relative;
    z-index: 1;
    font-size: 2.25rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(255, 51, 51, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(255, 51, 51, 0.15);
}

.market-card:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2) 0%, rgba(255, 51, 51, 0.1) 100%);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.3);
}

.market-card h3 {
    position: relative;
    z-index: 1;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.market-card:hover h3 {
    color: var(--accent-color);
}

.market-card p {
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.market-card:hover p {
    color: var(--text-color);
}

@media (max-width: 768px) {
    .markets-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 1rem;
        gap: 1rem;
        padding: 0 1rem;
        margin: 0 -1rem;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .market-card {
        flex: 0 0 260px;
        scroll-snap-align: center;
        margin-right: 1rem;
        padding: 1.25rem 1rem;
    }

    .market-card i {
        font-size: 2rem;
        padding: 0.6rem;
        margin-bottom: 0.75rem;
    }

    .market-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .market-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .markets .scroll-indicator {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }

    .markets .scroll-dots {
        display: flex;
        gap: 0.5rem;
    }

    .markets .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--border-color);
        transition: background-color 0.3s ease;
    }

    .markets .dot.active {
        background-color: var(--accent-color);
    }
}

.service-card {
    background: var(--gradient-dark);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 1rem;
        gap: 1rem;
        padding: 1rem 0;
        margin: 0 -1rem;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .service-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        margin-right: 1rem;
        padding: 1.5rem;
    }

    .scroll-indicator {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }

    .scroll-dots {
        display: flex;
        gap: 0.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--border-color);
        transition: background-color 0.3s ease;
    }

    .dot.active {
        background-color: var(--accent-color);
    }

    h2 {
        font-size: 1.5rem;
        color: var(--text-color);
        margin-bottom: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        color: var(--text-color);
    }

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

    .reason-card h3 {
        font-size: 1.1rem;
        color: var(--text-color);
    }

    .service-card h3 {
        font-size: 1.1rem;
        color: var(--text-color);
    }

    .feature h3 {
        font-size: 1.1rem;
        color: var(--text-color);
    }

    .gallery-overlay h3 {
        font-size: 1.1rem;
        color: var(--text-color);
    }

    .timeline-content h3 {
        font-size: 1.1rem;
        color: var(--text-color);
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    .author-info h4 {
        font-size: 1rem;
        color: var(--text-color);
    }

    .contact h2 {
        font-size: 1.5rem;
        color: var(--text-color);
    }

    .footer-info h3 {
        font-size: 1.2rem;
        color: var(--text-color);
    }

    .footer-links h3 {
        font-size: 1.2rem;
        color: var(--text-color);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-text {
        display: none;
    }

    .logo-text {
        height: 40px;
        width: auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .services-grid,
    .reasons-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .about-text {
        order: 2;
    }

    .about-button {
        width: fit-content;
        max-width: none;
        margin: 1rem auto;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
        display: block;
    }

    .about-features {
        display: flex;
        grid-template-columns: none;
        gap: 1rem;
        padding: 0 1rem;
    }

    .feature {
        min-width: 250px;
        padding: 1.5rem;
    }

    .feature i {
        font-size: 2rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    .about .scroll-indicator {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }

    .about .scroll-dots {
        display: flex;
        gap: 0.5rem;
    }

    .about .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--border-color);
        transition: background-color 0.3s ease;
    }

    .about .dot.active {
        background-color: var(--accent-color);
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Reasons Section */
.reasons {
    padding: 4rem 0;
    background: #000000;
}

.reasons h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reason-card {
    background: #000000;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.reason-card:hover i {
    color: #000000;
}

.reason-card:hover p {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.reason-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.reason-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: opacity 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .reasons-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 1rem;
        gap: 1rem;
        padding: 1rem 0;
        margin: 0 -1rem;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .reason-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        margin-right: 1rem;
        padding: 1.5rem;
    }

    .reasons .scroll-indicator {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }

    .reasons .scroll-dots {
        display: flex;
        gap: 0.5rem;
    }

    .reasons .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--border-color);
        transition: background-color 0.3s ease;
    }

    .reasons .dot.active {
        background-color: var(--accent-color);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(139, 0, 0, 0.6) 0%, rgba(139, 0, 0, 0.5) 10%, #0A0A0A 40%, #000000 100%);
    color: var(--white);
}

.about h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--white);
    letter-spacing: 0.3px;
}

.about-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.about-button:hover {
    background-color: var(--accent-hover);
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.about-features::-webkit-scrollbar {
    display: none;
}

.feature {
    flex: 0 0 100%;
    scroll-snap-align: start;
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.8;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        display: flex;
        grid-template-columns: none;
        gap: 1rem;
        padding: 0 1rem;
    }

    .about-image {
        height: 300px;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #000000;
}

.contact h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #000000;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    background: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 51, 51, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-details h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.contact-details p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: 0.3px;
}

.map-section {
    margin-top: 3rem;
}

.map-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card {
        padding: 1rem;
    }
}

.contact-info {
    background: var(--gradient-dark);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-item-content {
    color: var(--text-secondary);
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-color);
}

.map-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 4px;
    height: 250px;
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-container {
        order: 1;
    }

    .contact-form-container {
        order: 2;
    }

    .info-item {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 1rem 0;
}

/* Submit Button Styles */
.submit-button {
    position: relative;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.submit-button:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: var(--text-secondary);
    cursor: not-allowed;
    transform: none;
}

.spinner {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.hidden {
    display: none;
}

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

/* Form Validation Styles */
input:invalid,
textarea:invalid {
    border-color: var(--error-color);
}

input:valid,
textarea:valid {
    border-color: var(--success-color);
}

/* Accessibility Styles */
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Footer */
footer {
    background: var(--gradient-dark);
    padding: 3rem 0 1rem;
    color: var(--text-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.footer-links h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Thank You Page Styles */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    padding: 2rem 0;
}

.thank-you-content {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thank-you-content h1 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.thank-you-details {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.thank-you-details p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.thank-you-details ul {
    list-style: none;
    padding: 0;
}

.thank-you-details li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.thank-you-details i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.thank-you-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.thank-you-details a:hover {
    color: var(--accent-color);
}

.thank-you .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thank-you .cta-button:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .thank-you {
        padding: 4rem 0;
    }

    .thank-you-content {
        padding: 2rem;
        margin: 0 1rem;
    }

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

    .thank-you-content p {
        font-size: 1rem;
    }

    .thank-you-details {
        padding: 1rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: #000000;
}

.gallery h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    letter-spacing: 0.3px;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .gallery {
        padding: 3rem 0;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 1rem;
        gap: 1rem;
        padding: 1rem 0;
        margin: 0 -1rem;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 280px;
        scroll-snap-align: center;
        margin-right: 1rem;
        height: 280px;
    }

    .gallery-item:last-child {
        margin-right: 0;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery .scroll-indicator {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }

    .gallery .scroll-dots {
        display: flex;
        gap: 0.5rem;
    }

    .gallery .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--border-color);
        transition: background-color 0.3s ease;
    }

    .gallery .dot.active {
        background-color: var(--accent-color);
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-caption {
    color: var(--text-color);
    text-align: center;
    margin-top: 1rem;
}

.lightbox-caption h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: var(--text-secondary);
}

/* Gallery Upload Styles */
.upload-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.upload-form .form-group {
    position: relative;
}

.upload-form input[type="file"] {
    display: none;
}

.upload-form label[for="gallery-images"] {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.upload-form label[for="gallery-images"]:hover {
    background: var(--accent-color-dark);
}

.upload-form input[type="text"],
.upload-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.upload-form textarea {
    height: 100px;
    resize: vertical;
}

.upload-button {
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.upload-button:hover {
    background: var(--accent-color-dark);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #000000;
}

.testimonials h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 1rem;
        gap: 1rem;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonial-card {
        min-width: 280px;
        scroll-snap-align: center;
        padding: 1.5rem;
    }

    .testimonial-content i {
        font-size: 1.2rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    .testimonial-author img {
        width: 40px;
        height: 40px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .testimonials .scroll-indicator {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }

    .testimonials .scroll-dots {
        display: flex;
        gap: 0.5rem;
    }

    .testimonials .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--border-color);
        transition: background-color 0.3s ease;
    }

    .testimonials .dot.active {
        background-color: var(--accent-color);
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about-hero p {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.company-history {
    padding: 80px 0;
    background-color: #000000;
    color: var(--white);
}

.company-history h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 700;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.history-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    letter-spacing: 0.3px;
}

.history-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background-color: #000000;
    color: var(--white);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card,
.vision-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.mission-card i,
.vision-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.team {
    padding: 80px 0;
    background-color: #000000;
    color: var(--white);
}

.team h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 700;
}

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

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.values {
    padding: 80px 0;
    background-color: #000000;
    color: var(--white);
}

.values h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 700;
}

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

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }

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

    .about-hero p {
        font-size: 1.2rem;
    }

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

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

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

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

    .company-history h2,
    .team h2,
    .values h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }

    .nav-cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}