/* =====================================================
   R9CHHOD STUDIOS
   PREMIUM AGENCY WEBSITE
===================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --primary: #B30000;
    --secondary: #000000;
    --background: #F8F5E9;
    --white: #ffffff;

    --text-dark: #111111;
    --text-light: #666666;

    --glass: rgba(255,255,255,0.25);
    --glass-border: rgba(255,255,255,0.35);

    --shadow-sm: 0 5px 15px rgba(0,0,0,.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,.18);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 25px;

    --transition: all .35s ease;
}

/* =====================================================
   DARK MODE
===================================================== */

body.dark-mode {

    --background: #111111;
    --white: #1d1d1d;
    --text-dark: #f5f5f5;
    --text-light: #cccccc;
    --glass: rgba(255,255,255,.05);
    --glass-border: rgba(255,255,255,.08);
}

/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}
body::before{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    opacity:.05;

    background-image:url("https://www.transparenttextures.com/patterns/noise.png");

    z-index:-1;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--background);
    color:var(--text-dark);
    overflow-x:hidden;
    transition:.4s ease;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =====================================================
   CUSTOM SCROLLBAR
===================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#ececec;
}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:50px;
}
/* ===================================
        LOADER
=================================== */

#loader{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:#F8F5E9;

    display:flex;

    justify-content:center;
    align-items:center;

    z-index:99999;

    transition:opacity .8s ease,
               visibility .8s ease;

}

.loader-content{

    display:flex;

    justify-content:center;
    align-items:center;

}

/* Logo */

.loader-logo{

    width:220px;        /* Change size here */

    height:auto;

    animation:logoLoader 2s ease-in-out infinite;

}

/* Animation */

@keyframes logoLoader{

    0%{

        transform:scale(.8);
        opacity:0;

    }

    50%{

        transform:scale(1);
        opacity:1;

    }

    100%{

        transform:scale(1.08);
        opacity:.8;

    }

}

/* Hide Loader */

body.loaded #loader{

    opacity:0;
    visibility:hidden;

}
/* =====================================================
   BACK TO TOP
===================================================== */

#topBtn{

    position:fixed;
    right:25px;
    bottom:25px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:var(--primary);
    color:white;

    cursor:pointer;

    box-shadow:var(--shadow-md);

    display:none;

    z-index:999;
}

#topBtn:hover{

    transform:translateY(-5px);
}

/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.whatsapp-btn{

    position:fixed;

    bottom:95px;
    right:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#25d366;
    color:white;

    font-size:28px;

    z-index:999;

    box-shadow:var(--shadow-md);
}

.whatsapp-btn:hover{

    transform:scale(1.1);
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    z-index:1000;

    transition:.4s ease;
}

.navbar.scrolled{

    background:rgba(255,255,255,.6);
    backdrop-filter:blur(16px);

    box-shadow:var(--shadow-md);
}

.nav-container{

    width:92%;
    max-width:1400px;

    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;
}

.logo{

    font-size:1.3rem;
    font-weight:800;
    color:var(--primary);
}

.nav-left,
.nav-right{

    display:flex;
    gap:30px;
}

.nav-left a,
.nav-right a{

    color:var(--text-dark);
    font-weight:500;
    position:relative;
}

