/* ===================================
   GROWNEXT - PREMIUM AGENCY CSS
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --black:#000000;
    --dark:#0f0f0f;
    --card:#161616;
    --border:#2a2a2a;
    --white:#ffffff;
    --gray:#b7b7b7;
    --light:#f5f5f5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--black);
    color:var(--white);
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#666;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#fff;
}

/* Background Grid */

body::before{

content:"";

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background-image:

linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),

linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

background-size:60px 60px;

z-index:-2;

}

/* Glow */

body::after{

content:"";

position:fixed;

width:700px;

height:700px;

background:radial-gradient(circle,
rgba(255,255,255,.08),transparent 70%);

top:-200px;

right:-150px;

z-index:-1;

filter:blur(40px);

}

/* Navbar */

header{

position:fixed;

width:100%;

top:0;

left:0;

padding:22px 8%;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(0,0,0,.65);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.08);

z-index:999;

transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;

}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.logo{

font-size:34px;

font-weight:800;

color:#fff;

letter-spacing:2px;

text-decoration:none;

}

nav ul{

display:flex;

list-style:none;

gap:35px;

}

nav ul li a{

color:#bfbfbf;

text-decoration:none;

font-weight:500;

transition:.3s;

position:relative;

}

nav ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:#fff;

transition:.3s;

}

nav ul li a:hover{

color:#fff;

}

nav ul li a:hover::after{

width:100%;

}

.menu-btn,
header nav .mobile-nav-btn {
    display: none;
}

/* Buttons */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 35px;

border-radius:60px;

background:#fff;

color:#000;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(255,255,255,.25);

}

.btn-outline{

background:transparent;

border:2px solid #fff;

color:#fff;

}

.btn-outline:hover{

background:#fff;

color:#000;

}

/* Hero */

.hero{

min-height:auto;

display:flex;

align-items:center;

padding:160px 8% 80px;

position:relative;

}

.hero-content{

max-width:750px;

}

.hero-sub{

font-size:14px;

letter-spacing:5px;

color:#999;

text-transform:uppercase;

margin-bottom:25px;

}

.hero h1{

font-size:78px;

line-height:1.05;

font-weight:800;

margin-bottom:25px;

}

.hero h1 span{

color:#777;

}

