/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit',sans-serif;
    background:#050816;
    color:white;
    overflow-x:hidden;
    position:relative;
}

/* =========================
   BACKGROUND GLOW
========================= */

.bg-glow{
    position:fixed;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(140px);
    z-index:-1;
    opacity:0.25;
}

.glow1{
    background:#ff7300;
    top:-100px;
    left:-100px;
}

.glow2{
    background:#00b7ff;
    bottom:-100px;
    right:-100px;
}

/* =========================
   LOADER
========================= */

#loader{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #050816;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content{
    text-align: center;
}

.loader-content img{
    width: 140px;
    animation: pulseLogo 2s infinite;
}

.loader-content p{
    margin-top: 15px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    opacity: .85;
}

@keyframes pulseLogo{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.08);
    }

    100%{
        transform: scale(1);
    }

}

/* =========================
   NAVBAR
========================= */

.navbar{
    width:100%;
    height:88px;

    position:fixed;
    top:0;
    left:0;

    padding:0 7%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    z-index:99999;

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(20px);

    border-bottom:none;
}

.logo img{
    width:180px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:40px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:15px;
    position:relative;
    transition:0.4s;
}

.nav-links a::before{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-8px;

    background:linear-gradient(
    to right,
    #ff7300,
    #00b7ff,
    #00c853
    );

    transition:0.5s;
}

.nav-links a:hover::before{
    width:100%;
}

.nav-links a:hover{
    color:#ff7300;
}

/* =========================
   NAV BUTTONS
========================= */

.nav-buttons{
    display:flex;
    gap:35px;
    margin-left:-150px;
}

.call-btn,
.book-btn,
.primary-btn,
.secondary-btn{
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.5s;
}

.call-btn,
.primary-btn{
    background:linear-gradient(
    135deg,
    #ff7300,
    #ff9d00
    );

    color:white;

    box-shadow:
    0 0 20px rgba(255,115,0,0.35);
}

.book-btn,
.secondary-btn{
    border:1px solid rgba(255,255,255,0.18);
    color:white;
    background:rgba(49, 104, 244, 0.927);
    backdrop-filter:blur(10px);
}

.call-btn:hover,
.book-btn:hover,
.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-5px);
    box-shadow:
    0 0 30px rgba(255,115,0,0.4);
}
/* HEART BEAT ANIMATION */

.call-btn,
.book-btn{

    animation:heartBeat 2s infinite;
}

/* KEYFRAMES */

@keyframes heartBeat{

    0%{
        transform:scale(1);
    }

    14%{
        transform:scale(1.08);
    }

    28%{
        transform:scale(1);
    }

    42%{
        transform:scale(1.08);
    }

    70%{
        transform:scale(1);
    }

    100%{
        transform:scale(1);
    }
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:150px 8% 100px;
    position:relative;
}

.hero-content{
    max-width:1000px;
}

.hero-tag{
    color:#ff7300;
    letter-spacing:5px;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:5rem;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.hero h1 span{
    color:#ff7300;
}

.hero-description{
    max-width:750px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    color:#cfcfcf;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
}
/* =========================
   HERO NEW LAYOUT
========================= */

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    padding:160px 8% 100px;

    overflow:hidden;
}

/* =========================
   LEFT STACK CARDS
========================= */

.hero-cards{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    height:550px;
}

/* STACK */

.service-stack{

    position:relative;

    width:380px;
    height:420px;
}

/* CARD */

.stack-card{

    position:absolute;

    width:100%;
    height:220px;

    border-radius:35px;

    padding:40px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 0 30px rgba(255,115,0,0.12);

    transition:1s ease;

    display:flex;

    flex-direction:column;

    justify-content:center;

    overflow:hidden;
}

/* ICON */

.stack-card i{

    font-size:45px;

    color:#ff7300;

    margin-bottom:20px;
}

/* TITLE */

.stack-card h3{

    font-size:28px;

    margin-bottom:12px;
}

/* TEXT */

.stack-card p{

    color:#d6d6d6;

    line-height:1.7;
}

/* CARD POSITIONS */

.card1{

    z-index:4;

    transform:
    translateY(0)
    scale(1);

    opacity:1;
}

.card2{

    z-index:3;

    transform:
    translateY(35px)
    scale(0.94);

    opacity:0.85;
}

.card3{

    z-index:2;

    transform:
    translateY(70px)
    scale(0.88);

    opacity:0.6;
}

.card4{

    z-index:1;

    transform:
    translateY(105px)
    scale(0.82);

    opacity:0.4;
}

/* PREMIUM GLOW */

.stack-card::before{

    content:'';

    position:absolute;

    inset:0;

    background:linear-gradient(
    135deg,
    rgba(255,115,0,0.15),
    transparent,
    rgba(0,183,255,0.05)
    );

    pointer-events:none;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{

    max-width:650px;
}

.hero h1{

    font-size:5rem;

    line-height:1.1;

    margin-bottom:25px;
}

.hero h1 span{

    color:#ff7300;
}

.hero-description{

    font-size:18px;

    line-height:1.9;

    color:#d0d0d0;

    margin-bottom:40px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;
    }

    .hero-cards{

        order:2;
    }

    .hero-content{

        order:1;

        margin:auto;
    }

    .hero-buttons{

        justify-content:center;
    }
}
/* =========================
   STACK FLIP ANIMATION
========================= */

