/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111;
}

/* ===========================
   HEADER
=========================== */

header{
    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 70px;

    position:fixed;
    top:0;
    left:0;

    background:#fff;
    z-index:999;
}

/* Logo */

.logo{
    font-size:44px;
    font-weight:900;
    letter-spacing:-2px;
}

.logo span{
    font-weight:400;
}

/* Navigation */

nav{
    display:flex;
    gap:42px;
}

nav a{

    text-decoration:none;
    color:#222;

    font-size:17px;
    font-weight:500;

    transition:.3s;
}

nav a:hover{
    color:#6246ff;
}

/* Contact Button */

.contact-btn{

    text-decoration:none;

    background:#5b3df5;
    color:#fff;

    padding:16px 32px;

    border-radius:10px;

    font-weight:600;

    display:flex;
    align-items:center;
    gap:8px;

    transition:.3s;
}

.contact-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(91,61,245,.25);

}

/* Mobile Menu */

.menu{

    display:none;

    font-size:34px;

    cursor:pointer;

}

/* ===========================
   HERO
=========================== */
.hero{
    width: 92%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 170px 0 110px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 90px;
}

.hero{

    width:100%;
    min-height:100vh;

    padding:170px 70px 80px;

    display:grid;

    grid-template-columns:1.4fr .9fr;

    gap:90px;

    align-items:center;

}

/* Badge */

.badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:14px 22px;

    border-radius:50px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    margin-bottom:35px;

    font-size:15px;

}

.dot{

    width:10px;

    height:10px;

    background:#31c72c;

    border-radius:50%;

}

/* Heading */

.hero h1{

    font-size:92px;

    line-height:1.03;

    letter-spacing:-5px;

    font-weight:800;

}

.gradient{

    background:linear-gradient(
        90deg,
        #ff914d,
        #ff4da6,
        #8a2be2,
        #4f46e5
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* Buttons */

.buttons{

    display:flex;

    gap:18px;

    margin-top:50px;

}

.btn-primary{

    background:#000;

    color:#fff;

    text-decoration:none;

    padding:22px 38px;

    border-radius:12px;

    font-size:19px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:12px;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(0,0,0,.22);

}

.btn-secondary{

    border:1px solid #ddd;

    text-decoration:none;

    color:#111;

    padding:22px 38px;

    border-radius:12px;

    font-size:19px;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    background:#f7f7f7;

}

/* ======================
   RIGHT SIDE
=========================== */

.hero-right{

    margin-top:70px;

}

.hero-right p{

    font-size:26px;

    line-height:1.7;

    color:#333;

}

.review{

    margin-top:55px;

    display:flex;

    align-items:center;

    gap:22px;

}

.avatars{

    display:flex;

}

.avatars img{

    width:58px;

    height:58px;

    border-radius:50%;

    border:3px solid #fff;

    margin-left:-12px;

}

.avatars img:first-child{

    margin-left:0;

}

.review-text h4{

    font-size:18px;

    margin-bottom:6px;

}

.review-text span{

    color:#666;

    font-size:16px;

}
/*=========================================
        HOVER EFFECTS
=========================================*/

nav a{
    position: relative;
}

nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #5B3DF5;
    transition: .35s;
}

nav a:hover::after{
    width: 100%;
}

.logo{
    cursor: pointer;
    transition: .3s;
}

.logo:hover{
    transform: scale(1.04);
}

.badge{
    transition: .3s;
}

.badge:hover{
    transform: translateY(-3px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.hero h1{
    animation: fadeUp .8s ease;
}

.hero-right{
    animation: fadeLeft 1s ease;
}

.buttons{
    animation: fadeUp 1.2s ease;
}

/*=========================================
            ANIMATIONS
=========================================*/

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;
        transform:translateX(60px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px){

.hero{

grid-template-columns:1fr;

gap:60px;

}

.hero h1{

font-size:72px;

}

.hero-right{

margin-top:0;

}

}

@media(max-width:992px){

header{

padding:0 35px;

}

.hero{

padding:140px 35px 60px;

}

nav{

display:none;

}

.menu{

display:block;

}

.contact-btn{

display:none;

}

.hero h1{

font-size:60px;

letter-spacing:-3px;

}

.hero-right p{

font-size:20px;

}

.buttons{

flex-wrap:wrap;

}

}

@media(max-width:768px){

.hero{

padding:130px 25px 50px;

}

.hero h1{

font-size:48px;

line-height:1.08;

}

.hero-right p{

font-size:18px;

line-height:1.8;

}

.btn-primary,
.btn-secondary{

width:100%;

justify-content:center;

}

.badge{

font-size:14px;

}

.review{

flex-direction:column;
align-items:flex-start;

}

}

@media(max-width:480px){

.logo{

font-size:34px;

}

.hero h1{

font-size:38px;

letter-spacing:-2px;

}

.hero-right p{

font-size:16px;

}

header{

height:80px;

padding:0 20px;

}

.hero{

padding:110px 20px 40px;

}

}


/* section no 2*/
/*===============================
        VIDEO SECTION
================================*/

.video-section{

    width:100%;

    padding:120px 70px;

    background:#fff;

}

.video-container{

    max-width:1450px;

    margin:auto;

}

.video-top{

    text-align:center;

    margin-bottom:60px;

}

.video-top span{

    color:#6b4eff;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

}

.video-top h2{

    margin-top:18px;

    font-size:55px;

    line-height:1.2;

    font-weight:800;

    color:#111;

}

.video-box{

    width:100%;

    height:720px;

    overflow:hidden;

    border-radius:30px;

    position:relative;

    box-shadow:0 30px 80px rgba(0,0,0,.15);

}

.video-box video{

    width:100%;

    height:100%;

    object-fit:cover;

}

.video-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.18);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s;

}

.video-overlay:hover{

    background:rgba(0,0,0,.35);

}

.play-btn{

    width:90px;

    height:90px;

    background:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    color:#111;

    cursor:pointer;

    transition:.35s;

}

.play-btn:hover{

    transform:scale(1.12);

    background:#5B3DF5;

    color:#fff;

}

@media(max-width:768px){

.video-section{

padding:80px 20px;

}

.video-top h2{

font-size:34px;

}

.video-box{

height:280px;

border-radius:18px;

}

.play-btn{

width:65px;

height:65px;

font-size:28px;

}

}

/* Section 3*/
.trusted-section{
    width:100%;
    padding:100px 8%;
    background:#fff;
}

.trusted-title{
    text-align:center;
    font-size:30px;
    font-weight:600;
    color:#111;
    margin-bottom:70px;
    letter-spacing:.5px;
}

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:70px 60px;
    align-items:center;
    justify-items:center;
}

.logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo img{
    max-width:180px;
    width:100%;
    max-height:60px;
    object-fit:contain;
    transition:.4s ease;
    filter:grayscale(100%);
    opacity:.8;
}

.logo img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

@media(max-width:1200px){
.trusted-grid{
    grid-template-columns:repeat(4,1fr);
}
}

@media(max-width:768px){
.trusted-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}
.trusted-title{
    font-size:24px;
}
}

@media(max-width:480px){
.trusted-grid{
    grid-template-columns:1fr;
}
}


/* Section 3 */


.about-section{
    width:100%;
    padding:120px 8%;
    background:#fff;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.about-video{
    flex:1;
}

.about-video video{
    width:100%;
    border-radius:25px;
    display:block;
}

.about-content{
    flex:1;
}

.about-tag{
    display:inline-block;
    margin-bottom:20px;
    font-size:15px;
    letter-spacing:2px;
    color:#888;
    text-transform:uppercase;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    font-weight:500;
    color:#111;
    margin-bottom:30px;
}

.about-content p{
    font-size:19px;
    color:#666;
    line-height:1.8;
    margin-bottom:45px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:250px;
    height:80px;

    border:2px solid #111;
    border-radius:60px;

    text-decoration:none;
    color:#111;
    font-size:24px;
    font-weight:500;

    transition:.4s;
}

.about-btn:hover{
    background:#111;
    color:#fff;
}




@media(max-width:991px){

.about-container{
    flex-direction:column;
}

.about-content{
    text-align:center;
}

.about-content h2{
    font-size:38px;
}

.about-btn{
    width:220px;
    height:70px;
    font-size:22px;
}

}


.footer{

    width:100%;
    padding:80px 7%;
    background:#fff;

}

.newsletter{

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#f5f5f5;

    border-radius:20px;

    padding:45px 55px;

    margin-bottom:80px;

}

.newsletter h2{

    font-size:42px;
    margin-bottom:12px;
    color:#111;

}

.newsletter p{

    font-size:20px;
    color:#666;

}

.subscribe-btn{

    width:220px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border:2px solid #111;

    border-radius:60px;

    text-decoration:none;

    color:#111;

    font-size:22px;

    transition:.4s;

}

.subscribe-btn:hover{

    background:#111;
    color:#fff;

}

.footer-links{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:50px;

}

.footer-column h4{

    font-size:20px;
    margin-bottom:25px;
    color:#777;
    font-weight:500;

}