.hero p{

font-size:18px;

line-height:2;

color:#b8b8b8;

margin-bottom:40px;

max-width:650px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

/* Stats */

.stats {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 28px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 230px;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.02);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat:hover .stat-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.stat p {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin: 0;
}

@media (min-width: 992px) {
    .hero {
        position: relative;
    }
    .hero .stats {
        position: absolute;
        top: 180px;
        right: 8%;
        margin-top: 0;
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
}

/* Floating Glow */

.hero-glow{

position:absolute;

right:0;

top:50%;

transform:translateY(-50%);

width:650px;

height:650px;

background:radial-gradient(circle,
rgba(255,255,255,.12),
transparent 70%);

filter:blur(70px);

z-index:-1;

}

/* Images */

.hero img{

width:100%;

border-radius:25px;

filter:none;

transition:.5s;

}

.hero img:hover{

transform:scale(1.02);

filter:none;

}

/* Responsive */

@media(max-width:1200px){

.hero h1{

font-size:64px;

}

}

@media(max-width:991px){

header{

padding:20px 5%;

}

.logo{
    font-size:26px;
}

.menu-btn {
    display: block;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    z-index: 10005;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    color: var(--gray);
    transform: scale(1.1);
}

.menu-btn i {
    transition: transform 0.3s ease;
}

.menu-btn.active {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 10005;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.menu-btn.active i {
    transform: rotate(90deg);
}

header .btn {
    display: none;
}

nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 120px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 998;
}

nav.active {
    transform: translateX(0);
}

nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

nav ul li a {
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 8px 0;
}

.mobile-nav-btn {
    display: inline-flex;
    margin-top: 35px;
    width: 100%;
    text-align: center;
}

.hero{

padding:130px 25px 80px;

text-align:center;

}

.hero h1{

font-size:48px;

}

.hero-buttons{

justify-content:center;

}

.stats{

justify-content:center;

gap:35px;

}

.hero-glow{

display:none;

}

}

@media(max-width:576px){

.hero h1{

font-size:38px;

}

.hero p{

font-size:16px;

}

.section-title h2{
    font-size:30px;
}

.btn{

width:100%;

}

nav{
    width:100%;
}

}

/* Reveal Animation */

.reveal{
opacity:0;
transform:translateY(80px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* Cursor Glow */

.cursor-glow{

position:fixed;

width:25px;

height:25px;

background:white;

border-radius:50%;

pointer-events:none;

mix-blend-mode:difference;

transform:translate(-50%,-50%);

transition:.08s linear;

z-index:99999;

}

/* Loader */

.loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#000;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

}

.loader h1{

font-size:60px;

letter-spacing:8px;

color:#fff;

animation:pulse 1s infinite;

}

@keyframes pulse{

50%{

opacity:.4;

}

}

/* ===============================
SECTION
=============================== */

.section{

padding:80px 8%;

}

.container{

max-width:1400px;

margin:auto;

padding:0 5%;

}

.section-title{

margin-bottom:70px;

}

.section-title span{

color:#888;

letter-spacing:3px;

font-size:14px;

}

.section-title h2{

font-size:60px;

margin:20px 0;

font-weight:800;

max-width:800px;

}

.section-title p{

color:#aaa;

max-width:700px;

line-height:2;

}

/* About */

.about-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.about-card{

background:#111;

padding:40px;

border-radius:20px;

border:1px solid #222;

transition:.4s;

}

.about-card:hover{

transform:translateY(-10px);

border-color:#fff;

}

.about-card h3{

margin-bottom:20px;

font-size:24px;

}

.about-card p{

color:#aaa;

line-height:1.8;

}

/* Features */

.features{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.feature-card{

padding:40px;

background:#111;

border:1px solid #222;

border-radius:20px;

transition:.4s;

}

.feature-card:hover{

border-color:#fff;

transform:translateY(-10px);

}

.number{

font-size:55px;

font-weight:800;

color:#444;

margin-bottom:20px;

}

/* Process */

.timeline{
    position: relative;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
    margin-top:60px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.step{
    text-align:center;
    position: relative;
    z-index: 2;
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step:hover {
    transform: translateY(-8px);
    border-color: #fff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.04);
}

.circle{
    position: relative;
    z-index: 2;
    width:80px;
    height:80px;
    border:2px solid white;
    background: #050505;
    color: #fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:24px;
    transition: all 0.3s ease;
}

.step:hover .circle {
    background: #ffffff;
    color: #000000;
    transform: scale(1.05);
}

.step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    transition: color 0.3s ease;
}

.step p {
    font-size: 14px;
    color: #bfbfbf;
    line-height: 1.6;
}

/* Results */

.results{

padding:80px 8%;

background:#111;

}

.result-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

text-align:center;

}

.result{

padding:40px;

}

.result h2{

font-size:60px;

margin-bottom:15px;

}

.result p{

color:#999;

}

/* Responsive */

@media(max-width:991px){

.about-grid,

.features,

.timeline,

.result-grid{

grid-template-columns:1fr;

}

.timeline::before {
    top: 70px;
    bottom: 70px;
    left: 50%;
    right: auto;
    width: 2px;
    height: calc(100% - 140px);
    transform: translateX(-50%);
}

.section-title h2{

font-size:40px;

}

}


/* ===================================================
PORTFOLIO
=================================================== */

.portfolio{

background:#070707;

}

.portfolio-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.portfolio-card{

background:#111;

border:1px solid #222;

border-radius:22px;

overflow:hidden;

transition:.45s;

}

.portfolio-card:hover{

transform:translateY(-12px);

border-color:#fff;

box-shadow:0 25px 60px rgba(255,255,255,.08);

}

.portfolio-image{

position:relative;

overflow:hidden;

aspect-ratio:1/1;

height:auto;

}

.portfolio-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

filter:none;

}

.portfolio-card:hover img{

transform:scale(1.08);

filter:none;

}

.overlay{

position:absolute;

inset:0;

display:flex;

align-items:center;

justify-content:center;

background:rgba(0,0,0,.65);

opacity:0;

transition:.4s;

}

.portfolio-card:hover .overlay{

opacity:1;

}

.overlay a{

padding:14px 30px;

background:#fff;

color:#000;

font-weight:600;

border-radius:50px;

text-decoration:none;

}

.portfolio-content{

padding:30px;

}

.portfolio-content span{

color:#888;

font-size:13px;

letter-spacing:2px;

text-transform:uppercase;

}

.portfolio-content h3{

margin:15px 0;

font-size:28px;

}

.portfolio-content p{

color:#aaa;

line-height:1.8;

margin-bottom:30px;

}

.stats-row{

display:flex;

justify-content:space-between;

padding-top:25px;

border-top:1px solid #222;

}

.stats-row h4{

font-size:24px;

margin-bottom:6px;

}

.stats-row small{

color:#888;

}

@media(max-width:991px){

.portfolio-grid{

grid-template-columns:1fr;

}

}


/* ===========================
Managed Instagram Pages
=========================== */

.instagram-showcase{
background:#0a0a0a;
padding:100px 8%;
}

.instagram-showcase .section-title{
margin-bottom:50px;
}

.instagram-grid{
display:grid;
grid-template-columns:repeat(3, minmax(280px, 450px));
justify-content:center;
gap:36px;
margin-top:50px;
}

.insta-card{
background:#121212;
border:1px solid #242424;
border-radius:24px;
overflow:hidden;
transition:.4s;
}

.insta-card:hover{
transform:translateY(-12px);
border-color:#fff;
box-shadow:0 25px 60px rgba(255,255,255,.1);
}

.insta-cover{
height:240px;
overflow:hidden;
}

.insta-cover img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
filter:none;
}

.insta-card:hover .insta-cover img{
transform:scale(1.08);
filter:none;
}

.profile{
display:flex;
align-items:center;
padding:26px 28px;
gap:18px;
}

.profile img{
width:72px;
height:72px;
border-radius:50%;
border:3px solid #fff;
object-fit:contain;
background:#000;
padding:4px;
}

.profile h3{
font-size:18px;
margin:0;
line-height:1.3;
white-space:nowrap;
}

.profile > div {
min-width:0;
flex:1;
}

.profile span{
display:block;
margin-top:4px;
font-size:14px;
color:#888;
}

.insta-stats{
display:flex;
justify-content:space-around;
padding:22px 20px;
border-top:1px solid #222;
border-bottom:1px solid #222;
}

.insta-stats h4{
font-size:22px;
}

.insta-stats p{
font-size:13px;
color:#888;
}

.service-list{
padding:26px 28px;
list-style:none;
}

.service-list li{

margin-bottom:14px;

color:#bbb;

}

.visit-btn{

display:block;

margin:0 25px 25px;

text-align:center;

padding:15px;

background:#fff;

color:#000;

font-weight:700;

border-radius:50px;

text-decoration:none;

transition:.3s;

}

.visit-btn:hover{

background:#d7d7d7;

}

@media(max-width:1150px){

.instagram-grid{

grid-template-columns:repeat(2, minmax(280px, 450px));

}

}

@media(max-width:991px){

.instagram-grid{

grid-template-columns:1fr;

}

}
/* =====================================================
   REEL SHOWCASE
===================================================== */

.reels{
    background:#050505;
    position:relative;
}

.reels::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.04),
    transparent 40%);
    pointer-events:none;
}

.reel-filter{

    display:flex;
    justify-content:center;
    gap:18px;
    margin:60px 0;
    flex-wrap:wrap;

}

.reel-filter button{

    padding:14px 32px;
    background:#111;
    color:#bbb;
    border:1px solid #2d2d2d;
    border-radius:50px;
    cursor:pointer;
    transition:.35s;
    font-size:15px;
    font-weight:500;

}

.reel-filter button:hover{

    background:#fff;
    color:#000;

}

.reel-filter button.active{

    background:#fff;
    color:#000;
    border-color:#fff;

}

/* Grid */

.reels .container {
    max-width: 1350px;
}