.stack-card{

    position:absolute;

    width:100%;
    height:220px;

    border-radius:35px;

    padding:40px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 0 30px rgba(255,115,0,0.12);

    transition:
    transform 1.4s cubic-bezier(0.22,1,0.36,1),
    opacity 1.2s ease,
    z-index 1s;

    display:flex;

    flex-direction:column;

    justify-content:center;

    overflow:hidden;

    transform-style:preserve-3d;

    backface-visibility:hidden;
}
/* LIGHT SWEEP */

.stack-card::after{

    content:'';

    position:absolute;

    top:-150%;
    left:-40%;

    width:180%;
    height:180%;

    background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
    );

    transform:rotate(25deg);

    transition:1.5s;
}

/* LIGHT MOVE */

.stack-card:hover::after{

    top:120%;
    left:100%;
}
/* FRONT */

.card1{

    z-index:4;

    opacity:1;

    transform:
    perspective(1400px)
    rotateX(0deg)
    translateY(0)
    scale(1);
}

/* SECOND */

.card2{

    z-index:3;

    opacity:0.85;

    transform:
    perspective(1400px)
    rotateX(-10deg)
    translateY(35px)
    scale(0.94);
}

/* THIRD */

.card3{

    z-index:2;

    opacity:0.6;

    transform:
    perspective(1400px)
    rotateX(-18deg)
    translateY(70px)
    scale(0.88);
}

/* LAST */

.card4{

    z-index:1;

    opacity:0.35;

    transform:
    perspective(1400px)
    rotateX(-28deg)
    translateY(105px)
    scale(0.82);
}
/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:3rem;
}

/* =========================
   STATS CARD
========================= */
.stats{

    padding:100px 8%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;
}

.stat-card{

    padding:50px;

    border-radius:30px;

    width:320px;

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.08);

    text-align:center;

    transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border 0.5s ease;

    position:relative;

    overflow:hidden;
}

/* GLOW EFFECT */

.stat-card::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    background:radial-gradient(
    rgba(255,115,0,0.25),
    transparent 70%
    );

    top:-120px;
    left:-120px;

    transition:0.6s;
}

/* HOVER */

.stat-card:hover{

    transform:translateY(-8px);

    border:1px solid rgba(255,115,0,0.35);

    box-shadow:
    0 0 35px rgba(255,115,0,0.16),
    0 0 70px rgba(255,115,0,0.06);
}
/* GLOW MOVE */

.stat-card:hover::before{

    top:-80px;
    left:40%;
}

/* NUMBER */

.stat-card h2{

    font-family:'Orbitron',sans-serif;

    font-size:4rem;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:10px;

    background:linear-gradient(
    135deg,
    #ffffff,
    #eaf7ff,
    #ffffff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    -webkit-text-stroke:1.5px rgba(255,115,0,0.85);

    text-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 25px rgba(180,220,255,0.18);

    transition:0.5s;
}
/* NUMBER HOVER */

.stat-card:hover h2{

    transform:scale(1.08);

    text-shadow:
    0 0 20px rgba(255,115,0,0.55);
}
.counter-box{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:2px;
}

.plus{

    font-family:'Orbitron',sans-serif;

    font-size:3rem;

    font-weight:700;

    line-height:1;

    color:#ff7300;

    margin-top:0;

    text-shadow:
    0 0 12px rgba(255,115,0,0.45);
}
/* =========================
   SERVICES
========================= */

.services{
    padding:100px 8%;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-card{
    padding:45px;
    border-radius:30px;

    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    transition:0.5s;
}

.service-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 0 40px rgba(255,115,0,0.15);
}

.service-card i{
    font-size:40px;
    color:#ff7300;
    margin-bottom:25px;
}

.service-card h3{
    font-size:25px;
    margin-bottom:15px;
}

.service-card p{
    color:#c8c8c8;
    line-height:1.7;
}
/* =========================
   SERVICE CARD 3D FLIP
========================= */

.service-card{

    position:relative;

    transform-style:preserve-3d;

    transform-origin:bottom;

    transition:
    transform 0.8s ease,
    box-shadow 0.5s ease;

    cursor:pointer;

    overflow:hidden;
}

/* HOVER FLIP EFFECT */

.service-card:hover{

    transform:
    perspective(1200px)
    rotateX(-12deg)
    translateY(-15px);

    box-shadow:
    0 25px 50px rgba(255,115,0,0.22),
    0 0 40px rgba(255,115,0,0.15);
}

/* GLOW LIGHT */

.service-card::before{

    content:'';

    position:absolute;

    top:-120%;
    left:-40%;

    width:180%;
    height:180%;

    background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.10),
    transparent
    );

    transform:rotate(25deg);

    transition:0.8s;

    pointer-events:none;
}

/* LIGHT MOVE */

.service-card:hover::before{

    top:120%;
    left:100%;
}

/* ICON ANIMATION */

.service-card i{

    transition:0.5s ease;
}