.footer-column a,
.footer-column p{

    display:block;

    margin-bottom:18px;

    color:#111;

    text-decoration:none;

    font-size:19px;

    transition:.3s;

}

.footer-column a:hover{

    padding-left:8px;

}

.footer hr{

    margin:70px 0 35px;

    border:none;

    height:1px;

    background:#ddd;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:#777;
    font-size:18px;

}

.footer-menu{

    display:flex;
    gap:35px;

}

.footer-menu a{

    text-decoration:none;

    color:#777;

    font-size:18px;

}

.footer-menu a:hover{

    color:#111;

}

@media(max-width:991px){

.newsletter{

    flex-direction:column;
    gap:30px;
    text-align:center;

}

.footer-links{

grid-template-columns:repeat(2,1fr);

}

.footer-bottom{

    flex-direction:column;
    gap:25px;

}

}

@media(max-width:600px){

.footer-links{

grid-template-columns:1fr;

}

.newsletter h2{

font-size:30px;

}

.newsletter p{

font-size:16px;

}

.subscribe-btn{

width:180px;
height:60px;
font-size:18px;

}

}



/* last section*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.video-section{
    width:100%;
    padding:100px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.video-box{
    width:100%;
    height:700px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media(max-width:768px){

.video-box{
    height:350px;
}

}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.stats-section{
    padding:90px 6%;
    background:#fff;
}

.container{
    max-width:1500px;
    margin:auto;
}

.title{
    font-size:68px;
    font-weight:700;
    line-height:1.1;
    color:#111;
    margin-bottom:60px;
    max-width:1200px;
}

.title span{
    color:#8a8a8a;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:2px;
    background:#e8e8e8;
    border-radius:25px;
    overflow:hidden;
}

.card{
    background:#fff;
    min-height:330px;
    padding:25px;
    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    transition:.4s;
}

.card:hover{
    background:#fafafa;
    transform:translateY(-5px);
}

.card:nth-child(1),
.card:nth-child(2),
.card:nth-child(3){
    grid-column:span 2;
}

.wide{
    grid-column:span 3;
}

.number{
    font-size:15px;
    color:#888;
}

.content h3{
    font-size:60px;
    color:#111;
    margin-bottom:12px;
    font-weight:600;
}

.content p{
    color:#555;
    font-size:19px;
    line-height:1.7;
}

@media(max-width:991px){

.title{
    font-size:42px;
}

.stats-grid{
    grid-template-columns:1fr;
}

.card,
.wide{
    grid-column:span 1;
    min-height:240px;
}

.content h3{
    font-size:42px;
}

}

.card-image video{
    width:100%;
    height:100%;
    object-fit:cover;
}



.services{

    padding:120px 8%;
    background:#fff;

}

.services-wrapper{

    display:flex;
    justify-content:space-between;
    gap:80px;
}

.services-content{

    width:42%;
}

.services-right{

    width:42%;

    display:flex;
    flex-direction:column;
}

.services-content h2{

    font-size:65px;
    margin-bottom:30px;
}

.services-content>p{

    width:260px;
    line-height:1.6;
    margin-bottom:60px;
}

.service-card{

    width:100%;
}

.video-box{

    width:100%;
    height:420px;

    border-radius:18px;
    overflow:hidden;
}

.video-box video{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;
}

.service-card:hover video{

    transform:scale(1.08);
}

.service-card h3{

    margin-top:18px;
    font-size:32px;
    font-weight:600;
}

.service-card p{

    margin-top:12px;
    color:#666;
    line-height:1.7;
}

.second{

    margin-top:90px;
}

@media(max-width:991px){

.services-wrapper{

flex-direction:column;

}

.services-content,
.services-right{

width:100%;

}

.second{

margin-top:40px;

}

.video-box{

height:300px;

}

}


/* ===========================
   VIDEO SECTION
=========================== */

.video-section{
    padding:100px 0;
    background:#fff;
}

.video-container{
    width:90%;
    max-width:1450px;
    margin:auto;
}

.video-top{
    text-align:center;
    margin-bottom:60px;
}

.video-top span{
    color:#5a4cff;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.video-top h2{
    font-size:68px;
    font-weight:800;
    line-height:1.1;
    max-width:1100px;
    margin:20px auto 0;
}

/* VIDEO BOX */

.video-box{
    position:relative;
    width:100%;
    height:650px;
    border-radius:30px;
    overflow:hidden;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* VIDEO */

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;   /* fill full box */
    object-position:center center;
    display:block;
}

/* OVERLAY */

.video-overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.15);
}