.reel-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;

}

/* Card */

.reel-card{

    background:#111;
    border:1px solid #222;
    border-radius:22px;
    overflow:hidden;
    transition:.45s;
    position:relative;

}

.reel-card:hover{

    transform:translateY(-12px);
    border-color:#fff;
    box-shadow:0 25px 60px rgba(255,255,255,.08);

}

/* Thumbnail */

.reel-thumbnail{
    position:relative;
    aspect-ratio:9 / 16;
    width:100%;
    height:auto;
    overflow:hidden;
    background:transparent;
    border-radius:22px 22px 0 0;
}

.reel-thumbnail video {
    display:none;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:22px 22px 0 0;
}

.reel-thumbnail.playing img,
.reel-thumbnail.playing .play-btn,
.reel-thumbnail.playing::after {
    display:none !important;
}

.reel-thumbnail.playing video {
    display:block;
}

.reel-thumbnail img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
    filter:none;

}

.reel-card:hover img{

    transform:scale(1.08);
    filter:none;

}

/* Overlay */

.reel-thumbnail::after{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.35),
    transparent 45%);
    transition:.4s;

}

/* Play Button */

.play-btn{

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:85px;
    height:85px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    border:2px solid rgba(255,255,255,.35);
    transition:.35s;
    z-index:10;

}

.reel-card:hover .play-btn{

    background:#fff;
    color:#000;
    transform:translate(-50%,-50%) scale(1.1);

}

/* Info */

.reel-info{

    padding:28px;

}

.reel-info span{

    color:#8f8f8f;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;

}

.reel-info h3{

    margin:15px 0;
    font-size:28px;
    line-height:1.3;

}

.reel-info p{

    color:#999;
    line-height:1.8;
    margin-bottom:25px;

}

/* Stats */

.reel-stats{

    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #222;
    padding-top:20px;

}

.reel-stats span{

    color:#d5d5d5;
    font-size:14px;
    letter-spacing:0;
    text-transform:none;

}

.reel-stats i{

    margin-right:8px;

}

/* Trending */

.trending{

    position:absolute;
    top:20px;
    left:20px;
    padding:8px 18px;
    border-radius:30px;
    background:#fff;
    color:#000;
    font-size:12px;
    font-weight:700;
    z-index:10;

}

/* Watch Button */

.watch-btn{

    margin-top:25px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    text-decoration:none;
    transition:.3s;

}

.watch-btn:hover{

    color:#999;

}

.watch-btn i{

    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid #444;
    display:flex;
    justify-content:center;
    align-items:center;

}

/* Hover Glow */

.reel-card::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(circle,
    rgba(255,255,255,.08),
    transparent 70%);
    top:-180px;
    right:-150px;
    opacity:0;
    transition:.5s;

}

.reel-card:hover::before{

    opacity:1;

}

/* Responsive */

@media(max-width:1199px){

.reel-grid{

grid-template-columns:repeat(3,1fr);
gap:18px;

}

}

@media(max-width:880px){

.reel-grid{

grid-template-columns:repeat(2,1fr);
gap:15px;

}

}

@media(max-width:540px){

.reel-grid{

grid-template-columns:1fr;
gap:15px;

}

.reel-thumbnail{

aspect-ratio:9 / 16;
height:auto;

}

.reel-info h3{

font-size:22px;

}

.reel-filter{

gap:10px;

}

.reel-filter button{

padding:12px 20px;

}

.play-btn{

width:70px;
height:70px;
font-size:25px;

}

}

/* ============================
VIDEO POPUP
============================= */

.video-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.video-popup.show{
    display:flex;
    animation: fadeInPopup 0.35s ease forwards;
}

@keyframes fadeInPopup {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-container{
    position:relative;
    width:min(380px, 86vw);
    aspect-ratio:9 / 16;
    max-height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
    animation:popup .35s;
    background:transparent;
    border-radius:24px;
    padding:0;
    border:2px solid rgba(255,255,255,.2);
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
    overflow:hidden;
}

.video-container video{
    width:100%;
    height:100%;
    max-height:85vh;
    object-fit:cover;
    border-radius:22px;
    background:transparent;
}

.close-video{
    position:fixed;
    top:25px;
    right:25px;
    width:40px;
    height:40px;
    background:rgba(0,0,0,.6);
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    line-height:1;
    cursor:pointer;
    z-index:9999999;
    transition:background .3s, transform .3s;
}

.close-video:hover{
    background:rgba(255,255,255,.2);
    transform:scale(1.1);
}


@keyframes popup{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

@media(max-width:768px){

.video-container{
    width:88vw;
}

}


/* ==========================================
CASE STUDIES
========================================== */

.case-studies{
    background:#080808;
}

.case-study-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    margin-top:60px;
}

.case-card{
    display:grid;
    grid-template-columns:420px 1fr;
    background:#111;
    border:1px solid #222;
    border-radius:22px;
    overflow:hidden;
    transition:.4s;
}

.case-card.full-image-case {
    display: block;
}

.case-card:hover{
    transform:translateY(-8px);
    border-color:#fff;
    box-shadow:0 25px 60px rgba(255,255,255,.08);
}

.case-image{
    overflow:hidden;
}

.case-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
    filter:none;
    will-change:transform;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    transform:translate3d(0,0,0);
}

.case-card.full-image-case .case-image img {
    height: auto;
    object-fit: contain;
    display: block;
}

.case-card:hover img{
    transform:scale(1.05);
    filter:none;
}

.case-content{
    padding:45px;
}

.case-content span{
    color:#888;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
}

.case-content h3{
    margin:18px 0;
    font-size:34px;
}

.case-content p{
    color:#b8b8b8;
    line-height:1.9;
    margin-bottom:35px;
}

.case-metrics{
    display:flex;
    gap:45px;
    border-top:1px solid #222;
    padding-top:25px;
}

.case-metrics h4{
    font-size:32px;
}

.case-metrics small{
    color:#888;
}

@media(max-width:991px){

.case-card{
    grid-template-columns:1fr;
}

.case-image{
    height:320px;
}

.case-card.full-image-case .case-image{
    height:auto;
}

.case-content{
    padding:30px;
}

.case-metrics{
    flex-wrap:wrap;
    gap:25px;
}

}