.service-card:hover i{

    transform:
    scale(1.15)
    rotate(-8deg);

    color:#ffaa33;

    text-shadow:
    0 0 20px rgba(255,170,51,0.7);
}

/* TITLE */

.service-card h3{

    transition:0.4s ease;
}

.service-card:hover h3{

    transform:translateY(-3px);

    color:#ffb347;
}

/* SERVICE CARD */

.service-card{

    position:relative;

    transform-origin:bottom;

    transition:0.5s ease;
}

/* ONLY ONE TIME FLIP */

.service-card:hover{

    animation:bottomFlip 1.5s ease 1;
}

/* BOTTOM TO TOP FLIP */

@keyframes bottomFlip{

    0%{
        transform:perspective(1000px) rotateX(0deg);
    }

    50%{
        transform:perspective(1000px) rotateX(-20deg);
    }

    100%{
        transform:perspective(1000px) rotateX(0deg);
    }
}
/* =========================
   SERVICES SHOWCASE IMAGE
========================= */

.services-showcase{

    width:100%;

    display:flex;
    justify-content:center;

    margin-bottom:70px;
}

.services-image{

    width:100%;
    max-width:800px;

    position:relative;

    border-radius:35px;

    overflow:hidden;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 0 40px rgba(255,115,0,0.12),
    0 0 80px rgba(0,183,255,0.05);

    transition:0.6s ease;
}

/* PREMIUM HOVER */

.services-image:hover{

    transform:
    translateY(-10px)
    scale(1.01);

    box-shadow:
    0 0 60px rgba(255,115,0,0.22),
    0 0 100px rgba(0,183,255,0.10);
}

/* IMAGE */

.services-image img{

    width:100%;

    display:block;

    object-fit:cover;

    transition:1s ease;
}

/* IMAGE ANIMATION */

.services-image:hover img{

    transform:scale(1.03);
}

/* ORANGE GLOW */

.services-image::before{

    content:'';

    position:absolute;

    inset:0;

    background:linear-gradient(
    135deg,
    rgba(255,115,0,0.12),
    rgba(255,115,0,0.02),
    rgba(0,183,255,0.04)
    );

    z-index:2;

    pointer-events:none;
}

/* FLOAT ANIMATION */

.services-image{

    animation:servicesFloat 5s ease-in-out infinite;
}

@keyframes servicesFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* =========================
   ABOUT
========================= */

.about{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:50%;
    border-radius:30px;
}

.about-content h2{
    font-size:3rem;
    margin-bottom:25px;
}

.about-content p{
    line-height:1.8;
    color:#cfcfcf;
    margin-bottom:35px;
}
/* =========================
   ABOUT IMAGE ANIMATION
========================= */

.about-image{
    overflow:hidden;
    position:relative;
}

.about-image img{

    width:70%;
    border-radius:30px;

    transform:
    translateX(180px)
    scale(0.92);

    opacity:0;

    transition:
    transform 2.2s ease,
    opacity 2.2s ease,
    filter 2s ease;

    filter:
    blur(8px)
    brightness(0.7);
}

/* ACTIVE */

.about-image.active img{

    transform:
    translateX(0)
    scale(1);

    opacity:1;

    filter:
    blur(0px)
    brightness(1);
}

/* =========================
   WHY US
========================= */

.why-us{
    padding:100px 8%;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.why-card{
    padding:40px;
    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    transition:0.5s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card h3{
    margin-bottom:15px;
    color:#ff7300;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    padding:100px 8%;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    padding:40px;
    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);
}

.testimonial-card p{
    line-height:1.8;
    color:#ddd;
    margin-bottom:20px;
}

/* =========================
   FAQ
========================= */

.faq{
    padding:100px 8%;
}

.faq-item{
    margin-bottom:20px;
}

.faq-question{
    width:100%;
    padding:22px;

    background:#101828;

    border:none;

    color:white;

    font-size:17px;

    text-align:left;

    cursor:pointer;

    border-radius:15px;
}

.faq-answer{
    display:none;

    padding:20px;

    background:#151f31;

    border-radius:15px;

    margin-top:10px;

    color:#cfcfcf;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    padding:120px 8%;
}

.contact-box{
    text-align:center;

    padding:80px;

    border-radius:40px;

    background:linear-gradient(
    135deg,
    rgba(255,115,0,0.12),
    rgba(0,183,255,0.08)
    );

    border:1px solid rgba(255,255,255,0.08);
}

.contact-box h2{
    font-size:3rem;
    margin-bottom:20px;
}

.contact-box p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#d0d0d0;
    margin-bottom:40px;
}

/* =========================
   FOOTER
========================= */

.footer{
    padding:80px 8%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-content h2{
    font-size:2rem;
    margin-bottom:20px;
}

.footer-content p{
    max-width:600px;
    margin:auto;
    line-height:1.8;
    color:#cfcfcf;
}

.footer-socials{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:18px;
}

.footer-socials a{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    color:white;

    background:rgba(255,255,255,0.05);

    transition:0.5s;
}

.footer-socials a:hover{
    background:#ff7300;
    transform:translateY(-5px);
}

/* =========================
   MENU BTN
========================= */

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}
.menu-btn{
display:none;
}