.play-btn{
    width:95px;
    height:95px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    color:#111;
    cursor:pointer;
    transition:.4s;
}

.play-btn:hover{
    transform:scale(1.1);
}

/* RESPONSIVE */

@media(max-width:992px){

.video-top h2{
    font-size:48px;
}

.video-box{
    height:500px;
}

}

@media(max-width:768px){

.video-top h2{
    font-size:34px;
}

.video-box{
    height:350px;
}

.play-btn{
    width:70px;
    height:70px;
    font-size:30px;
}

}

/*==================================================
            OUR WORK SECTION
==================================================*/

.our-work{
    padding:120px 0;
    background:#ffffff;
    overflow:hidden;
}

.work-container{
    width:92%;
    max-width:1700px;
    margin:auto;
}

/*==========================
        Heading
===========================*/

.work-heading{
    margin-bottom:45px;
}

.work-heading h2{
    font-size:72px;
    line-height:1.05;
    font-weight:700;
    color:#111;
    letter-spacing:-3px;
    max-width:1000px;
}

/*==========================
      Filter Buttons
===========================*/

.work-filter{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:55px;
}

.work-filter button{

    padding:18px 38px;

    border-radius:50px;

    border:1px solid #ddd;

    background:#fff;

    color:#111;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.work-filter button:hover{

    background:#111;

    color:#fff;

    border-color:#111;

}

.work-filter .active{

    background:#0EA5E9;

    color:#fff;

    border-color:#0EA5E9;

}

/*==========================
      Project Grid
===========================*/

.work-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

/*==========================
      Project Card
===========================*/

.work-card{

    position:relative;

    background:#111;

    border-radius:32px;

    overflow:hidden;

    height:520px;

    transition:.45s;

}

.work-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

/* Overlay */

.work-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:35px;

    background:linear-gradient(to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45),
        transparent);

    color:#fff;

}

.work-overlay span{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.2);

    border-radius:30px;

    backdrop-filter:blur(10px);

    font-size:13px;

    margin-bottom:15px;

}

.work-overlay h3{

    font-size:34px;

    font-weight:700;

    margin-bottom:15px;

    line-height:1.2;

}

.work-overlay a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.work-overlay a:hover{

    color:#0EA5E9;

}

/*==========================
      Hover Effect
===========================*/

.work-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.work-card:hover img{

    transform:scale(1.06);

}

/*==========================
        Responsive
===========================*/

@media(max-width:1200px){

.work-heading h2{

    font-size:58px;

}

}

@media(max-width:991px){

.work-grid{

    grid-template-columns:1fr;

}

.work-heading h2{

    font-size:46px;

}

.work-card{

    height:420px;

}

}

@media(max-width:768px){

.work-heading h2{

    font-size:34px;

}

.work-filter{

    gap:12px;

}

.work-filter button{

    padding:14px 24px;

    font-size:14px;

}

.work-card{

    height:320px;

}

.work-overlay h3{

    font-size:24px;

}

} 
.work-card{
    height:520px;
    background:#111;
    border-radius:30px;
    overflow:hidden;
}

.work-card img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    background:#111;
}

.card-image{
    width:100%;
    height:240px;
    overflow:hidden;
    border-radius:18px;
}

.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:0.5s;
}

.card:hover .card-image img{
    transform:scale(1.08);
}

/*==============================
        SERVICES STACK
==============================*/

.services-stack{
    position: relative;
    background: #fff;
}

/* Each Panel */

.service-panel{
    position: sticky;
    top: 0;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 1;
    border-top: 1px solid #e5e5e5;
}

/* Layer Order */

.service-panel:nth-child(1){
    z-index:1;
}

.service-panel:nth-child(2){
    z-index:2;
}

.service-panel:nth-child(3){
    z-index:3;
}

/* Container */

.panel-container{

    width:90%;
    max-width:1450px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;

}

/* Reverse */

.panel-container.reverse{

    grid-template-columns:1fr 1fr;

}

/* Video */

.panel-video{

    width:100%;
    height:520px;

    border-radius:28px;

    overflow:hidden;

    background:#000;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.panel-video video{

    width:100%;
    height:100%;

    object-fit:cover;

}

/* Content */

.panel-content h2{

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;

    color:#111;

}

.panel-content p{

    font-size:22px;

    line-height:1.8;

    color:#666;

    max-width:520px;

}

/* Responsive */

@media(max-width:991px){

.service-panel{

    height:auto;
    position:relative;
    padding:100px 0;

}

.panel-container{

    grid-template-columns:1fr;
    gap:50px;

}

.panel-container.reverse{

    display:flex;
    flex-direction:column-reverse;

}

.panel-content h2{

    font-size:42px;

}

.panel-content p{

    font-size:18px;

}

.panel-video{

    height:350px;

}

}
/*==========================
   Trusted Companies Slider
==========================*/