/* =====================================
PRICING
===================================== */

.pricing{
background:#050505;
}

.pricing-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:70px;

}

.price-card{

position:relative;
background:#111;
border:1px solid #222;
border-radius:25px;
padding:45px;
transition:.4s;

}

.price-card:hover{

transform:translateY(-10px);
border-color:#fff;
box-shadow:0 20px 50px rgba(255,255,255,.08);

}

.featured{

border:2px solid white;

}

.popular{

position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:white;
color:black;
padding:10px 28px;
border-radius:30px;
font-size:13px;
font-weight:700;

}

.price-header{

text-align:center;
margin-bottom:35px;

}

.price-header h3{

font-size:22px;
letter-spacing:3px;

}

.price-header h1{

font-size:65px;
margin:15px 0;

}

.price-header span{

color:#999;

}

.price-card ul{

list-style:none;
margin-bottom:30px;

}

.price-card ul li{

padding:12px 0;
border-bottom:1px solid #222;
color:#ddd;

}

.bonus{

background:#181818;
padding:20px;
border-radius:15px;
margin-bottom:30px;
border:1px solid #2d2d2d;

}

.bonus h4{

margin-bottom:10px;

}

.bonus p{

color:#bbb;
line-height:1.8;

}

.price-btn{

display:block;
text-align:center;
padding:16px;
background:white;
color:black;
border-radius:50px;
font-weight:700;
text-decoration:none;
transition:.3s;

}

.price-btn:hover{

background:#d7d7d7;

}

@media(max-width:991px){

.pricing-grid{

grid-template-columns:1fr;

}

.price-header h1{

font-size:50px;

}

}

/*==================================================
            PREMIUM PRICING SECTION
==================================================*/

.pricing-section{
    background:#0a0a0a;
    padding:80px 0;
}

.pricing-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;
}

.pricing-card{
    position:relative;
    background:#111;
    border:1px solid #242424;
    border-radius:25px;
    padding:35px;
    overflow:hidden;
    transition:.4s;
}

.pricing-card:hover{
    transform:translateY(-12px);
    border-color:#fff;
    box-shadow:0 20px 60px rgba(255,255,255,.08);
}

.pricing-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-90px;
    right:-90px;
}

.featured{
    border:2px solid #fff;
    transform:scale(1.03);
}

.featured:hover{
    transform:scale(1.05) translateY(-10px);
}

.popular{
    position:absolute;
    top:18px;
    right:-45px;
    width:170px;
    text-align:center;
    background:#fff;
    color:#000;
    font-size:12px;
    font-weight:700;
    padding:8px 0;
    transform:rotate(45deg);
    letter-spacing:1px;
}

.price-tag{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:12px 24px;
    border-radius:40px;
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
}

.price-tag span{
    font-size:16px;
    font-weight:500;
}

.pricing-card h3{
    font-size:42px;
    margin-bottom:10px;
    letter-spacing:1px;
}

.plan-desc{
    color:#999;
    margin-bottom:30px;
    line-height:1.8;
}

.pricing-card ul{
    list-style:none;
    margin:0;
    padding:0;
}

.pricing-card ul li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 0;
    border-bottom:1px solid #222;
    color:#ddd;
    font-size:16px;
}

.pricing-card ul li i{
    color:#fff;
    font-size:18px;
}

.commitment-box{
    margin-top:30px;
    border:2px dashed #444;
    border-radius:18px;
    padding:22px;
    background:#0f0f0f;
}

.commitment-box h4{
    font-size:18px;
    margin-bottom:12px;
}

.commitment-box p{
    color:#bdbdbd;
    margin:8px 0;
    line-height:1.7;
}

.btn-plan{
    display:block;
    width:100%;
    text-align:center;
    margin-top:22px;
    padding:16px;
    border-radius:12px;
    text-decoration:none;
    background:#fff;
    color:#000;
    font-weight:700;
    transition:.3s;
}

.btn-plan:hover{
    background:#d9d9d9;
}