@media(max-width:992px){

.menu-btn{
display:block;
cursor:pointer;
font-size:28px;
color:#fff;
background:none;
border:none;
z-index:10001;
}

.nav-links{

position:fixed;

top:80px;
right:-100%;

width:100%;
height:calc(100vh - 80px);

background:#07111d;

display:flex;

flex-direction:column;

align-items:center;

justify-content:flex-start;

padding-top:60px;

gap:30px;

transition:.4s;

}

.nav-links.active{

right:0;

}

body.menu-open{

overflow:hidden;

}

}
/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero h1{
        font-size:3.5rem;
    }

    .about{
        grid-template-columns:1fr;
    }

    .nav-links{
        position:absolute;

        top:100%;
        right:-100%;

        flex-direction:column;

        width:280px;

        background:#09111f;

        padding:40px;

        transition:0.5s;
    }

    .nav-links.active{
        right:0;
    }

    .menu-btn{
        display:block;
    }

    .nav-buttons{
        display:none;
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:2.8rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .section-title h2,
    .about-content h2,
    .contact-box h2{
        font-size:2.2rem;
    }

    .contact-box{
        padding:50px 25px;
    }
}
/* ===============================
   FLOATING TOP BAR
=============================== */

.top-floating-bar{

    width:100%;

    height:65px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(18px);

    position:fixed;

    top:88px;
    left:0;

    z-index:9999;

    border-top:none;
    border-bottom:1px solid rgba(255,255,255,0.08);
}
/* FLAG */

.floating-flag{

    display:flex;
    align-items:center;
    gap:10px;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 0 18px rgba(255,115,0,0.12);
}

.floating-flag img{

    width:22px;
    height:22px;

    border-radius:50%;
}

.floating-flag span{

    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

/* SOCIALS */

.floating-social-icons{

    display:flex;
    align-items:center;
    gap:14px;
}

.floating-social{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    color:white;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.10);

    transition:0.5s;

    backdrop-filter:blur(10px);
}

/* HOVERS */

.linkedin:hover{
    background:#0077b5;
    transform:translateY(-5px) rotate(360deg);
}

.twitter:hover{
    background:#000;
    transform:translateY(-5px) rotate(360deg);
}

.instagram:hover{
    background:linear-gradient(
    45deg,
    #f9ce34,
    #ee2a7b,
    #6228d7
    );
    transform:translateY(-5px) rotate(360deg);
}

.youtube:hover{
    background:#ff0000;
    transform:translateY(-5px) rotate(360deg);
}

.facebook:hover{
    background:#1877f2;
    transform:translateY(-5px) rotate(360deg);
}
/* MOBILE */

@media(max-width:768px){

    .top-floating-bar{
        padding:10px 4%;
    }

    .social{
        width:38px;
        height:38px;
        font-size:14px;
    }

    .floating-flag{
        padding:7px 12px;
    }

    .floating-flag img{
        width:20px;
        height:20px;
    }

}
/* =========================
   FLOATING BACKGROUND LOGO
========================= */

.floating-bg-logo{

    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    z-index:-2;

    pointer-events:none;

    opacity:0.12;

    animation:
    bgFloat 8s ease-in-out infinite,
    bgRotate 25s linear infinite;
}

/* IMAGE */

.floating-bg-logo img{

    width:700px;

    filter:
    drop-shadow(0 0 30px rgba(255,115,0,0.18))
    drop-shadow(0 0 80px rgba(255,115,0,0.08));
}

/* FLOAT */

@keyframes bgFloat{

    0%{
        transform:
        translate(-50%,-50%)
        translateY(0px);
    }

    50%{
        transform:
        translate(-50%,-50%)
        translateY(-25px);
    }

    100%{
        transform:
        translate(-50%,-50%)
        translateY(0px);
    }
}

/* ROTATE */

@keyframes bgRotate{

    0%{
        rotate:0deg;
    }

    100%{
        rotate:360deg;
    }
}

/* MOBILE */

@media(max-width:768px){

    .floating-bg-logo img{

        width:350px;
    }
}
/* =========================
   INNER HERO
========================= */

.inner-hero{

    height:70vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.8)
    ),
    url('../media/about-office.jpg');

    background-size:cover;
    background-position:center;
}

.inner-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:
    radial-gradient(
    circle at center,
    rgba(255,115,0,0.15),
    transparent 70%
    );
}

.inner-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.page-tag{

    color:#ff7300;

    letter-spacing:4px;

    margin-bottom:20px;
}

.inner-content h1{

    font-size:5rem;

    margin-bottom:25px;
}

.inner-content p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    color:#d8d8d8;
}

/* LEFT SLIDE */

.slide-left{

    animation:leftSlide 1.3s ease;
}

@keyframes leftSlide{

    0%{
        opacity:0;
        transform:translateX(-120px);
    }

    100%{
        opacity:1;
        transform:translateX(0);
    }
}

/* RIGHT SLIDE */

.slide-right{

    animation:rightSlide 1.5s ease;
}

@keyframes rightSlide{

    0%{
        opacity:0;
        transform:translateX(120px);
    }

    100%{
        opacity:1;
        transform:translateX(0);
    }
}