.nav-left a::after,
.nav-right a::after{

    content:'';

    position:absolute;
    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:var(--primary);

    transition:.4s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after{

    width:100%;
}

/* =====================================================
   HAMBURGER
===================================================== */

.hamburger{

    display:none;
    flex-direction:column;
    gap:5px;

    cursor:pointer;
}

.hamburger span{

    width:28px;
    height:3px;

    background:var(--text-dark);
    border-radius:50px;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu{

    position:absolute;
    top:100%;
    left:0;

    width:100%;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    display:flex;
    flex-direction:column;

    align-items:center;

    gap:20px;

    padding:30px;

    transform:translateY(-20px);

    opacity:0;
    visibility:hidden;

    transition:.4s ease;
}

.mobile-menu.active{

    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mobile-menu a{

    color:var(--text-dark);
    font-weight:600;
}

.mobile-menu button{

    padding:12px 20px;

    border:none;
    border-radius:30px;

    background:var(--primary);
    color:white;

    cursor:pointer;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);
}

.primary-btn{

    background:var(--primary);
    color:white;
}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(179,0,0,.3);
}

.secondary-btn{

    border:2px solid var(--primary);
    color:var(--primary);
}

.secondary-btn:hover{

    background:var(--primary);
    color:white;
}

/* ==========================
   HERO SECTION
========================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:#F8F5E9;
    padding:100px 8%;
}

.hero-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;

    width:100%;
    max-width:1400px;
    margin:auto;
}

.hero-content h1{

    font-size:72px;
    font-weight:800;
    color:#000;
    line-height:1.1;
}

.hero-content p{

    margin:30px 0;

    font-size:20px;

    color:#555;

    line-height:1.8;
}

.hero-buttons{

    display:flex;
    gap:20px;
}

.hero-image{

    display:flex;
    justify-content:center;
}

.hero-image img{

    width:100%;
    max-width:550px;
    height:auto;

    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

@media(max-width:992px){

.hero-container{

grid-template-columns:1fr;
text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-content h1{

font-size:50px;

}

.hero-image{

margin-top:40px;

}

.hero-image img{

max-width:420px;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:18px;

}

.hero-image img{

max-width:320px;

}

}

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:clamp(2rem,5vw,3.5rem);
    font-weight:800;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:var(--text-light);
    line-height:1.8;
}

/* =====================================================
   PACKAGES SECTION
===================================================== */

.packages{
    padding:100px 0;
}

.package-grid{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.package-card{

    background:rgba(255,255,255,.65);
    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:25px;

    padding:40px 30px;

    box-shadow:var(--shadow-sm);

    transition:all .4s ease;

    position:relative;
    overflow:hidden;
}

.package-card::before{

    content:'';

    position:absolute;
    inset:0;

    border-radius:25px;
    padding:2px;

    background:linear-gradient(
        135deg,
        var(--primary),
        transparent,
        var(--primary)
    );

    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

.package-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);
}

.package-card h3{

    font-size:1.8rem;
    margin-bottom:20px;
}

.price{

    color:var(--primary);
    font-size:1.5rem;
    font-weight:700;

    margin-bottom:25px;
}

.package-card ul{
    margin-bottom:30px;
}

.package-card li{

    padding:10px 0;

    color:var(--text-light);
    border-bottom:1px solid rgba(0,0,0,.08);
}

.package-btn{
    width:100%;
    background:var(--primary);
    color:#fff;
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}

.package-btn:hover{
    transform:translateY(-4px);
}

.featured{

    background:linear-gradient(
        135deg,
        rgba(179,0,0,.08),
        rgba(255,255,255,.9)
    );

    transform:scale(1.03);
}

/* =====================================================
   TESTIMONIAL REEL CAROUSEL
===================================================== */

.testimonials{
    padding:100px 0;
}

.reel-carousel{

    width:95%;
    max-width:1400px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:20px;
}

.reel-track{

    display:flex;
    gap:20px;

    overflow-x:auto;
    scroll-behavior:smooth;

    scrollbar-width:none;
}

.reel-track::-webkit-scrollbar{
    display:none;
}

.reel-card{

    min-width:260px;
    height:460px;

    border-radius:25px;

    overflow:hidden;

    background:#000;

    flex-shrink:0;

    box-shadow:var(--shadow-md);

    transition:.4s ease;
}

.reel-card:hover{

    transform:translateY(-10px);
}

.reel-card img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.arrow{

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:var(--primary);
    color:white;

    font-size:18px;

    box-shadow:var(--shadow-md);

    transition:.3s;
}

.arrow:hover{
    transform:scale(1.08);
}

/* =====================================================
   PORTFOLIO GRID
===================================================== */

.work-preview{
    padding:100px 0;
}

.portfolio-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;
}