.btn-plan.secondary{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

.btn-plan.secondary:hover{
    background:#fff;
    color:#000;
}

.pricing-card:hover .price-tag{
    background:#fff;
    color:#000;
}

.pricing-card:hover .price-tag span{
    color:#000;
}

/*========================
      RESPONSIVE
========================*/

@media(max-width:1200px){

.pricing-wrapper{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.pricing-wrapper{
    grid-template-columns:1fr;
}

.pricing-card{
    padding:28px;
}

.pricing-card h3{
    font-size:34px;
}

.price-tag{
    font-size:28px;
}

.popular{
    right:-55px;
}

}

/*==================================================
            TESTIMONIALS
==================================================*/

.testimonials{
    background:#050505;
    padding:80px 0;
    overflow:hidden;
}

.testimonial-slider{
    margin-top:70px;
    overflow:hidden;
    position:relative;
}

.testimonial-track{
    display:flex;
    gap:30px;
    transition:.6s ease;
}

.testimonial-card{
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    background:#111;
    border:1px solid #222;
    border-radius:25px;
    padding:40px;
    position:relative;
    transition:.4s;
    overflow:hidden;
    flex-shrink:0;
}

.testimonial-card:hover{

    transform:translateY(-12px);
    border-color:#fff;
    box-shadow:0 25px 60px rgba(255,255,255,.08);

}

.testimonial-card::before{

    content:"";
    position:absolute;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    top:-120px;
    right:-120px;

}

.quote{

    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    margin-bottom:25px;

}

.stars{

    margin-bottom:20px;

}

.stars i{

    color:#FFD54A;
    margin-right:3px;

}

.testimonial-card p{

    color:#cfcfcf;
    line-height:1.9;
    font-size:16px;
    margin-bottom:35px;

}

.client{

    display:flex;
    align-items:center;
    gap:18px;

}

.client img{

    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;

}

.client h4{

    font-size:20px;
    margin-bottom:5px;

}

.client span{

    color:#888;
    font-size:14px;

}

/*==============================
NAVIGATION
==============================*/

.testimonial-nav{

    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:45px;

}

.testimonial-nav button{

    width:60px;
    height:60px;
    border-radius:50%;
    border:1px solid #333;
    background:#111;
    color:#fff;
    cursor:pointer;
    transition:.3s;

}

.testimonial-nav button:hover{

    background:#fff;
    color:#000;
    transform:translateY(-5px);

}

/*==============================
SCROLLBAR
==============================*/

.testimonial-slider::-webkit-scrollbar{

    display:none;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1024px){
.testimonial-card{
    width: calc((100% - 30px) / 2);
    min-width: calc((100% - 30px) / 2);
}
}

@media(max-width:768px){
.testimonial-card{
    width: 100%;
    min-width: 100%;
    padding:30px;
}

.client{

    flex-direction:column;
    text-align:center;

}

.quote{

    width:60px;
    height:60px;

}

.testimonial-nav{

    margin-top:30px;

}

}

/*=========================================
ACTIVE TESTIMONIAL
=========================================*/

.testimonial-card{
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.active{
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover{
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}

.testimonial-track{
    display:flex;
    gap:30px;
    transition:transform .6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change:transform;
}

@media(max-width:768px){
.testimonial-card{
    opacity:1;
    transform:scale(1);
}
.testimonial-card.active{
    opacity:1;
    transform:scale(1);
}
}

.testimonial-slider{
    overflow:hidden;
}

.testimonial-track{
    cursor:grab;
}

/*==================================================
                FAQ SECTION
==================================================*/

.faq{
    background:#050505;
    padding:80px 0;
}

.faq-wrapper{
    max-width:900px;
    margin:70px auto 0;
}

.faq-item{
    background:#111;
    border:1px solid #222;
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.4s ease;
}

.faq-item:hover{
    border-color:#fff;
    box-shadow:0 20px 50px rgba(255,255,255,.06);
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 35px;
    cursor:pointer;
    user-select:none;
}

.faq-question h3{
    font-size:20px;
    color:#fff;
    font-weight:600;
    line-height:1.5;
    margin:0;
}

.faq-question span{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1b1b1b;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    transition:.4s;
}

.faq-answer{

max-height:0;
overflow:hidden;
opacity:0;
transition:max-height .5s ease, opacity .4s ease;

}

.faq-item.active .faq-answer{

max-height:300px;
opacity:1;

}

.faq-answer p{
    padding:0 35px 30px;
    color:#bdbdbd;
    line-height:1.9;
    font-size:16px;
}

/* Active */

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
    background:#fff;
    color:#000;
}

.faq-item.active{
    border-color:#fff;
}

/* Hover */

.faq-question:hover span{
    transform:scale(1.1);
}

/* Mobile */

@media(max-width:768px){

.faq{
    padding:80px 0;
}

.faq-question{
    padding:22px;
}

.faq-question h3{
    font-size:17px;
    width:85%;
}

.faq-question span{
    width:36px;
    height:36px;
    font-size:24px;
}

.faq-answer p{
    padding:0 22px 22px;
    font-size:15px;
}

}

.faq-item{

position:relative;

}

.faq-item::before{

content:"";
position:absolute;
left:0;
top:0;
width:4px;
height:0;
background:#fff;
transition:.4s;

}

.faq-item:hover::before,
.faq-item.active::before{

height:100%;

}

.faq-question span{

transition:.35s ease;
font-weight:700;

}

.faq-item.active .faq-question span{

transform:rotate(45deg) scale(1.1);

}



/*==================================================
                CONTACT SECTION
==================================================*/

.contact{
    background:#050505;
    padding:80px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    margin-top:70px;
    align-items:start;
}

/*=========================
LEFT SIDE
=========================*/

.contact-left{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#111;
    border:1px solid #222;
    border-radius:20px;
    padding:25px;
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#fff;
    box-shadow:0 20px 60px rgba(255,255,255,.08);
}

.contact-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#fff;
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.contact-card h3{
    font-size:20px;
    margin-bottom:6px;
}

.contact-card p{
    color:#bdbdbd;
    line-height:1.7;
}

/*=========================
RIGHT SIDE
=========================*/

.contact-right{
    background:#111;
    border:1px solid #222;
    border-radius:25px;
    padding:45px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.input-group{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;
    background:#181818;
    border:1px solid #2b2b2b;
    color:#fff;
    padding:18px 20px;
    border-radius:12px;
    outline:none;
    transition:.3s;
    font-size:16px;

}

.contact-form textarea{
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    border-color:#fff;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#8d8d8d;

}

.contact-form button{

    height:60px;
    border:none;
    border-radius:12px;
    background:#fff;
    color:#000;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;

}

.contact-form button:hover{

    background:#d9d9d9;
    transform:translateY(-4px);

}

/*=========================
BOTTOM CTA
=========================*/

.consultation{

    margin-top:100px;
    text-align:center;
    background:#111;
    border:1px solid #222;
    border-radius:30px;
    padding:70px 50px;

}

.consultation h2{

    font-size:46px;
    margin-bottom:20px;

}

.consultation p{

    max-width:700px;
    margin:0 auto 35px;
    color:#bdbdbd;
    line-height:1.9;

}

.primary-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 45px;
    background:#fff;
    color:#000;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-5px);
    background:#dcdcdc;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1100px){

.contact-wrapper{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact{

    padding:80px 0;

}

.contact-right{

    padding:30px;

}

.input-group{

    grid-template-columns:1fr;

}

.contact-card{

    padding:20px;

}

.contact-icon{

    width:55px;
    height:55px;
    font-size:20px;

}

.consultation{

    padding:50px 25px;

}

.consultation h2{

    font-size:34px;

}

.primary-btn{

    width:100%;

}

}


/*==================================================
                    FOOTER
==================================================*/

.footer{
    background:#000;
    border-top:1px solid #1f1f1f;
    padding:100px 0 30px;
    position:relative;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:60px;
    padding-bottom:60px;
    border-bottom:1px solid #1f1f1f;
}

/*==============================
LOGO
==============================*/

.footer-logo{
    text-decoration:none;
}

.footer-logo h2{
    font-size:42px;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:1px;
}

.footer-column p{
    color:#9c9c9c;
    line-height:1.9;
    margin-bottom:30px;
}

/*==============================
HEADINGS
==============================*/

.footer-column h3{
    color:#fff;
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:2px;
    background:#fff;
}

/*==============================
LINKS
==============================*/

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:15px;
    color:#bdbdbd;
}

.footer-column ul li a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.35s;
}

.footer-column ul li a:hover{
    color:#fff;
    padding-left:8px;
}

/*==============================
CONTACT
==============================*/

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    line-height:1.7;
}

.footer-contact i{
    color:#fff;
    width:20px;
    margin-top:4px;
}

/*==============================
SOCIAL
==============================*/

.footer-social{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    border:1px solid #fff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#000;
    font-size:18px;
    text-decoration:none;
    transition:.35s;
}

.footer-social a:hover{
    background:#000;
    color:#fff;
    border-color:#fff;
    transform:translateY(-5px);
}

/*==============================
BUTTON
==============================*/

.footer-btn{
    display:inline-block;
    margin-top:30px;
    padding:16px 34px;
    background:#fff;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.footer-btn:hover{
    transform:translateY(-5px);
    background:#dedede;
}

/*==============================
BOTTOM
==============================*/

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:30px;
}