/* ABOUT PAGE */

.about-story{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

.story-right img{

    width:100%;

    border-radius:30px;
}


/* VISION */

.vision-section{

    padding:100px 8%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.vision-card{

    padding:50px;

    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    text-align:center;

    transition:0.5s;
}

.vision-card:hover{

    transform:translateY(-10px);
}

.vision-card i{

    font-size:45px;

    color:#ff7300;

    margin-bottom:20px;
}

/* TEAM */

.team-section{

    padding:100px 8%;
}

.team-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.team-card{

    background:rgba(255,255,255,0.04);

    border-radius:30px;

    overflow:hidden;

    text-align:center;

    transition:0.5s;
}

.team-card:hover{

    transform:translateY(-10px);
}

.team-card img{

    width:100%;

    height:350px;

    object-fit:cover;
}

.team-card h3{

    margin-top:20px;
}

/* CONTACT PAGE */

.contact-page{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;
}

.contact-form-box{

    padding:50px;

    border-radius:30px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);
}

.contact-form-box form{

    display:flex;

    flex-direction:column;

    gap:20px;

    margin-top:30px;
}

.contact-form-box input,
.contact-form-box textarea{

    width:100%;

    padding:18px;

    border:none;

    outline:none;

    border-radius:15px;

    background:#101828;

    color:white;
}

.contact-form-box textarea{

    height:150px;

    resize:none;
}

.contact-socials{

    margin-top:30px;

    display:flex;

    gap:15px;
}

.contact-socials a{

    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,0.05);

    color:white;

    text-decoration:none;

    transition:0.5s;
}

.contact-socials a:hover{

    background:#ff7300;

    transform:translateY(-5px);
}
.contact-form-box button{
    
    width: 100%;
    padding: 16px 25px;
    border: none;
    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #ff6b00,
        #ff9500
    );

    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;

    cursor: pointer;

    transition: all 0.4s ease;

    box-shadow:
    0 10px 25px rgba(255,107,0,0.35),
    0 0 20px rgba(255,149,0,0.25);

}

.contact-form-box button:hover{

    transform: translateY(-4px);

    box-shadow:
    0 15px 35px rgba(255,107,0,0.45),
    0 0 30px rgba(255,149,0,0.45);

    background: linear-gradient(
        135deg,
        #ff7a00,
        #ffb100
    );

}

.contact-form-box button:active{

    transform: scale(0.97);

}
/* =========================
   PROJECTS PAGE
========================= */

.projects-section{

    padding:120px 8%;
}

.projects-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:35px;
}

/* CARD */

.project-card{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:30px;

    overflow:hidden;

    transition:0.6s;

    position:relative;
}

.project-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 0 40px rgba(255,115,0,0.15);
}

/* IMAGE */

.project-image{

    overflow:hidden;
}

.project-image img{

    width:100%;

    height:260px;

    object-fit:fill;

    transition:0.8s;
}

.project-card:hover img{

    transform:scale(1.08);
}
@media(max-width:768px){

    .project-image{

        height:250px;
    }
}

/* CONTENT */

.project-content{

    padding:35px;
}

.project-content h3{

    font-size:28px;

    margin-bottom:15px;
}

.project-content p{

    line-height:1.8;

    color:#cfcfcf;

    margin-bottom:25px;
}

/* TAG */

.project-content span{

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(255,115,0,0.12);

    border:
    1px solid rgba(255,115,0,0.25);

    color:#ff7300;

    font-size:13px;

    letter-spacing:1px;
}

/* HAPPY CLIENTS */

.happy-clients{

    padding:100px 8%;
}

.clients-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.client-box{

    padding:50px 30px;

    text-align:center;

    border-radius:30px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    transition:0.5s;
}

.client-box:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 0 30px rgba(255,115,0,0.12);
}

.client-box h3{

    font-size:4rem;

    margin-bottom:15px;

    background:
    linear-gradient(
    to bottom,
    #ffffff,
    #d8d8d8
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    text-shadow:
    0 0 15px rgba(255,255,255,0.2);
}

.client-box p{

    color:#cfcfcf;

    letter-spacing:1px;
}

/* HERO BG */

.projects-hero{

    background:
    linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.82)
    ),
    url('../media/project-bg.jpg');

    background-size:cover;

    background-position:center;
}
/* =========================
   BOOKING POPUP
========================= */

.booking-popup{

    position:fixed;

    inset:0;

    width:100%;
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999999;

    opacity:0;
    visibility:hidden;

    transition:0.5s ease;
}
.booking-box::-webkit-scrollbar{

    width:6px;
}
.booking-popup{

    overflow-y:auto;

    padding:40px 0;
}
.booking-box::-webkit-scrollbar-thumb{

    background:#ff7300;

    border-radius:20px;
}

/* ACTIVE */

.booking-popup.active{

    opacity:1;
    visibility:visible;
}

/* OVERLAY */

.booking-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,0.75);

    backdrop-filter:blur(10px);
}

/* BOX */