.portfolio-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.4s ease;
}

.portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}

.portfolio-image{

    height:260px;
    overflow:hidden;
}

.portfolio-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s ease;
}

.portfolio-card:hover img{

    transform:scale(1.1);
}

.portfolio-content{
    padding:25px;
}

.portfolio-content h3{
    margin-bottom:10px;
}

.portfolio-content p{

    color:var(--text-light);
    margin-bottom:20px;
}

.portfolio-btn{

    background:var(--primary);
    color:white;
}

.view-more{

    text-align:center;
    margin-top:50px;
}

/* =====================================================
   FEATURES SECTION
===================================================== */

.why-us{
    padding:100px 0;
}

.features-grid{

    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.feature-card{

    background:white;

    padding:40px 25px;

    text-align:center;

    border-radius:25px;

    box-shadow:var(--shadow-sm);

    transition:.4s ease;
}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}

.feature-card i{

    font-size:40px;

    color:var(--primary);

    margin-bottom:20px;
}

.feature-card h3{

    margin-bottom:15px;
}

.feature-card p{

    color:var(--text-light);
    line-height:1.7;
}

/* =====================================================
   CTA SECTION
===================================================== */

.cta-section{

    padding:100px 20px;
}

.cta-box{

    max-width:1200px;

    margin:auto;

    padding:70px 40px;

    text-align:center;

    border-radius:35px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #800000
    );

    color:white;

    box-shadow:var(--shadow-lg);
}

.cta-box h2{

    font-size:clamp(2rem,5vw,4rem);

    margin-bottom:15px;
}

.cta-box p{

    margin-bottom:35px;
    font-size:1.1rem;
}

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-box .secondary-btn{

    border-color:white;
    color:white;
}

.cta-box .secondary-btn:hover{

    background:white;
    color:var(--primary);
}

/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#111;

    color:white;

    margin-top:80px;
}

.footer-container{

    width:90%;
    max-width:1300px;

    margin:auto;

    padding:70px 0;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;

    gap:50px;
}

.footer-column h3{

    margin-bottom:25px;
}

.footer-column p{

    color:#cfcfcf;
    line-height:1.8;
}

.footer-column ul li{

    margin-bottom:12px;
}

.footer-column ul a{

    color:#cfcfcf;

    transition:.3s;
}

.footer-column ul a:hover{

    color:white;
    padding-left:5px;
}

.newsletter{

    display:flex;
    margin-top:20px;
    margin-bottom:20px;
}

.newsletter input{

    flex:1;

    padding:14px;

    border:none;

    outline:none;

    border-radius:12px 0 0 12px;
}

.newsletter button{

    padding:14px 20px;

    border:none;

    background:var(--primary);

    color:white;

    cursor:pointer;

    border-radius:0 12px 12px 0;
}

.footer-email{
    margin-top:15px;
}