.trusted-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

.trusted-title{
    text-align:center;
    font-size:18px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:60px;
    color:#111;
}

.trusted-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.trusted-track{
    display:flex;
    align-items:center;
    gap:70px;
    width:max-content;
    animation:logoScroll 30s linear infinite;
}

.logo{
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:90px;
}

.logo img{
    max-width:150px;
    max-height:60px;
    object-fit:contain;
    transition:.3s;
    opacity:.8;
}

.logo img:hover{
    opacity:1;
    transform:scale(1.08);
}

/* Right → Left */

@keyframes logoScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}




/*Contact Section */


/*=========================================
            CONTACT SECTION
=========================================*/

.contact-section{
    padding:80px 0;
    background:#f5f5f5;
}

.contact-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

/*=========================================
            LEFT SIDE
=========================================*/

.contact-tag{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    color:#5B3DF5;
    margin-bottom:18px;
    text-transform:uppercase;
}

.contact-left h2{
    font-size:58px;
    line-height:1.05;
    font-weight:700;
    color:#111;
    margin-bottom:30px;
    letter-spacing:-2px;
}

.contact-left h2 span{
    display:block;
    color:#8a8a8a;
}

.contact-list{
    list-style:none;
    margin-bottom:35px;
}

.contact-list li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:17px;
    color:#222;
    margin-bottom:15px;
}

.contact-list i{
    color:#5B3DF5;
    font-size:20px;
}

.line{
    width:100%;
    height:1px;
    background:#ddd;
    margin:35px 0;
}

.contact-left h4{
    font-size:24px;
    margin-bottom:20px;
    color:#111;
}

/*=========================================
            FOUNDER CARD
=========================================*/

.founder-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.founder-info{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.founder-info img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.founder-info h3{
    font-size:22px;
    margin-bottom:4px;
}

.founder-info p{
    font-size:15px;
    color:#777;
}

.call-btn{
    width:100%;
    height:58px;
    background:#5B3DF5;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-decoration:none;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    transition:.35s;
}

.call-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(91,61,245,.25);
}

/*=========================================
            RIGHT SIDE
=========================================*/

.contact-right{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.input-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.input-grid input,
.input-grid select{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 18px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.input-grid input:focus,
.input-grid select:focus,
textarea:focus{
    border-color:#5B3DF5;
    box-shadow:0 0 0 4px rgba(91,61,245,.08);
}

textarea{
    width:100%;
    height:150px;
    margin-top:20px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:18px;
    resize:none;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.contact-right h4{
    margin:28px 0 18px;
    font-size:22px;
    color:#111;
}

/*=========================================
            SERVICE TAGS
=========================================*/

.service-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.service-tags button{
    padding:12px 18px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    cursor:pointer;
    transition:.3s;
}

.service-tags button:hover,
.service-tags button.active{
    background:#5B3DF5;
    color:#fff;
    border-color:#5B3DF5;
}

/*=========================================
            FORM BOTTOM
=========================================*/

.form-bottom{
    margin-top:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.submit-btn{
    border:none;
    background:#5B3DF5;
    color:#fff;
    padding:16px 34px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(91,61,245,.25);
}

.email-box{
    text-align:right;
}

.email-box span{
    display:block;
    font-size:14px;
    color:#888;
    margin-bottom:5px;
}

.email-box a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:600;
}

.email-box a:hover{
    color:#5B3DF5;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:1100px){

.contact-container{
    gap:40px;
}

.contact-left h2{
    font-size:48px;
}

}

@media(max-width:991px){

.contact-container{
    grid-template-columns:1fr;
}

.contact-left{
    order:1;
}

.contact-right{
    order:2;
}

.input-grid{
    grid-template-columns:1fr;
}

.form-bottom{
    flex-direction:column;
    align-items:flex-start;
}

.email-box{
    text-align:left;
}

}

@media(max-width:768px){

.contact-section{
    padding:60px 20px;
}

.contact-right{
    padding:25px;
}

.contact-left h2{
    font-size:36px;
}

.contact-list li{
    font-size:15px;
}

.founder-info h3{
    font-size:20px;
}

.call-btn{
    font-size:16px;
}

.submit-btn{
    width:100%;
}

}


/*=========================================
        FEATURED CASE STUDIES
=========================================*/

.case-studies{
    padding:120px 0;
    background:#f7f7f7;
}

.case-container{
    width:92%;
    max-width:1500px;
    margin:auto;
}

/*==========================
        Header
==========================*/

.case-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:60px;
    gap:40px;
}

.case-title span{
    display:inline-block;
    font-size:14px;
    color:#666;
    letter-spacing:2px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.case-title h2{
    font-size:68px;
    line-height:1;
    font-weight:700;
    color:#111;
    letter-spacing:-3px;
}

.case-all-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 32px;
    background:#5B3DF5;
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    transition:.35s;
}

.case-all-btn:hover{
    transform:translateY(-4px);
}

/*==========================
      Featured Card
==========================*/

.featured-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    display:grid;
    grid-template-columns:42% 58%;
    margin-bottom:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.06);
}

