/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0a0a0a;
    color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

/* =========================
   HEADER
========================= */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 60px;

    position:sticky;
    top:0;

    background:rgba(10,10,10,0.95);

    backdrop-filter:blur(10px);

    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:500;
    color:#00d4ff;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.partner-btn{
    background:#00d4ff;
    color:#000 !important;

    padding:10px 18px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;
}

.partner-btn:hover{
    background:#00b8e0;
    transform:translateY(-2px);
}
nav a:hover{
    color:#00d4ff;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:70vh;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:40px;

    padding:10px 60px 40px;
}

.hero-left{
    width:55%;
    padding-top:220px;
    margin-left:80px;

    position:relative;
    z-index:10;
}
.subtitle{
    color:#00d4ff;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.hero h1{
    font-size:90px;
    line-height:0.9;
    font-weight:600;
    letter-spacing:-3px;
    margin-bottom:25px;
    color:#ffffff;
}

.description{
    color:#c7c7c7;
    line-height:1.8;
    margin-bottom:35px;
}

.btn{
    display:inline-block;

    background:#00d4ff;
    color:black;

    text-decoration:none;

    padding:14px 30px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.hero-right{
    width:58%;
    margin-top:-20px;
}

.hero-right img{
    width:100%;
    height:65vh;

    object-fit:cover;

    border-radius:24px;

    display:block;
}

/* =========================
   SECTION TITLES
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title p{
    color:#00d4ff;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:48px;
}

/* =========================
   SERVICES
========================= */

.services{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:40px;

    justify-content: center;

    width:100%;

    margin:0 auto;
    
    padding:0 250px;	

}
.service-card{
    background:#151515;

    border-radius:20px;

    padding:25px;

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:220px;

    object-fit:cover;

    border-radius:14px;

    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:12px;
}

.service-card p{
    color:#bdbdbd;
    line-height:1.6;
}
#services{
    scroll-margin-top: 230px;
}
/* =========================
   PROJECTS
========================= */

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

    width:100%;
    max-width:none;

    margin:0 auto;
}


.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title p{
    color:#00d4ff;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:64px;
    font-weight:700;
    color:#fff;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

    width:98%;
    max-width:1900px;
    margin:0 auto;
}

.project-card{
    background:#151515;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.project-info{
    padding:20px;
}

.project-info span{
    color:#00d4ff;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
}

.project-info h3{
    color:#fff;
    font-size:20px;
    margin-top:10px;
}

/* Responsive */

@media(max-width:1200px){
    .project-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .project-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:42px;
    }
}

/* =========================
   STATS
========================= */

.stats{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    padding:80px 60px;
}

.stat-box{
    background:#151515;

    padding:40px;

    border-radius:20px;

    text-align:center;
}

.stat-box h3{
    color:#00d4ff;
    font-size:36px;
    margin-bottom:10px;
}

/* =========================
   ABOUT
========================= */

.about{
    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:100px 60px;
}

.about p{
    color:#c7c7c7;
    line-height:1.8;
    font-size:18px;
}

/* =========================
   PARTNER NOTE
========================= */

.partner-note{
    max-width:900px;

    margin:0 auto 80px;

    background:#151515;

    padding:35px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(0,212,255,0.25);
}

.partner-note h3{
    color:#00d4ff;

    margin-bottom:15px;

    font-size:28px;
}

.partner-note p{
    color:#c7c7c7;

    line-height:1.8;

    font-size:18px;
}
/* =========================
   CONTACT
========================= */

.contact{
    padding:100px 60px;
}

form{
    max-width:700px;

    margin:auto;

    display:flex;
    flex-direction:column;

    gap:20px;
}

input,
textarea{
    background:#151515;

    color:white;

    border:none;

    padding:18px;

    border-radius:12px;
}

textarea{
    height:180px;
    resize:none;
}

form button{
    background:#00d4ff;

    color:black;

    border:none;

    padding:18px;

    border-radius:12px;

    cursor:pointer;

    font-weight:700;
}

/* =========================
   FOOTER
========================= */

footer{
    padding:60px;

    text-align:center;

    border-top:1px solid #222;
}

.footer-logo{
    font-size:28px;
    font-weight:700;
    color:#00d4ff;

    margin-bottom:15px;
}

footer p{
    color:#9f9f9f;
    margin-bottom:10px;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .hero{
        flex-direction:column;
        padding:40px 30px;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-left{
        padding-top:40px;
    }

    .hero h1{
        font-size:60px;
    }

    .hero-right{
        margin-top:0;
    }

    .services{
        grid-template-columns:repeat(2,1fr);
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
        padding:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        padding:20px;
    }

    .hero-left{
        padding-top:20px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-right img{
        height:420px;
    }

    .services{
        grid-template-columns:1fr;
        padding:80px 20px;
    }

    .project-grid{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr;
        padding:80px 20px;
    }

    .featured-work,
    .contact,
    .about{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:36px;
    }
}

/* =========================
   ARVR PAGE
========================= */

.arvr-projects{
    max-width:1600px;
    margin:100px auto;
    padding:0 60px;
}

.arvr-row{
    display:flex;
    align-items:center;
    gap:80px;
    margin-bottom:200px;
}

.arvr-video{
    flex:1;
}

.arvr-video img,
.arvr-video video{
    width:100%;
    border-radius:20px;
    display:block;
}

.arvr-info{
    flex:1;
}

.arvr-info h2{
    font-size:52px;
    margin-bottom:20px;
}

.arvr-info p{
    color:#c7c7c7;
    font-size:18px;
    line-height:1.8;
    text-align:justify;
}

.reverse{
    flex-direction:row-reverse;
}

.video-thumbnail{
    position:relative;
    cursor:pointer;
}

.video-thumbnail img{
    width:100%;
    border-radius:20px;
    display:block;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:#00cfff;
    color:#000;
    font-size:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.video-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.video-popup-content{
    width:80%;
    max-width:1200px;
    position:relative;
}

.video-popup-content iframe{
    width:100%;
    height:700px;
    border:none;
}

.close-video{
    position:absolute;
    top:-50px;
    right:0;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

/* =========================
   PARTNER PROGRAM PAGE
========================= */

.partner-section{
    max-width:900px;
    margin:120px auto;
    padding:0 30px;
    text-align:center;
}

.partner-section h2{
    font-size:54px;
    color:#ffffff;
    margin-bottom:30px;
}

.partner-section p{
    font-size:20px;
    color:#c7c7c7;
    line-height:1.9;
}

.partner-section ul{
    list-style:none;
    padding:0;
    margin-top:35px;
}

.partner-section li{
    font-size:22px;
    color:#ffffff;
    margin:18px 0;
}

.partner-section .btn{
    margin-top:40px;
}