.footer-bottom{

    text-align:center;

    padding:25px;

    border-top:1px solid rgba(255,255,255,.1);
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* Laptop */

@media(max-width:1200px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .package-grid{
        grid-template-columns:1fr;
    }
}

/* Tablet */

@media(max-width:768px){

    .nav-left,
    .nav-right{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

    .cta-box{
        padding:50px 25px;
    }

    .reel-card{
        min-width:220px;
        height:390px;
    }
}

/* Mobile */

@media(max-width:480px){

    .hero{
        padding-top:140px;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .package-card{
        padding:30px 20px;
    }

    .cta-box h2{
        font-size:2rem;
    }

    .newsletter{
        flex-direction:column;
        gap:10px;
    }

    .newsletter input,
    .newsletter button{
        border-radius:12px;
        width:100%;
    }

    .arrow{
        display:none;
    }
}
/* SERVICES PAGE */

.services-section{
    padding:100px 0;
}

.services-grid{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:white;
    border-radius:25px;
    padding:35px;
    box-shadow:var(--shadow-sm);
    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.service-card i{
    font-size:40px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:20px;
}

.service-card li{
    padding:8px 0;
    color:var(--text-light);
}
.story-section{

    padding:120px 0;

    background:#F8F5E9;

}

/* story page  */

.story-wrapper{

    width:90%;

    max-width:420px;

    margin:auto;

    position:relative;

}

.story-card{

    position:sticky;

    top:80px;

    margin-bottom:100px;

    border-radius:24px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    transition:.5s ease;

}

.story-card img{

    width:100%;

    aspect-ratio:1/1;      /* Instagram Post Size */

    object-fit:cover;

    display:block;

    transition:.6s ease;

}

.story-card:hover img{

    transform:scale(1.05);

}
.story-card:nth-child(1){

    z-index:1;

}

.story-card:nth-child(2){

    z-index:2;

}

.story-card:nth-child(3){

    z-index:3;

}

.story-card:nth-child(4){

    z-index:4;

}
/* =====================================
   WORK PAGE
===================================== */

.templates-section{
    padding:100px 0;
}

.template-grid{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.template-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:.4s;
}

.template-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.template-card img{
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.template-card:hover img{
    transform:scale(1.1);
}

.template-content{
    padding:25px;
}

.template-content h3{
    margin-bottom:10px;
}

.template-content p{
    color:var(--text-light);
    margin-bottom:20px;
}
/* ==========================
   MOBILE VIEW
========================== */

@media (max-width:768px){

    .templates-section{
        padding:60px 0;
    }

    .template-grid{
        width:95%;
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .template-card{
        border-radius:12px;
    }

    .template-card img{
        width:100%;
        aspect-ratio:1/1;
        height:auto;
        object-fit:cover;
        display:block;
    }

    .template-content{
        padding:8px;
        text-align:center;
    }

    .template-content h3{
        font-size:13px;
        margin-bottom:6px;
    }

    .template-content p{
        display:none;
    }

    /* Let's Start Button */
    .template-content .btn,
    .template-content a{
        padding:6px 12px;
        font-size:11px;
        border-radius:8px;
        display:inline-block;
    }

}
/* ===========================
Portfolio
=========================== */

.portfolio-showcase{
    padding:100px 8%;
    background-color: #F8F5E9;
}

.portfolio-category{
    margin-top:70px;
}

.portfolio-category h3{
    color: #000;
    margin-bottom:25px;
    font-size:28px;
    font-weight:600;
}

.scroll-wrapper{
    overflow:hidden;
    width:100%;
    position:relative;
}

.scroll-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:scroll 28s linear infinite;
}

.scroll-track:hover{
    animation-play-state:paused;
}

.scroll-track img{
    width:280px;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:18px;
    flex-shrink:0;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.story-track img{
    width:220px;
    aspect-ratio:9/16;
}

.poster-track img{
    width:300px;
    aspect-ratio:4/5;
}

.scroll-track img:hover{
    transform:translateY(-10px) scale(1.04);
}

@keyframes scroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

.scroll-track img{
    width:180px;
}

.story-track img{
    width:150px;
}

.poster-track img{
    width:190px;
}

}


/* =====================================
   CONTACT PAGE
===================================== */

.contact-section{
    padding:100px 0;
}

.contact-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h2{
    margin-bottom:20px;
}

.contact-info p{
    color:var(--text-light);
    line-height:1.8;
}

.info-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-top:30px;
}

.info-box i{
    font-size:24px;
    color:var(--primary);
}

.contact-form-box{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:var(--shadow-sm);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:15px;

    outline:none;

    font-family:inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:var(--primary);
}

/* MAP */

.map-section{
    padding:100px 0;
}

.map-wrapper{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.map-wrapper iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:25px;
    box-shadow:var(--shadow-md);
}

@media(max-width:768px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:25px;
    }

    .map-wrapper iframe{
        height:350px;
    }
}
/* =====================================================
   ABOUT PAGE
===================================================== */

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
}

/* ==========================
   BUILDING DIGITAL GROWTH
========================== */

.growth-section {
    padding: 100px 0;
    background: var(--background);
}

.growth-block {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto 100px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: center;
}

.growth-block:last-child {
    margin-bottom: 0;
}

.growth-block.reverse .growth-image {
    order: 2;
}

.growth-block.reverse .growth-content {
    order: 1;
}

.growth-image {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.growth-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: .6s ease;
}

.growth-image:hover img {
    transform: scale(1.08);
}

.growth-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.growth-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ==========================
   SOCIAL PRESENCE
========================== */

.social-presence{
    padding:100px 0;
}

.social-slider{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
}

.social-reel{
    width:250px;
    height:470px;
    border-radius:25px;
    overflow:hidden;
    flex-shrink:0;
}

.social-reel img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.social-reel:first-child,
.social-reel:last-child{
    transform:scale(.9);
    opacity:.7;
}

.social-reel.active{
    transform:scale(1.08);
    opacity:1;
}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .social-presence{
        overflow:hidden;
    }

    .social-slider{

        display:flex !important;
        flex-direction:row !important;
        flex-wrap:nowrap !important;

        justify-content:flex-start !important;
        align-items:center;

        width:100%;

        overflow-x:auto;
        overflow-y:hidden;

        padding:20px;

        gap:20px;

        -webkit-overflow-scrolling:touch;

        scroll-snap-type:x mandatory;
    }

    .social-slider::-webkit-scrollbar{
        display:none;
    }

    .social-reel{

        min-width:250px !important;
        width:250px !important;
        height:470px !important;

        flex:0 0 250px !important;

        scroll-snap-align:center;

        transform:none !important;
        opacity:1 !important;
    }

    .social-reel.active{
        transform:none !important;
    }
}

/* ==========================
   TEAM
========================== */

.team-section{
    padding:100px 5%;
}

.team-grid{

    width:100%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.team-card{

    position:relative;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    box-shadow:var(--shadow-md);

}

.team-card img{

    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:.6s;

}

.team-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.75);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:#fff;

    opacity:0;

    transition:.4s;

    padding:20px;

}

