/* Variable Adjustments */
:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-green: #53a96c; /* Brighter neon green */
    --accent-purple: #a080bc;
    --border-color: rgba(74, 222, 128, 0.3);
    --card-bg: rgba(255, 255, 255, 0.03);
    --font-heading: 'Outfit', sans-serif;
    --container-max: 1200px;
    --header-height: 100px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-heading);
    margin: 0;
    overflow-x: hidden;
    font-size: 16px;
}
* {
    cursor: url('/assets/front/images/mouse.png'), auto;

}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-center { text-align: center; }
.text-green { color: var(--accent-green); }
.text-purple { color: var(--accent-purple); }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-green);
}

/* Hero Section */
.hero {
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: var(--header-height);
    /* background: radial-gradient(circle at center, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 100%); */
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle noise/texture overlay could go here */
    pointer-events: none;
        z-index: 99;
    background: rgba(0, 0, 0, 0.50);
}

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

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Eye Graphic Placeholder in CSS */
.hero-visual {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    background: url('https://images.unsplash.com/photo-1492683962492-deef0ec456c0?q=80&w=2000&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    border-radius: 50%; /* Make it circular if desired, or keep rectangular like image banner */
    /* Check image: it's actually a large banner. Let's adjust hero to use an image background */
    display: none; /* Hiding this implementation for a better one below */
}

/* Better Hero Approach based on Image */
.hero {
    /* background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop') no-repeat center center; */
    background-size: cover;
    /* Darken image */
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.6);
}
.hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
}

/* Services */
.services {
    padding: 100px 20px;
    background: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.service-card {
    border: 3px solid var(--border-color);
    border-radius: 32px;
    padding: 10px 30px;
    transition: all 0.3s;
    background: rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.service-card:hover {
    box-shadow: 0 0 15px var(--accent-green);
    transform: translateY(-5px);
    background: var(--accent-green)
}


.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #ccc;
    padding-left: 15px;
}
.service-card:hover p {
    color: white
}

/* Projects */
.projects {
    padding: 75px 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 column layout as per image */
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.project-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    align-items: flex-end;
}

.project-category {
    /* background: var(--accent-purple);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase; */
}

.view-more-container {
    margin-top: 50px;
}

.btn-green {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-green:hover {
    background: var(--accent-green);
    color: #000;
}

/* About Section */
.about {
    background: var(--accent-purple);
    color: #fff;
    padding: 80px 20px;
}
.about img {
    height: 150px;
    margin-bottom: 20px;
}
.about .section-title {
    margin-bottom: 1rem;
}
.about-text {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.3rem;
    line-height: 1.5;
}

/* Awards */
.awards {
    padding: 80px 20px;
}
.awards-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.award-item {
/* flex:1; */
}
.award-item img {
    border-radius: 10px;
    /* filter: grayscale(100%); */
    transition: 0.3s;
    height: 350px;
    
}
.award-item img:hover {
    filter: grayscale(0%);
}

/* Contact */
.contact {
    padding: 80px 20px 120px 20px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #aaa;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    color: #fff;
    font-family: inherit;
}

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

.form-options {
    margin: 30px 0;
}

.checkbox-label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}
.btn-submit:hover {
    background: var(--accent-green);
    color: #000;
}

/* Clients Slider Section */
.clients {
    padding: 20px 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2)
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll-infinite 20s linear infinite;
    width: fit-content;
}

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

.client-item {
    flex-shrink: 0;
    width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--card-bg); */
    /* border: 1px solid var(--border-color); */
    border-radius: 10px;
    /* padding: 20px; */
    transition: border-color 0.2s ease;
}

.client-item:hover {
    border-color: var(--accent-green);
}

.client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0%) brightness(1);
}

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

/* Footer */
.main-footer {
    padding: 50px 20px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
    color: #888;
}
.footer-content {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    gap: 40px;
}
.social-links {
    margin-top: 15px;
}
.social-links a {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #fff;
}

/* Project Details Page Styles */

/* Project Hero */
.project-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.project-hero-image {
    width: 100%;
    height: 100%;
}

.project-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 0 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

.project-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #fff;
    padding: 0 20px;
    letter-spacing: 3px;
}

.project-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.project-category-badge {
    background: var(--accent-purple);
    color: #fff;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.project-date {
    color: var(--accent-green);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 10px;
    letter-spacing: 2px;
}

/* Project Details Section */
.project-details {
    padding: 80px 20px;
    background: var(--bg-color);
}

.project-info {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.project-description h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.project-specs {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}

.project-specs h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.spec-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.spec-item i {
    color: var(--accent-green);
    font-size: 1.3rem;
    margin-top: 3px;
}

.spec-item strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.spec-item p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

/* Project Media Gallery */
.project-media {
    padding: 80px 20px;
    background: #000;
   
}

.media-section {
    margin-bottom: 60px;
}

.media-section:last-child {
    margin-bottom: 0;
}

.media-section-title {
    font-size: 1.8rem;
    color: var(--accent-green);
    margin-bottom: 30px;
    text-align: center;
}

/* Video Container */
.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Images Grid */
.images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--accent-green);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-item video {
    width: 100%;
    display: block;
}

.video-caption {
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Related Projects */
.related-projects {
    padding: 80px 20px;
    background: var(--bg-color);
}

.related-projects .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}
.gallery-item video {
    width: 100%;
    height: 100%;
}

