/* main.css */

/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    background: #000;
    height: auto;
    overflow-y: scroll;
}

/* Hide scrollbar for Firefox */
body {
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hero Section */
#home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
}

/* Background Video */
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Particle container */
#particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Heading Overlay */
.hero-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-top: -600px;
}

/* Company Name Styles */
.hero-heading h1 {
    font-size: 5rem;
    margin: 0;
    padding: 0;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

/* Services Section */
.services {
    position: relative;
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

#services-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Services Container */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Subtitle */
.section-subtitle{
    max-width: 900px;
    margin: 10px auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Category heading */
.service-category{
    margin: 40px 0 15px;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Grid layout for services */
.services-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 10px;
}

.service {
    margin: 0;
    padding: 20px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    text-align: left;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255,255,255,0.10);
}

.service h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
}

.service p {
    font-size: 1rem;
    line-height: 1.55;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1100px){
    .services-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px){
    .services-grid{
        grid-template-columns: 1fr;
    }
}

/* ===================== HIRING SECTION ===================== */
.hiring{
    position: relative;
    background-color: #000;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
    overflow: hidden;
}

#hiring-particle-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hiring-container{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hiring-title{
    font-size: 4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 10px;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
}

.hiring-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.hiring-card{
    padding: 20px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: transform 0.3s;
    border: 1px solid rgba(0, 212, 255, 0.08);
}

.hiring-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0,212,255,0.12);
}

.hiring-card h3{
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.hiring-card p{
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hiring-cta{
    margin-top: 28px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-ghost{
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-primary{
    background: rgba(0, 212, 255, 0.9);
    color: #000;
}

.btn-ghost{
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(0, 212, 255, 0.25);
}

.btn-primary:hover,
.btn-ghost:hover{
    transform: translateY(-3px);
    opacity: 0.95;
}

.hiring-note{
    margin-top: 14px;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Hiring responsive */
@media (max-width: 1100px){
    .hiring-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px){
    .hiring-title{
        font-size: 3rem;
    }
    .hiring-grid{
        grid-template-columns: 1fr;
    }
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Background Video for Video Section */
#background-video-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Particle container for Video Section */
#video-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay Text for Video Section */
.video-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-top: -600px;
}

.video-heading h2 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: black;
    color: #fff;
}

.footer-address{
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    text-align: center;
}

.footer-address h3{
    margin: 0 0 8px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-address p{
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Copyright */
.copyright {
    margin-top: 20px;
}
.copyright p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive for hero/video headings */
@media (max-width: 768px) {
    .hero-heading h1 {
        font-size: 3.5rem;
    }
    .hero-heading {
        margin-top: -220px;
    }
    .services h2 {
        font-size: 2.5rem;
    }
    .video-heading h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-heading h1 {
        font-size: 3rem;
    }
    .hero-heading {
        margin-top: -180px;
    }
    .services h2 {
        font-size: 2rem;
    }
    .video-heading h2 {
        font-size: 2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Add a class for animation */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}