.booking-box{

    position:relative;

    width:92%;
    max-width:1200px;

    min-height:680px;

    display:grid;

    grid-template-columns:1fr 1fr;

    overflow:hidden;

    border-radius:40px;

    background:
    linear-gradient(
    135deg,
    rgba(10,15,30,0.98),
    rgba(5,10,20,0.96)
    );

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 0 80px rgba(255,115,0,0.20);

    transform:scale(0.8);

    transition:0.5s ease;
        transform: translateX(50px);
}
.booking-box{

    max-height:95vh;

    overflow-y:auto;
}
.booking-box::-webkit-scrollbar{

    width:6px;
}

.booking-box::-webkit-scrollbar-thumb{

    background:#ff7300;

    border-radius:20px;
}

/* ACTIVE SCALE */

.booking-popup.active .booking-box{

    transform:scale(1);
}

/* LEFT */

.booking-left{

    padding:70px;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    rgba(255,115,0,0.18),
    rgba(0,183,255,0.08)
    );
}
.booking-left{
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical Center */
    align-items: center;     /* Horizontal Center */
    text-align: center;

    height: 100%;
    padding: 40px;
}
/* GLOW */

.booking-left::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(
    rgba(255,115,0,0.25),
    transparent 70%
    );

    top:-200px;
    left:-200px;
}

/* TEXT */

.booking-left h4{

    color:#ff7300;

    letter-spacing:4px;

    margin-bottom:20px;
}

.booking-left h2{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:25px;
}

.booking-left h2 span{

    color:#ff7300;
}

.booking-left p{

    color:#d0d0d0;

    line-height:1.9;

    margin-bottom:40px;
}

/* FEATURES */

.booking-features{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.feature{

    display:flex;
    align-items:center;

    gap:18px;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    transition:0.5s;
}

.feature:hover{

    transform:translateX(10px);

    border:1px solid rgba(255,115,0,0.35);
}

.feature i{

    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ff7300;

    color:white;
}

/* RIGHT */

.booking-right{

    padding:40px;

    display:flex;
    align-items:center;
    justify-content:center;
}
.booking-right{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.booking-right form{
    width: 100%;
    max-width: 450px;
    margin: auto;
}

.booking-right select{

    width: 100%;
    padding: 16px 18px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 14px;

    color: #fff;
    font-size: 15px;
    font-weight: 500;

    outline: none;

    backdrop-filter: blur(15px);

    transition: all 0.4s ease;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23ff7b00' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%23ff7b00' stroke-width='2' fill='none'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 18px center;
}
.booking-right select:hover{

    border-color: rgba(255,123,0,0.6);

    box-shadow:
    0 0 20px rgba(255,123,0,0.15);

}
.booking-right select:focus{

    border-color: #ff7b00;

    box-shadow:
    0 0 25px rgba(255,123,0,0.35);

}
.booking-right select option{

    background: #0d1220;
    color: #ffffff;

    padding: 12px;

}
/* FORM */

.booking-right form{

    width:100%;

    display:flex;

    flex-direction:column;

    gap:22px;
}

/* INPUT */

.input-box input,
.input-box select,
.input-box textarea{

    width:100%;

    padding:20px 22px;

    border:none;
    outline:none;

    border-radius:18px;

    background:rgba(253, 98, 2, 0.05);

    border:1px solid rgba(255,255,255,0.08);

    color:#ffffff;

    font-size:15px;

    transition:0.5s;
}

.input-box textarea{

    height:150px;

    resize:none;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

    border:1px solid rgba(255,115,0,0.45);

    box-shadow:
    0 0 20px rgba(255,115,0,0.15);
}

/* BUTTON */

.booking-submit{

    padding:20px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #ff7300,
    #ff9d00
    );

    color:white;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.5s;
}

.booking-submit:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(255,115,0,0.35);
}

/* CLOSE */

.booking-close{

    position:absolute;

    top:25px;
    right:25px;

    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    color:white;

    cursor:pointer;

    z-index:10;

    transition:0.5s;
}

.booking-close:hover{

    background:#ff7300;

    transform:rotate(180deg);
}

/* MOBILE */

@media(max-width:992px){

    .booking-box{

        grid-template-columns:1fr;

        overflow-y:auto;

        max-height:90vh;
    }

    .booking-left,
    .booking-right{

        padding:40px;
    }

    .booking-left h2{

        font-size:2.8rem;
    }
}
/* SELECT TEXT CLEAR */

.premium-select select{

    color:#ffffff !important;

    font-size:16px;

    font-weight:600;

    letter-spacing:0.5px;
}

/* DROPDOWN OPTIONS */

.premium-select select option{

    background:#0b1220;

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    padding:18px;
}
/* =========================
   BOOKING CLOSE BUTTON
========================= */

.booking-close{

    position:absolute;

    top:20px;
    right:20px;

    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    rgba(255,255,255,0.06);

    border:
    1px solid rgba(255,255,255,0.10);

    color:#ffffff;

    font-size:20px;

    cursor:pointer;

    transition:0.5s ease;

    backdrop-filter:blur(10px);

    z-index:10;
}

/* HOVER */