.footer-bottom p{
    color:#888;
    margin:0;
}

/*==============================
BACK TO TOP
==============================*/

.back-top{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:20px;
    transition:.35s;
}

.back-top:hover{
    transform:translateY(-6px) rotate(360deg);
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1100px){

.footer-top{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.footer{
    padding:80px 0 25px;
}

.footer-top{
    grid-template-columns:1fr;
    gap:45px;
    text-align:center;
}

.footer-logo img {
    margin: 0 auto 20px auto;
}

.footer-column h3::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-social{
    justify-content:center;
}

.footer-contact li {
    justify-content:center;
}

.footer-bottom{
    flex-direction:column;
    gap:20px;
    text-align:center;
}

.footer-btn{
    width:100%;
    text-align:center;
}

}


/*==================================================
                WEBSITE LOADER
==================================================*/

#loader{

position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:#000;
display:flex;
justify-content:center;
align-items:center;
z-index:999999;
transition:.8s ease;

}

#loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-content{

text-align:center;

}

.loader-logo{

font-size:60px;
font-weight:800;
letter-spacing:4px;
color:#fff;
margin-bottom:40px;

}

.loader-line{

width:320px;
height:3px;
background:#1a1a1a;
overflow:hidden;
border-radius:50px;
margin:auto;

}

.loader-line span{

display:block;
width:0;
height:100%;
background:#fff;
animation:loading 2.3s linear forwards;

}

.loader-content p{

margin-top:30px;
color:#888;
letter-spacing:3px;
text-transform:uppercase;
font-size:14px;

}

@keyframes loading{

0%{

width:0%;

}

100%{

width:100%;

}

}

/*==================================================
                CUSTOM CURSOR
==================================================*/

body{
    cursor:none;
}

.cursor-dot{
    position:fixed;
    width:8px;
    height:8px;
    background:#fff;
    border-radius:50%;
    pointer-events:none;
    z-index:999999;
    transform:translate(-50%,-50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

/* Hover Effect */
.cursor-dot.cursor-hover{
    width:16px;
    height:16px;
    background:rgba(255,255,255,.4);
}

/* Hide on Mobile */
@media(max-width:991px){
    body{
        cursor:auto;
    }
    .cursor-dot{
        display:none;
    }
}
/*==================================================
            SCROLL PROGRESS BAR
==================================================*/

.scroll-progress{

position:fixed;
top:0;
left:0;
width:0%;
height:4px;
background:#fff;
z-index:999999;
transition:width .15s linear;

}

/*==================================================
            WHATSAPP FLOAT
==================================================*/

.whatsapp-float{

position:fixed;
bottom:30px;
left:30px;

width:65px;
height:65px;

background:#25D366;
color:#fff;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

font-size:32px;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.35);

z-index:9999;

animation:whatsappFloat 2s infinite;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.12);

}

@keyframes whatsappFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

@media(max-width:768px){

.whatsapp-float{

width:58px;
height:58px;
font-size:28px;

left:20px;
bottom:20px;

}

}

/*==================================================
            FADE UP
==================================================*/