.featured-card.reverse{
    grid-template-columns:58% 42%;
}

.featured-content{
    padding:55px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.featured-content small{
    font-size:14px;
    color:#777;
    text-transform:uppercase;
    letter-spacing:1px;
}

.featured-content h3{
    font-size:48px;
    margin:18px 0;
}

.featured-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.stats{
    display:flex;
    gap:50px;
    margin-bottom:35px;
}

.stats strong{
    display:block;
    font-size:42px;
    color:#ff6235;
}

.stats span{
    color:#777;
    font-size:14px;
    text-transform:uppercase;
}

.read-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#111;
    font-weight:600;
}

.featured-image{
    overflow:hidden;
}

.featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.featured-card:hover img{
    transform:scale(1.05);
}

/*==========================
        Small Cards
==========================*/

.case-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-bottom:35px;
}

.case-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    transition:.35s;
}

.case-card:hover{
    transform:translateY(-8px);
}

.case-card img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:.5s;
}

.case-card:hover img{
    transform:scale(1.05);
}

.case-info{
    padding:28px;
}

.case-info small{
    color:#777;
    text-transform:uppercase;
    font-size:13px;
}

.case-info h3{
    font-size:34px;
    margin:12px 0 18px;
}

.case-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.case-footer strong{
    display:block;
    font-size:32px;
    color:#ff6235;
}

.case-footer span{
    font-size:13px;
    color:#777;
    text-transform:uppercase;
}

.case-footer a{
    color:#111;
    text-decoration:none;
    font-weight:600;
}

/*==========================
      Responsive
==========================*/

@media(max-width:1200px){

.case-title h2{
    font-size:54px;
}

}

@media(max-width:991px){

.case-header{
    flex-direction:column;
    align-items:flex-start;
}

.featured-card,
.featured-card.reverse{
    grid-template-columns:1fr;
}

.case-grid{
    grid-template-columns:1fr;
}

.featured-image{
    height:350px;
}

}

@media(max-width:768px){

.case-studies{
    padding:80px 20px;
}

.case-title h2{
    font-size:38px;
    letter-spacing:-1px;
}

.featured-content{
    padding:30px;
}

.featured-content h3{
    font-size:34px;
}

.featured-content p{
    font-size:16px;
}

.stats{
    gap:30px;
}

.stats strong{
    font-size:30px;
}

.case-card img{
    height:260px;
}

.case-info h3{
    font-size:26px;
}

.case-all-btn{
    width:100%;
    justify-content:center;
}

}

/*=========================================
            FOOTER
=========================================*/

.footer{
    background:#0b0b0b;
    color:#fff;
    padding:90px 0 60px;
    overflow:hidden;
}

.footer-container{
    width:90%;
    max-width:1500px;
    margin:auto;
    display:grid;
    grid-template-columns:380px 1fr;
    gap:90px;
}

/*==========================
        LEFT
==========================*/

.footer-logo{
    font-size:48px;
    font-weight:800;
    color:#fff;
    text-decoration:none;
    display:inline-block;
    margin-bottom:30px;
    letter-spacing:-1px;
}

.footer-left p{
    color:#b6b6b6;
    line-height:1.8;
    font-size:18px;
    margin-bottom:40px;
    max-width:340px;
}

/*==========================
        Company Button
==========================*/

.deck-btn{
    width:260px;
    height:70px;
    background:#efff3c;
    color:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 0 0 28px;
    border-radius:10px;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    transition:.35s;
    margin-bottom:45px;
}

.deck-btn span{
    width:65px;
    height:65px;
    background:#111;
    color:#efff3c;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.deck-btn:hover{
    transform:translateY(-6px);
}

/*==========================
        Social
==========================*/

.social-links{
    display:flex;
    gap:18px;
}

.social-links a{
    width:62px;
    height:62px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    transition:.35s;
}