.booking-close:hover{

    background:#ff7300;

    transform:
    rotate(90deg)
    scale(1.08);

    box-shadow:
    0 0 25px rgba(255,115,0,0.35);
}
.booking-box{

    position:relative;
}
/* =========================
   PREMIUM WHATSAPP FLOAT
========================= */

.whatsapp-float{

    position:fixed;

    right:20px;
    bottom:20px;

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    rgba(255,255,255,0.06);

    backdrop-filter:blur(14px);

    border:
    1px solid rgba(255,255,255,0.10);

    color:#25d366;

    font-size:28px;

    text-decoration:none;

    z-index:99999;

    box-shadow:
    0 0 20px rgba(37,211,102,0.20);

    transition:0.5s ease;

    animation:whatsappFloat 3s ease-in-out infinite;
}

/* HOVER */

.whatsapp-float:hover{

    transform:
    translateY(-6px)
    scale(1.05);

    background:#25d366;

    color:white;

    box-shadow:
    0 0 30px rgba(37,211,102,0.45);
}

/* FLOAT */

@keyframes whatsappFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:768px){

    .whatsapp-float{

        width:46px;
        height:46px;

        font-size:24px;

        right:15px;
        bottom:15px;
    }
}
@media (min-width: 992px){

    .booking-box{

        margin-left:0px;

    }

}
/* =========================
   CONTACT IMAGE ANIMATION
========================= */

.contact-image-left{

    margin-top:50px;

    overflow:hidden;

    position:relative;
}

.contact-image-left img{

    width:100%;

    border-radius:35px;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 0 40px rgba(255,115,0,0.12);

    transform:
    translateX(-250px)
    scale(0.9);

    opacity:0;

    filter:
    blur(8px)
    brightness(0.7);

    transition:
    transform 2.2s cubic-bezier(0.22,1,0.36,1),
    opacity 2s ease,
    filter 2s ease;
}

/* ACTIVE */

.contact-image-left.active img{

    transform:
    translateX(0)
    scale(1);

    opacity:1;

    filter:
    blur(0px)
    brightness(1);
}
/* =========================
   PREMIUM TEAM ROW
========================= */

.premium-team-row{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

/* CARD */

.premium-member{

    position:relative;

    padding:45px 30px;

    border-radius:32px;

    overflow:hidden;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    transition:0.7s ease;

    z-index:1;
}

/* DIFFERENT CARD COLORS */

.editor-card{

    box-shadow:
    0 0 35px rgba(255,0,140,0.10);
}

.developer-card{

    box-shadow:
    0 0 35px rgba(0,183,255,0.10);
}

.marketing-card{

    box-shadow:
    0 0 35px rgba(255,115,0,0.10);
}

.marketing-card-two{

    box-shadow:
    0 0 35px rgba(0,255,170,0.10);
}

/* HOVER */

.premium-member:hover{

    transform:
    translateY(-15px)
    scale(1.02);

    border:
    1px solid rgba(255,115,0,0.25);

    box-shadow:
    0 0 45px rgba(255,115,0,0.18);
}

/* GLOW */

.member-glow{

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(255,115,0,0.18),
    transparent 70%
    );

    top:-60px;
    right:-60px;

    z-index:-1;
}

/* ICON */

.member-icon{

    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:24px;

    margin-bottom:30px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);
}

.member-icon i{

    font-size:32px;

    color:#ff7300;
}

/* TEXT */

.premium-member h3{

    font-size:28px;

    margin-bottom:18px;
}

.premium-member p{

    line-height:1.8;

    color:#cfcfcf;

    margin-bottom:25px;
}

.premium-member span{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(255,115,0,0.10);

    border:
    1px solid rgba(255,115,0,0.20);

    color:#ff9d00;

    font-size:13px;

    letter-spacing:1px;
}
/* =========================
   TEAM MEMBER IMAGE
========================= */

.member-image{

    width:100%;

    height:280px;

    overflow:hidden;

    border-radius:24px;

    margin-bottom:28px;

    position:relative;
}

/* IMAGE */

.member-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:
    transform 1s ease,
    filter 1s ease;
}

/* PREMIUM OVERLAY */

.member-image::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    transparent
    );

    z-index:2;
}

/* HOVER */

.premium-member:hover .member-image img{

    transform:scale(1.08);

    filter:
    brightness(1.08);
}
/* =========================
   TEAM IMAGE POSITIONS
========================= */

/* TEAM 1 */

.team-card:nth-child(1) img{

    object-position:center 40%;
}

/* TEAM 2 */

.team-card:nth-child(2) img{

    object-position:center 30%;
}

/* VIDEO EDITOR */

.premium-member:nth-child(1) img{

    object-position:center 20%;
}

/* SOFTWARE DEVELOPER */

.premium-member:nth-child(2) img{

    object-position:center 10%;
}

/* DIGITAL MARKETER */

.premium-member:nth-child(3) img{

    object-position:center 22%;
}

/* DIGITAL MARKETER 2 */