.fade-up{

opacity:0;

transform:translateY(50px);

transition:1s;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/*==================================================
            MOUSE GLOW
==================================================*/

.mouse-glow{

position:fixed;

width:300px;
height:300px;

background:radial-gradient(circle,
rgba(255,255,255,.06),
transparent 70%);

pointer-events:none;

border-radius:50%;

z-index:0;

transform:translate(-50%,-50%);

}

.primary-btn,
.contact-btn,
.footer-btn{

overflow:hidden;
position:relative;

}

.primary-btn::before,
.contact-btn::before,
.footer-btn::before{

content:"";

position:absolute;

left:-100%;
top:0;

width:100%;
height:100%;

background:rgba(255,255,255,.18);

transition:.5s;

}

.primary-btn:hover::before,
.contact-btn:hover::before,
.footer-btn:hover::before{

left:100%;

}

/*==================================================
            PREMIUM REVEAL
==================================================*/

.reveal{

opacity:0;
transform:translateY(80px);
transition:all 1s cubic-bezier(.215,.61,.355,1);

}

.reveal.active{

opacity:1;
transform:translateY(0);

}

/* Different Effects */

.reveal-left{

opacity:0;
transform:translateX(-80px);
transition:1s;

}

.reveal-left.active{

opacity:1;
transform:translateX(0);

}

.reveal-right{

opacity:0;
transform:translateX(80px);
transition:1s;

}

.reveal-right.active{

opacity:1;
transform:translateX(0);

}

.reveal-scale{

opacity:0;
transform:scale(.9);
transition:1s;

}

.reveal-scale.active{

opacity:1;
transform:scale(1);

}


.service-card,
.portfolio-card,
.pricing-card,
.testimonial-card,
.reel-card{

transition:.45s ease;

}

.service-card:hover,
.portfolio-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.reel-card:hover{

transform:translateY(-12px);
box-shadow:0 35px 70px rgba(255,255,255,.08);

}

.portfolio-card img,
.reel-thumbnail img{

transition:1s;

}

.portfolio-card:hover img,
.reel-card:hover img{

transform:scale(1.08);

}

.portfolio-card img,
.reel-thumbnail img{

transition:1s;

}

.portfolio-card:hover img,
.reel-card:hover img{

transform:scale(1.08);

}

.floating{

animation:floating 4s ease-in-out infinite;

}

@keyframes floating{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}
.section-title h2{

background:linear-gradient(90deg,#ffffff,#bfbfbf);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}
.section{

position:relative;

}

.section::after{

content:"";

position:absolute;

left:50%;

bottom:0;

width:120px;

height:1px;

background:#222;

transform:translateX(-50%);

}

.counter{

padding:80px 0;
background:#050505;

}

.counter-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.counter-box{

background:#111;
border:1px solid #222;
border-radius:20px;
padding:50px;
text-align:center;
transition:.4s;

}

.counter-box:hover{

transform:translateY(-10px);
border-color:#fff;

}

.counter-number{

font-size:60px;
margin-bottom:15px;

}

.counter-box span{

color:#bdbdbd;

}

@media(max-width:900px){

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.counter-grid{

grid-template-columns:1fr;

}

}


.brand-marquee{

overflow:hidden;

border-top:1px solid #222;
border-bottom:1px solid #222;

padding:25px 0;

}

.marquee-track{

display:flex;

gap:80px;

width:max-content;

animation:marquee 18s linear infinite;

font-size:40px;

font-weight:700;

color:#fff;

}

@keyframes marquee{

100%{

transform:translateX(-50%);

}

}

/*==================================================
        LINK RESET OVERRIDES (DO NOT CHANGE DESIGN)
==================================================*/
a.contact-card,
a.contact-card:hover,
a.contact-card:focus,
a.contact-card:visited,
.footer-contact li a,
.footer-contact li a:hover,
.footer-contact li a:focus,
.footer-contact li a:visited {
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer;
}

a.contact-card h3 {
    color: #fff !important;
}

a.contact-card p {
    color: #bdbdbd !important;
}

.footer-contact li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.7;
    width: 100%;
}

/*==================================================
              PREMIUM LIGHT THEME OVERRIDES
==================================================*/
body.light-theme {
    background: #fcfcfc !important;
    color: #111111 !important;
}

body.light-theme::before {
    background-image: 
        linear-gradient(rgba(0,0,0,.03) 1px,transparent 1px),
        linear-gradient(90deg,rgba(0,0,0,.03) 1px,transparent 1px) !important;
}

body.light-theme::after {
    background: radial-gradient(circle, rgba(0,0,0,.02),transparent 70%) !important;
}

/* Typography */
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
    color: #111111 !important;
}

body.light-theme p,
body.light-theme span,
body.light-theme li,
body.light-theme small {
    color: #555555 !important;
}

body.light-theme .hero h1 span {
    color: #111111 !important;
}

body.light-theme .number {
    color: #eaeaea !important;
}

body.light-theme .timeline .circle {
    border-color: #111111 !important;
    color: #111111 !important;
}

/* Sections */
body.light-theme section {
    background: transparent !important;
}
body.light-theme .about,
body.light-theme .reels,
body.light-theme .testimonials,
body.light-theme .faq {
    background: #fafafa !important;
}
body.light-theme .pricing-section,
body.light-theme .why,
body.light-theme .process,
body.light-theme .case-studies,
body.light-theme .contact,
body.light-theme .instagram-showcase {
    background: #fcfcfc !important;
}

body.light-theme .results {
    background: #f5f5f5 !important;
}
body.light-theme .result h2 {
    color: #111111 !important;
}
body.light-theme .result p {
    color: #555555 !important;
}

/* Cards & Backgrounds */
body.light-theme .about-card,
body.light-theme .feature-card,
body.light-theme .step,
body.light-theme .portfolio-card,
body.light-theme .insta-card,
body.light-theme .case-card,
body.light-theme .testimonial-card,
body.light-theme .faq-item,
body.light-theme .contact-card,
body.light-theme .pricing-card {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02) !important;
}

body.light-theme .about-card:hover,
body.light-theme .feature-card:hover,
body.light-theme .portfolio-card:hover,
body.light-theme .insta-card:hover,
body.light-theme .case-card:hover,
body.light-theme .testimonial-card:hover,
body.light-theme .faq-item:hover,
body.light-theme .contact-card:hover,
body.light-theme .pricing-card:hover {
    border-color: #111111 !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .testimonial-card::before {
    background: rgba(0, 0, 0, 0.02) !important;
}

/* Header & Nav */
body.light-theme header {
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    box-shadow: none !important;
}

body.light-theme header.scrolled {
    background: rgba(252, 252, 252, 0.8) !important;
    backdrop-filter: blur(18px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    padding: 12px 8% !important;
}
body.light-theme nav ul li a {
    color: #555555 !important;
}
body.light-theme nav ul li a:hover,
body.light-theme nav ul li a.active {
    color: #111111 !important;
}
body.light-theme nav ul li a::after {
    background: #111111 !important;
}
body.light-theme .logo,
body.light-theme .footer-logo h2 {
    color: #111111 !important;
}

/* Mobile Nav Menu */
@media (max-width: 768px) {
    body.light-theme nav {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.03) !important;
    }
}

body.light-theme .menu-btn {
    color: #111111 !important;
}

body.light-theme .menu-btn.active {
    color: #111111 !important;
    background: rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

/* Buttons */
body.light-theme .btn {
    background: #111111 !important;
    color: #ffffff !important;
}
body.light-theme .btn:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}
body.light-theme .btn-outline {
    background: transparent !important;
    border: 2px solid #111111 !important;
    color: #111111 !important;
}
body.light-theme .btn-outline:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

/* Social links */
body.light-theme .footer-social a {
    background: #f0f0f0 !important;
    color: #111111 !important;
    border: 1px solid #e5e5e5 !important;
}
body.light-theme .footer-social a:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