.team-card:hover img{

    transform:scale(1.1);

}

.team-card:hover .team-overlay{

    opacity:1;

}

.team-overlay h3{

    font-size:24px;
    margin-bottom:10px;

}

.team-overlay p{

    margin-bottom:20px;

}

.social-icons{

    display:flex;
    gap:15px;

}

.social-icons a{

    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#fff;
    color:var(--primary);

    transition:.3s;

}

.social-icons a:hover{

    background:var(--primary);
    color:#fff;

    transform:translateY(-5px);

}

/* ==========================
   Tablet
========================== */

@media (max-width:1024px){

    .team-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

/* ==========================
   Mobile
========================== */

@media (max-width:768px){

    .team-section{

        padding:70px 20px;

    }

    .team-grid{

        grid-template-columns:repeat(2,1fr);
        gap:15px;

    }

    .team-card img{

        height:300px;

    }

}

/* ==========================
   Small Phones
========================== */

@media (max-width:480px){

    .team-grid{

        grid-template-columns:repeat(2,1fr);
        gap:12px;

    }

    .team-card{

        border-radius:18px;

    }

    .team-card img{

        height:250px;

    }

    .team-overlay h3{

        font-size:18px;

    }

    .team-overlay p{

        font-size:14px;

    }

    .social-icons{

        gap:10px;

    }

    .social-icons a{

        width:34px;
        height:34px;

    }

}

/* ==========================
   FAQ
========================== */

.faq-section {

    padding: 100px 0;
}

.faq-container {

    width: 90%;
    max-width: 900px;

    margin: auto;
}

.faq-item {

    background: white;

    margin-bottom: 20px;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);
}

.faq-question {

    width: 100%;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 22px 30px;

    text-align: left;

    font-size: 18px;

    font-weight: 600;

    color: var(--secondary);

    position: relative;
}

