/* Base Styles & Variables */
:root {
    --primary-color: #ffd700;
    --dark-color: #121212;
    --light-color: #ffffff;
    --transition-speed: 0.3s;
    --font-1: 'Orbitron', sans-serif;
    --font-2: 'Audiowide', cursive;
    --font-3: 'Russo One', sans-serif;
    --font-4: 'Syncopate', sans-serif;
    --font-5: 'Rajdhani', sans-serif;
    --font-6: 'Play', sans-serif;
    --section-padding: 80px 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-color);
    color: var(--light-color);
    overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: 0.1s;
    transform: translate(-50%, -50%);
}

/* Particles Container */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(18, 18, 18, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    height: 40px;
    width: 40px; /* Make width equal to height for perfect circle */
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Ensure image fills the circle properly */
    transition: transform var(--transition-speed) ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 15px var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Navigation */
.menu-btn {
    display: none; /* Hide by default on desktop */
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-btn {
        display: block; /* Only show on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        text-align: center;
    }

    /* Only show dots on mobile */
    .nav-links a::before {
        content: '•';
        color: var(--primary-color);
        margin-right: 10px;
        font-size: 1.2em;
        opacity: 0.7;
    }

    .nav-links a:hover::before {
        opacity: 1;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        position: relative;
        right: 0;
        height: auto;
        width: auto;
        background: none;
        flex-direction: row;
        justify-content: flex-end;
        gap: 2.5rem;
        backdrop-filter: none;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7)); /* Darkened overlay */
    z-index: 1; /* Updated z-index */
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    opacity: 1;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    background: linear-gradient(to right, var(--light-color) 0%, var(--light-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
}

.hero-content h1:hover {
    background: linear-gradient(to right, var(--light-color) 0%, var(--primary-color) 50%, var(--light-color) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shine 1.5s linear infinite;
    text-shadow: 0 0 20px var(--primary-color);
    letter-spacing: 4px;
}

.hero-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: var(--light-color);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.hero-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* Remove shine effect from hero content */
.hero-content.shine-effect {
    background: none;
    -webkit-text-fill-color: inherit;
}

.hero-content.shine-effect h1::before {
    display: none;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, var(--primary-color), #fae252);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Media Controls Bottom Container */
.media-controls-bottom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.media-controls-bottom button {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
    width: 140px;
    text-align: center;
}

.media-controls-bottom button:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: rgba(18, 18, 18, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    transform: translateY(50px);
    opacity: 0;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.service-card.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    background: rgba(40, 40, 40, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transform: translateZ(30px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateZ(50px) scale(1.1);
    text-shadow: 0 0 20px var(--primary-color);
}

.service-list {
    list-style: none;
    margin-top: 15px;
    transform: translateZ(20px);
}

.service-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    transform: translateZ(25px);
}

.service-list li:hover {
    transform: translateZ(40px) translateX(10px);
    color: var(--primary-color);
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 8px;
    transition: all 0.3s ease;
}

.service-card:hover .service-list li i {
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Update service card title */
.service-card h3 {
    transform: translateZ(35px);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    transform: translateZ(45px) translateY(-5px);
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background: rgba(18, 18, 18, 0.85);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.portfolio-item {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255,215,0,0.1);
    transition: transform var(--transition-speed) ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-width: 500px; /* Increased from 350px */
    margin: 0 auto;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.portfolio-item:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.portfolio-item video {
    width: 100%;
    height: 600px; /* Increased from 400px for better 9:16 ratio */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.project-info {
    width: 100%;
    padding: 20px; /* Increased from 15px */
    background: rgba(30, 30, 30, 0.95);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    margin-top: 10px;
    transform: translateZ(20px);
    transition: transform 0.6s ease;
}

.project-info h3 {
    font-size: 1.3rem; /* Increased from 1.1rem */
    color: var(--primary-color);
    margin-bottom: 8px;
}

.project-info p {
    font-size: 1rem; /* Increased from 0.9rem */
    color: var(--light-color);
    line-height: 1.4;
}

.project-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.project-features li {
    color: var(--light-color);
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transform: translateZ(30px);
    transition: transform 0.3s ease;
}

.project-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.project-features li:hover {
    transform: translateZ(40px) translateX(10px);
    color: var(--primary-color);
}

/* Review Section */
.reviews {
    padding: var(--section-padding);
    background: rgba(18, 18, 18, 0.9);
    color: var(--light-color);
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 30px;
    border-radius: 15px;
    max-width: 450px;
    box-shadow: 0 0 15px rgba(255,215,0,0.1);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255,215,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-header i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.review-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-family: var(--font-5);
}

.review-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-footer span {
    color: var(--light-color);
    font-style: italic;
    margin-right: 10px;
}

.review-footer i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.review-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-color);
    font-style: italic;
    animation: fadeInRight 0.8s ease forwards;
    transition: all 0.3s ease;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: rgba(18, 18, 18, 0.85);
    color: var(--light-color);
}

/* Enhanced About Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
    opacity: 1 !important;
}

.about-intro h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-1);
    opacity: 1;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-color);
    opacity: 1 !important;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
    opacity: 1;
}

.pillar {
    text-align: center;
    padding: 40px 20px;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 1 !important;
    /* Remove transform-style and perspective to fix text visibility */
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    background: rgba(40, 40, 40, 0.95);
}

.pillar.reveal {
    opacity: 1 !important;
    transform: none !important;
}

.pillar i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pillar h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-5);
    opacity: 1;
}

.pillar p {
    font-size: 1.1rem;
    color: var(--light-color);
    opacity: 1;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.pillar:hover p {
    color: var(--light-color);
    opacity: 0.9;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin: 80px 0;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 1;
}

.stat-item {
    text-align: center;
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-1);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--light-color);
    opacity: 0.9;
}

.about-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    opacity: 1 !important;
}

.about-cta.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Override reveal animation for about section */
.about .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Team Section */
.team {
    padding: var(--section-padding);
    background: rgba(18, 18, 18, 0.9);
    color: var(--light-color);
}

/* Team Section Enhanced */
.team-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.team-member {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 0 25px rgba(255,215,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,215,0,0.1), transparent);
    opacity: 0;
    transition: all 0.5s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member img {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 30px;
    border: 3px solid var(--primary-color);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.team-member:hover img {
    transform: translateY(-10px) scale(1.02);
    border-width: 4px;
    box-shadow: 0 20px 40px rgba(255,215,0,0.3);
}

.team-member h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: var(--font-1);
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.team-member .role {
    color: var(--light-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-family: var(--font-5);
    opacity: 0.9;
    position: relative;
    padding-bottom: 15px;
}

.team-member .role::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.team-member:hover .role::after {
    width: 100px;
}

.team-member .bio {
    color: var(--light-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 20px;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.team-member:hover .bio {
    opacity: 1;
    transform: translateY(-5px);
}

/* Founder Highlight */
.team-member.founder {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(40, 40, 40, 0.95));
    border: 1px solid rgba(255,215,0,0.2);
}

.team-member.founder h3 {
    font-size: 2.4rem;
    background: linear-gradient(to right, var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

@media (max-width: 1024px) {
    .team-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: rgba(18, 18, 18, 0.85);
    color: var(--light-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-form {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    background: rgba(30, 30, 30, 0.9);
    color: var(--light-color);
    font-size: 1rem;
    resize: vertical;
    transition: box-shadow var(--transition-speed) ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px var(--primary-color);
}

.form-note {
    color: var(--light-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.contact-form input:invalid,
.contact-form textarea:invalid {
    border: 1px solid #dc3545;
}

.contact-form input:valid,
.contact-form textarea:valid {
    border: 1px solid #28a745;
}

/* Adjust Contact Info Container */
.contact-info {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative; /* Add this */
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Increased gap */
    position: relative;
    padding-right: 200px; /* Increased padding for larger QR codes */
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Updated QR Code Styles */
.qr-code {
    position: absolute;
    right: -180px; /* Adjusted position for larger size */
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 160px; /* Increased size */
    height: 160px; /* Increased size */
    border-radius: 12px;
    border: 3px solid var(--primary-color); /* Thicker border */
    opacity: 0;
    transition: all 0.3s ease;
    object-fit: cover;
    z-index: 100;
    background: var(--dark-color);
    padding: 8px; /* Increased padding */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Enhanced shadow */
}

.social-link:hover .qr-code {
    opacity: 1;
    transform: translateY(-50%) scale(1.05); /* Slightly larger on hover */
}

/* Updated mobile responsive styles */
@media (max-width: 768px) {
    .qr-code {
        width: 200px; /* Even larger on mobile */
        height: 200px;
        right: -40px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
    padding: 80px 5% 20px;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    background: rgba(40, 40, 40, 0.4);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.footer-logo {
    width: 100px;
    height: 100px;
}

.brand-info h3 {
    font-family: var(--font-1);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.brand-info p {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 1.1rem;
    font-family: var(--font-5);
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-col h4 {
    color: var(--primary-color);
    font-family: var(--font-5);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 60px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    opacity: 0.7;
    font-size: 1.05rem;
}

.footer-nav a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-nav a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    padding: 12px 20px;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 5% 20px;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-nav a {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Loading Animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid var(--dark-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--dark-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
}

/* Status Messages */
.status-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Text Animations and Styles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 2.5rem;
    color: var(--light-color);
    animation: fadeInDown 1s ease forwards;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-title:hover {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
    transform: scale(1.02);
}

/* Text Animation Classes */
.text-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.text-fade-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.text-focus {
    animation: textFocus 1s ease forwards;
}

/* Service Card Text */
.service-card h3 {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-family: 'Play', sans-serif;
}

.service-card:hover h3 {
    transform: translateY(-3px);
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

/* About Section Text */
.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.about-content h3 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin: 30px 0 20px;
    animation: fadeInLeft 0.8s ease forwards;
    font-family: 'Exo 2', sans-serif;
}

/* Team Member Text */
.team-member h3 {
    color: var(--light-color);
    transition: color 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.team-member:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Section Text */
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
    font-family: 'Rajdhani', sans-serif;
}

/* New Text Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textFocus {
    from {
        filter: blur(12px);
        opacity: 0;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Text Shine Effects */
.shine-effect {
    position: relative;
    background: linear-gradient(90deg, #000, #fff, #000);
    background-repeat: no-repeat;
    background-size: 80%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 5s linear infinite;
    -webkit-text-fill-color: transparent;
}

@keyframes shine {
    0% {
        background-position: -500%;
    }
    100% {
        background-position: 500%;
    }
}

/* Project Info Box */
.project-info {
    width: 100%; /* Match parent width */
    background: rgba(30, 30, 30, 0.95);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    margin-top: 10px;
}

.project-info h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--light-color);
    line-height: 1.4;
}

/* Portfolio Footer */
.portfolio-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.portfolio-footer h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-1);
}

.portfolio-footer p {
    font-size: 1.1rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.portfolio-cta:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

/* Join Us Section */
.join-us {
    padding: var(--section-padding);
    background: rgba(18, 18, 18, 0.9);
}

.careers-container {
    max-width: 1400px;
    margin: 0 auto;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
}

.position-card {
    opacity: 1;
    transform: none;
}

.position-card.reveal {
    opacity: 1;
    transform: none;
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    background: rgba(40, 40, 40, 0.95);
}

.position-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.position-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-5);
}

.position-card p {
    color: var(--light-color);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.position-requirements {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.position-requirements li {
    color: var(--light-color);
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.position-requirements li i {
    color: var(--primary-color);
}

.position-requirements li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.careers-cta {
    text-align: center;
    background: rgba(30, 30, 30, 0.95);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    margin-top: 50px;
    transform: translateY(30px);
    opacity: 0;
}

.careers-cta.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.careers-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.careers-cta p {
    margin-bottom: 25px;
    color: var(--light-color);
    font-size: 1.1rem;
}

.careers-cta .btn {
    display: inline-block;
    min-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: 1fr;
    }
}

/* Disable custom cursor on mobile */
@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
    .custom-cursor, .cursor-dot {
        display: none;
    }
}

/* About Section Responsive Fixes */
@media (max-width: 768px) {
    .about-pillars {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .pillar {
        width: 100%;
        margin: 0 auto;
        max-width: 350px;
    }

    .about-stats {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .about-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.8rem;
        padding: 0 15px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Services Cards */
    .service-card {
        padding: 25px;
        margin: 0 15px;
    }

    /* Portfolio Videos */
    .portfolio-item video {
        height: 400px;
    }

    /* Reviews Section */
    .review-card {
        margin: 0 15px;
        padding: 25px;
    }

    /* Team Section */
    .team-member {
        padding: 25px;
        text-align: center;
    }

    .team-member img {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }

    /* Contact Form */
    .contact-form {
        margin: 0 15px;
    }

    .social-links {
        padding-right: 0;
    }

    /* Fixed Audio Button */
    .media-controls-bottom {
        bottom: 70px;
        right: 50%;
        transform: translateX(50%);
    }

    /* Improved Scroll to Top */
    .scroll-top {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Better Font Sizes */
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    /* Add Pull-to-refresh Feel */
    .loader {
        width: 40px;
        height: 40px;
    }

    /* Improved Touch Areas */
    .btn {
        padding: 15px 35px;
        min-width: 200px;
    }
}

/* Add Smooth Edge Gradients */
@media (max-width: 768px) {
    .portfolio-grid::after,
    .services-grid::after,
    .reviews-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30px;
        background: linear-gradient(to top, rgba(18, 18, 18, 1), transparent);
        pointer-events: none;
    }
}

/* Better Navigation on Small Screens */
@media (max-width: 480px) {
    .nav-links.active {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 15px 0;
    }
}