/* Contact form inputs */
body.light-theme .contact-form input,
body.light-theme .contact-form select,
body.light-theme .contact-form textarea {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    color: #111111 !important;
}
body.light-theme .contact-form input:focus,
body.light-theme .contact-form select:focus,
body.light-theme .contact-form textarea:focus {
    border-color: #111111 !important;
}

/* pricing section specifics */
body.light-theme .price-tag {
    background: #f0f0f0 !important;
    color: #111111 !important;
}
body.light-theme .pricing-card:hover .price-tag {
    background: #111111 !important;
    color: #ffffff !important;
}
body.light-theme .pricing-card:hover .price-tag span {
    color: #ffffff !important;
}
body.light-theme .btn-plan {
    background: #111111 !important;
    color: #ffffff !important;
}
body.light-theme .btn-plan.secondary {
    background: transparent !important;
    color: #111111 !important;
    border: 2px solid #111111 !important;
}
body.light-theme .btn-plan.secondary:hover {
    background: #111111 !important;
    color: #ffffff !important;
}
body.light-theme .commitment-box {
    background: #fafafa !important;
    border-color: #ddd !important;
}

/* faq overrides */
body.light-theme .faq-item::before {
    background: #111111 !important;
}
body.light-theme .faq-item.active {
    border-color: #111111 !important;
}
body.light-theme .faq-item.active .faq-question span {
    background: #111111 !important;
    color: #ffffff !important;
}

/* marquee overrides */
body.light-theme .brand-marquee {
    border-color: #eaeaea !important;
    background: #fcfcfc !important;
}
body.light-theme .marquee-track span {
    color: #111111 !important;
}

/* footer overrides */
body.light-theme .footer {
    background: #fafafa !important;
    border-top: 1px solid #eaeaea !important;
    color: #555555 !important;
}
body.light-theme .footer-column h3 {
    color: #111111 !important;
}
body.light-theme .footer-column h3::after {
    background: #111111 !important;
}
body.light-theme .footer-contact i {
    color: #111111 !important;
}
body.light-theme .footer-bottom {
    border-top: 1px solid #eaeaea !important;
}

/* Custom cursor inside light theme */
body.light-theme .cursor-dot {
    background: #111111 !important;
}
body.light-theme .cursor-dot.cursor-hover {
    background: rgba(17, 17, 17, 0.3) !important;
}

/* loader for light theme */
body.light-theme #loader {
    background: #fcfcfc !important;
}
body.light-theme .loader-logo span {
    color: #111111 !important;
}
body.light-theme .loader-content p {
    color: #555555 !important;
}
body.light-theme .loader-line {
    background: #eaeaea !important;
}
body.light-theme .loader-line span {
    background: #111111 !important;
}

/* Specific overrides to fix text visibility, filter buttons, testimonial navigation, and cards in light mode */
body.light-theme .section-title h2 {
    background: none !important;
    -webkit-text-fill-color: #111111 !important;
    color: #111111 !important;
}

body.light-theme .section-title p {
    color: #555555 !important;
}

body.light-theme .section-title span {
    color: #444444 !important;
    background: transparent !important;
    padding: 0 !important;
}

body.light-theme .hero-sub {
    color: #444444 !important;
}

body.light-theme .hero p {
    color: #555555 !important;
}

body.light-theme a.contact-card h3 {
    color: #111111 !important;
}

body.light-theme a.contact-card p {
    color: #555555 !important;
}

body.light-theme .footer-contact li a {
    color: #555555 !important;
}

body.light-theme .footer-contact li a:hover {
    color: #111111 !important;
}

body.light-theme .commitment-box h4 {
    color: #111111 !important;
}

body.light-theme .commitment-box p {
    color: #555555 !important;
}

body.light-theme .pricing-card ul li i {
    color: #111111 !important;
}

body.light-theme .pricing-card ul li {
    border-color: #e5e5e5 !important;
}

body.light-theme .case-content span {
    color: #666666 !important;
}

body.light-theme .case-content p {
    color: #555555 !important;
}

body.light-theme .case-metrics {
    border-color: #e5e5e5 !important;
}

body.light-theme .case-metrics small {
    color: #666666 !important;
}

body.light-theme .testimonial-card p {
    color: #555555 !important;
}

body.light-theme .testimonial-nav button {
    border-color: #e5e5e5 !important;
    color: #111111 !important;
    background: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02) !important;
}

body.light-theme .testimonial-nav button:hover {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

body.light-theme .reel-filter button {
    background: #ffffff !important;
    color: #555555 !important;
    border-color: #e5e5e5 !important;
}

body.light-theme .reel-filter button:hover,
body.light-theme .reel-filter button.active {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
}

body.light-theme .reel-card {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02) !important;
}

body.light-theme .reel-card:hover {
    border-color: #111111 !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .reel-info span {
    color: #666666 !important;
}

body.light-theme .reel-info p {
    color: #555555 !important;
}

body.light-theme .reel-stats {
    border-top: 1px solid #e5e5e5 !important;
}

body.light-theme .reel-stats span {
    color: #555555 !important;
}

body.light-theme .scroll-progress {
    background: #111111 !important;
}

body.light-theme .step {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 20px !important;
    padding: 30px 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

body.light-theme .step:hover {
    border-color: #111111 !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-8px) !important;
}

body.light-theme .timeline::before {
    background: #e5e5e5 !important;
}

body.light-theme .circle {
    border-color: #111111 !important;
    background: #ffffff !important;
    color: #111111 !important;
}

body.light-theme .step:hover .circle {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .step h4 {
    color: #111111 !important;
}

body.light-theme .step p {
    color: #555555 !important;
}

body.light-theme .insta-stats p {
    color: #555555 !important;
}

body.light-theme .stat {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

body.light-theme .stat:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .stat h2 {
    color: #111111 !important;
}

body.light-theme .stat p {
    color: #666666 !important;
}

body.light-theme .stat-icon {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #111111 !important;
}

body.light-theme .stat:hover .stat-icon {
    background: rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(0, 0, 0, 0.18) !important;
}

/* Image Logo & Icon Styles */
.logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.loader-logo img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}