.faq-question::after {

    content: "+";

    position: absolute;

    right: 30px;

    font-size: 22px;

    transition: .3s;
}

.faq-item.active .faq-question::after {

    content: "-";
}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: .4s ease;

    background: #fafafa;
}

.faq-answer p {

    padding: 0 30px 25px;

    color: var(--text-light);

    line-height: 1.8;
}

.faq-item.active .faq-answer {

    max-height: 250px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:1100px){

    .team-grid{

        columns: 2;
    }

    .growth-block{

        gap:40px;
    }

}

@media (max-width:768px){

    .growth-block{

        grid-template-columns:1fr;
    }

    .growth-block.reverse .growth-image,
    .growth-block.reverse .growth-content{

        order:unset;
    }

    .growth-content{

        text-align:center;
    }

    .growth-content h2{

        font-size:2rem;
    }

    .social-slider{

        flex-direction:column;
    }

    .social-reel.side{

        transform:scale(1);
        opacity:1;
    }

    .social-reel.center{

        transform:scale(1);
    }

    .team-grid{

        columns:1;
    }

}

@media (max-width:480px){

    .growth-section,
    .social-presence,
    .team-section,
    .faq-section{

        padding:70px 0;
    }

    .growth-content h2{

        font-size:1.8rem;
    }

    .social-reel{

        width:100%;
        max-width:280px;
        height:420px;
    }

    .faq-question{

        font-size:16px;
        padding:18px 20px;
    }

    .faq-answer p{

        padding:0 20px 20px;
    }

}
/* ==========================
   LOGO
========================== */

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; /* Allows the logo to extend outside the navbar */
}

.logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 140px;          /* Increase to 160px or 180px if needed */
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    top: 0;                 /* Change to -10px if you want it higher */
    z-index: 1000;
}

.logo img:hover {
    transform: scale(1.08);
}

/* Tablet */

@media (max-width: 992px) {
    .logo img {
        height: 100px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .logo img {
        height: 75px;
    }
}

.success-popup{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.success-popup.active{

    opacity:1;
    visibility:visible;

}

.popup-content{

    background:#fff;

    width:90%;
    max-width:400px;

    padding:40px;

    border-radius:20px;

    text-align:center;

    transform:scale(.8);

    transition:.3s;

}

.success-popup.active .popup-content{

    transform:scale(1);

}

.popup-icon{

    width:70px;
    height:70px;

    background:#28a745;

    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto;

    font-size:35px;

}

.popup-content button{

    margin-top:20px;

    padding:12px 30px;

    border:none;

    background:#000;

    color:#fff;

    border-radius:8px;

    cursor:pointer;

}

.package-form-section{

    padding:100px 0;

}

.package-form-container{

    width:90%;
    max-width:900px;

    margin:auto;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;

}

#packageForm input,
#packageForm select,
#packageForm textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    outline:none;

}

#packageForm textarea{

    resize:vertical;

    margin-bottom:25px;

}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

}


/* message sent from for the package  */
/* ===========================
   SUCCESS POPUP
=========================== */

.success-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.success-popup.active{

    opacity:1;

    visibility:visible;

}

.popup-box{

    width:90%;

    max-width:430px;

    background:#fff;

    border-radius:18px;

    padding:45px 35px;

    text-align:center;

    transform:translateY(40px);

    transition:.35s;

}

.success-popup.active .popup-box{

    transform:translateY(0);

}

.success-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin-bottom:25px;

}

.popup-box h2{

    font-size:30px;

    margin-bottom:15px;

}

.popup-box p{

    color:#666;

    line-height:1.7;

    margin-bottom:30px;

}

.popup-btn{

    padding:14px 35px;

    border:none;

    border-radius:10px;

    background:#111;

    color:#fff;

    cursor:pointer;

    font-size:16px;

}

.popup-btn:hover{

    opacity:.9;

}