.premium-member:nth-child(4) img{

    object-position:center 18%;
}
@media(max-width:992px){

    .nav-links{

        position:absolute;

        top:100%;
        right:-100%;

        flex-direction:column;

        width:280px;

        background:#09111f;

        padding:40px;

        transition:0.5s;
    }

    .nav-links.active{

        right:0;
    }

    .menu-btn{

        display:block;
    }

    .nav-buttons{

        display:none;
    }
}
/* ===========================================
   TRINOVATE PREMIUM RESPONSIVE CSS
===========================================*/

img{
    max-width:100%;
    height:auto;
    display:block;
}

body{
    overflow-x:hidden;
}

html,body{
    width:100%;
}

/* ===========================
   TABLET
===========================*/

@media (max-width:992px){

.navbar{
    padding:15px 5%;
    height:80px;
}

.logo img{
    width:150px;
}

.nav-links{
    position:fixed;
    top:80px;
    right:-100%;
    width:100%;
    height:calc(100vh - 80px);
    background:#08111f;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    gap:30px;
    padding-top:60px;
    transition:.5s;
    z-index:999;
}

.nav-links.active{
    right:0;
}

.menu-btn{
    display:block;
    font-size:30px;
}

.nav-buttons{
    display:none;
}

.hero{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
    padding:180px 5% 80px;
}

.hero-content{
    order:1;
    max-width:100%;
}

.hero-cards{
    order:2;
    height:auto;
}

.service-stack{
    width:100%;
    max-width:380px;
    margin:auto;
}

.hero h1{
    font-size:3rem;
}

.hero-description{
    font-size:16px;
}

.hero-buttons{
    justify-content:center;
}

.about{
    grid-template-columns:1fr;
    text-align:center;
}

.about-image{
    display:flex;
    justify-content:center;
}

.about-image img{
    width:80%;
    transform:none!important;
    opacity:1!important;
    filter:none!important;
}

.booking-box{
    grid-template-columns:1fr;
}

.booking-left,
.booking-right{
    padding:40px 25px;
}

.booking-left h2{
    font-size:2.5rem;
}

.contact-page{
    grid-template-columns:1fr;
}

.about-story{
    grid-template-columns:1fr;
}

}


/* ===========================
   MOBILE
===========================*/

@media (max-width:768px){

.top-floating-bar{
    padding:10px 15px;
}

.floating-social{
    width:38px;
    height:38px;
}

.floating-bg-logo img{
    width:280px;
}

.hero{
    padding:170px 20px 70px;
}

.hero h1{
    font-size:2.3rem;
    line-height:1.25;
}

.hero-tag{
    font-size:12px;
    letter-spacing:2px;
}

.hero-description{
    font-size:15px;
    line-height:1.7;
}

.hero-buttons{
    flex-direction:column;
    gap:15px;
}

.primary-btn,
.secondary-btn{
    width:100%;
    text-align:center;
}

.service-stack{
    width:300px;
    height:350px;
}

.stack-card{
    height:180px;
    padding:25px;
}

.stack-card h3{
    font-size:20px;
}

.stack-card i{
    font-size:32px;
}

.stats{
    padding:70px 20px;
}

.stat-card{
    width:100%;
    padding:35px;
}

.services,
.about,
.why-us,
.testimonials,
.contact-section,
.faq{
    padding:70px 20px;
}

.services-grid,
.why-grid,
.testimonial-grid,
.projects-grid,
.clients-grid,
.team-grid{
    grid-template-columns:1fr;
}

.section-title h2,
.about-content h2,
.contact-box h2{
    font-size:2rem;
}

.contact-box{
    padding:40px 20px;
}

.booking-left h2{
    font-size:2rem;
}

.booking-right{
    padding:25px 20px;
}

.booking-close{
    width:40px;
    height:40px;
}

.whatsapp-float{
    width:48px;
    height:48px;
    font-size:24px;
}

.footer{
    padding:60px 20px;
}

.footer-socials{
    flex-wrap:wrap;
}

}


/* ===========================
   SMALL MOBILE
===========================*/

@media (max-width:480px){

.logo img{
    width:130px;
}

.hero{
    padding-top:160px;
}

.hero h1{
    font-size:2rem;
}

.hero-description{
    font-size:14px;
}

.hero-tag{
    letter-spacing:1px;
}

.service-stack{
    width:260px;
}

.stack-card{
    height:170px;
    border-radius:25px;
}

.stack-card h3{
    font-size:18px;
}

.stack-card p{
    font-size:13px;
}

.section-title h2{
    font-size:1.7rem;
}

.contact-box h2{
    font-size:1.8rem;
}

.booking-left h2{
    font-size:1.7rem;
}

.booking-left{
    padding:30px 20px;
}

.booking-right{
    padding:20px 15px;
}

.input-box input,
.input-box textarea,
.input-box select{
    padding:16px;
}

}
/* ===========================
   OFFICE GOOGLE MAP
=========================== */

.office-map{
    margin-top:30px;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
    background:rgba(255,255,255,.04);
    transition:.4s ease;
}

.office-map:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 60px rgba(0,162,255,.25);
}

.office-map iframe{
    display:block;
    width:100%;
    height:280px;
    border:none;
}

/* Mobile */

@media(max-width:768px){

.office-map iframe{
    height:240px;
}

}
.map-btn{
    margin-top:18px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.35s ease;
}

.map-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(255,122,0,.35);
}