.social-links a:hover{
    background:#fff;
    color:#111;
    transform:translateY(-5px);
}

/*==========================
        Right
==========================*/

.footer-right{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:50px;
}

.footer-column h3{
    font-size:28px;
    margin-bottom:28px;
    color:#fff;
}

.footer-column a{
    display:block;
    text-decoration:none;
    color:#9f9f9f;
    margin-bottom:18px;
    font-size:18px;
    transition:.3s;
}

.footer-column a:hover{
    color:#fff;
    transform:translateX(8px);
}

.footer-column p{
    color:#777;
    font-size:17px;
    margin-bottom:10px;
}

.contact-column a{
    color:#fff;
    font-weight:600;
}

/*==========================
        Responsive
==========================*/

@media(max-width:1200px){

.footer-container{
    grid-template-columns:1fr;
    gap:60px;
}

.footer-right{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.footer{
    padding:70px 20px;
}

.footer-logo{
    font-size:40px;
}

.footer-left p{
    font-size:16px;
}

.deck-btn{
    width:100%;
    font-size:18px;
    height:60px;
}

.deck-btn span{
    width:60px;
    height:60px;
}

.footer-right{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-column h3{
    font-size:22px;
}

.footer-column a{
    font-size:16px;
}

.social-links a{
    width:55px;
    height:55px;
}

}

/*==========================
        FOOTER
==========================*/

.footer{
    background:#070707;
    padding:100px 0;
    overflow:hidden;
}

.footer-wrap{
    width:90%;
    max-width:1500px;
    margin:auto;

    display:grid;
    grid-template-columns:340px 1fr;
    gap:120px;
}

/*==========================
        LEFT
==========================*/

.footer-logo img{
    width:230px;
    margin-bottom:30px;
}

.footer-text{
    color:#bdbdbd;
    font-size:19px;
    line-height:1.8;
    margin-bottom:45px;
}

/*==========================
      COMPANY BUTTON
==========================*/

.deck-btn{

    width:260px;
    height:64px;

    background:#EFFF3C;

    border-radius:8px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-left:28px;

    text-decoration:none;

    color:#111;

    font-size:24px;

    font-weight:600;

    transition:.4s;

    margin-bottom:50px;

}

.deck-btn:hover{

    transform:translateY(-5px);

}

.icon-box{

    width:64px;

    height:64px;

    background:#181818;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#EFFF3C;

    font-size:28px;

}

/*==========================
      SOCIAL
==========================*/

.footer-social{

    display:flex;

    gap:18px;

}

.footer-social a{

    width:58px;

    height:58px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    font-size:22px;

    transition:.35s;

}

.footer-social a:hover{

    background:#fff;

    color:#111;

    transform:translateY(-4px);

}

/*==========================
      RIGHT GRID
==========================*/

.footer-right{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    column-gap:90px;

    row-gap:70px;

}

/*==========================
      COLUMN
==========================*/

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column h3{

    color:#fff;

    font-size:32px;

    margin-bottom:28px;

    font-weight:700;

}

.footer-column a{

    color:#A6A6A6;

    text-decoration:none;

    font-size:22px;

    margin-bottom:20px;

    transition:.3s;

}

.footer-column a:hover{

    color:#fff;

    transform:translateX(6px);

}

.footer-column p{

    color:#888;

    font-size:20px;

    margin-bottom:12px;

}

.contact-box a{

    color:#fff;

    font-weight:600;

}

.contact-box i{

    color:#25D366;

    margin-right:8px;

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:1200px){

.footer-wrap{

    grid-template-columns:1fr;

    gap:70px;

}

.footer-right{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

    padding:70px 20px;

}

.footer-wrap{

    width:100%;

}

.footer-right{

    grid-template-columns:1fr;

    gap:50px;

}

.footer-column h3{

    font-size:26px;

}

.footer-column a{

    font-size:18px;

}

.footer-text{

    font-size:17px;

}

.deck-btn{

    width:100%;

    font-size:20px;

}

}/*==========================
        FOOTER
==========================*/

.footer{
    background:#070707;
    padding:100px 0;
    overflow:hidden;
}

.footer-wrap{
    width:90%;
    max-width:1500px;
    margin:auto;

    display:grid;
    grid-template-columns:340px 1fr;
    gap:120px;
}

/*==========================
        LEFT
==========================*/

.footer-logo img{
    width:230px;
    margin-bottom:30px;
}

.footer-text{
    color:#bdbdbd;
    font-size:19px;
    line-height:1.8;
    margin-bottom:45px;
}

/*==========================
      COMPANY BUTTON
==========================*/

.deck-btn{

    width:260px;
    height:64px;

    background:#EFFF3C;

    border-radius:8px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-left:28px;

    text-decoration:none;

    color:#111;

    font-size:24px;

    font-weight:600;

    transition:.4s;

    margin-bottom:50px;

}

.deck-btn:hover{

    transform:translateY(-5px);

}

.icon-box{

    width:64px;

    height:64px;

    background:#181818;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#EFFF3C;

    font-size:28px;

}

/*==========================
      SOCIAL
==========================*/

.footer-social{

    display:flex;

    gap:18px;

}

.footer-social a{

    width:58px;

    height:58px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    font-size:22px;

    transition:.35s;

}

.footer-social a:hover{

    background:#fff;

    color:#111;

    transform:translateY(-4px);

}

/*==========================
      RIGHT GRID
==========================*/

.footer-right{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    column-gap:90px;

    row-gap:70px;

}

/*==========================
      COLUMN
==========================*/

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column h3{

    color:#fff;

    font-size:32px;

    margin-bottom:28px;

    font-weight:700;

}

.footer-column a{

    color:#A6A6A6;

    text-decoration:none;

    font-size:22px;

    margin-bottom:20px;

    transition:.3s;

}

.footer-column a:hover{

    color:#fff;

    transform:translateX(6px);

}

.footer-column p{

    color:#888;

    font-size:20px;

    margin-bottom:12px;

}

.contact-box a{

    color:#fff;

    font-weight:600;

}

.contact-box i{

    color:#25D366;

    margin-right:8px;

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:1200px){

.footer-wrap{

    grid-template-columns:1fr;

    gap:70px;

}

.footer-right{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

    padding:70px 20px;

}

.footer-wrap{

    width:100%;

}

.footer-right{

    grid-template-columns:1fr;

    gap:50px;

}

.footer-column h3{

    font-size:26px;

}

.footer-column a{

    font-size:18px;

}

.footer-text{

    font-size:17px;

}

.deck-btn{

    width:100%;

    font-size:20px;

}

}



/* ================= HERO ================= */

.hero{
    width: 100%;
    min-height: 45vh;   /* Hero Height 50% */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 7%;
    gap: 70px;
    background: #fff;
}

.hero-left{
    flex: 1;
}

.hero-right{
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left h1{
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 30px 0;
}

.hero-right p{
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    max-width: 500px;
}

.buttons{
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

/* ================= Responsive ================= */

@media(max-width:991px){

.hero{
    min-height: auto;
    padding: 80px 6%;
    flex-direction: column;
    text-align: center;
}

.hero-right{
    max-width: 100%;
}

.hero-left h1{
    font-size: 3rem;
}

.buttons{
    justify-content: center;
}

}


/*==============================
        VIDEO SECTION
==============================*/

.video-section{

    width:100%;

    position:relative;

    margin-top:-8%;      /* Hero वर 8% overlap */

    z-index:5;

}

.video-container{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.video-box{

    width:80%;

    height:700px;

    border-radius:30px;

    overflow:hidden;

    position:relative;

    box-shadow:0 30px 80px rgba(0,0,0,.15);

}

.video-box video{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.video-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.12);

}

.play-btn{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#111;

    cursor:pointer;

    transition:.4s;

}

.play-btn:hover{

    transform:scale(1.1);

}

@media(max-width:991px){

.video-section{

    margin-top:-4%;

}

.video-box{

    width:92%;

    height:420px;

}

}

/*==============================
        VIDEO SECTION
==============================*/

.video-section{
    width:100%;
    position:relative;
    margin-top:-8%;
    z-index:5;
}

.video-container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.video-box{
    width:95%;              /* 80% → 95% */
    max-width:1700px;       /* Large Screen */
    height:750px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.about-model{

    width:100%;
    height:650px;

    border-radius:30px;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#f8f8f8;

}

.about-model model-viewer{

    width:100%;

    height:100%;

    --poster-color: transparent;

}
.hero{
    position: relative;
    z-index: 2;
    padding-bottom: 140px;   /* वाढव */
}



/*==============================
      CENTER BUTTON
==============================*/

.work-btn-wrapper{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:70px 0 20px;

}

.work-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:260px;

    height:75px;

    background:#111;

    color:#fff;

    text-decoration:none;

    border-radius:60px;

    font-size:22px;

    font-weight:600;

    transition:.4s ease;

}

.work-btn i{

    font-size:22px;

    transition:.4s;

}

.work-btn:hover{

    background:#5B3DF5;

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(91,61,245,.3);

}

.work-btn:hover i{

    transform:translateX(5px);

}