*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', Arial, sans-serif;
}

body{
    background:#0f0f12;
    color:white;
}

/* NAVBAR */
.navbar{
    width:100%;
    background:#000; /* Always visible background */
    padding:18px 40px;
    position:sticky;   /* Sticky for inner pages */
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,0.6);
}

/* CONTAINER CENTER FIX */
.nav-container{
    max-width:1200px;
    margin:0 auto;  /* CENTER CONTENT */
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo img{
    width:120px;
    height:auto;
    display:block;
    margin-left: 30px;
   
}
/* LINKS */
.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:800;
    font-size: 16px;
    position:relative;
     font-family: 'Montserrat', sans-serif;
   
   
}

/* Hover underline */
.nav-links a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    bottom:-6px;
    left:0;
    background:#ff2e2e;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* HAMBURGER */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;
    background:white;
}

/* MOBILE */
@media(max-width:768px){

    .nav-container{
        padding:0 10px;
    }

    .nav-links{
        position:absolute;
        top:70px;
        right:0;
        background:#000;
        flex-direction:column;
        width:100%;
        text-align:center;
        display:none;
        padding:20px 0;
    }

    .nav-links.active{
        display:flex;
    }

    .hamburger{
        display:flex;
    }

}








/* ===============================
   WHAT BRANDS GET SECTION
=================================*/

.brands-section{
    padding:50px 20px;
}

.brands-container{
    max-width:1200px;
    margin:auto;
}

/* HEADING */

.brands-header{
    text-align:center;
    margin-bottom:80px;
}

.brands-header h2{
    font-size:42px;
    color:#ff2e2e;
    font-weight:800;
     text-transform: uppercase;
}

.brands-header p{
    color:white;
    margin-top:15px;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
}

.brands-line{
    width:100px;
    height:4px;
    background:#ff2e2e;
    margin:20px auto 0;
    border-radius:5px;
}

/* GRID */

.brands-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* CARD */

.brand-card{
    background:#161b22;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid #222;
    transition:0.4s ease;
}

.brand-card:hover{
    transform:translateY(-10px);
    border:1px solid #ff2e2e;
}

/* ICON */

.brand-icon{
    font-size:40px;
    color:#ff2e2e;
    margin-bottom:20px;
}

/* TEXT */

.brand-card h3{
    color:white;
    margin-bottom:15px;
}

.brand-card p{
    color:#b0b0b0;
    font-size:14px;
    line-height:1.7;
}

/* ===============================
   ANIMATIONS
=================================*/

.slide-left,
.slide-right,
.slide-top{
    opacity:0;
    transition:0.8s ease;
}

.slide-left{
    transform:translateX(-80px);
}

.slide-right{
    transform:translateX(80px);
}

.slide-top{
    transform:translateY(60px);
}

.show{
    opacity:1;
    transform:translate(0);
}

/* ===============================
   MOBILE VIEW
=================================*/

@media(max-width:992px){
    .brands-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

.brands-header h2{
    font-size:28px;
}

.brands-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.brand-card{
    padding:30px 20px;
}

}












/* ===============================
   AUDIENCE DEMOGRAPHICS
=================================*/

.audience-section{
     background:#111418;
    padding:50px 20px;
}

.audience-container{
    max-width:1200px;
    margin:auto;
}

/* HEADING */

.audience-header{
    text-align:center;
    margin-bottom:80px;
}

.audience-header h2{
    font-size:42px;
    font-weight:800;
    color:#ff2e2e;
    text-transform: uppercase;
}

.audience-header p{
    color:white;
    margin-top:15px;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
}

.audience-line{
    width:100px;
    height:4px;
    background:#ff2e2e;
    margin:20px auto 0;
    border-radius:4px;
}

/* GRID */

.audience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* CARD */

.audience-card{
    background:#161b22;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid #222;
    transition:0.4s ease;
}

.audience-card:hover{
    transform:translateY(-10px);
    border:1px solid #ff2e2e;
}

/* ICON */

.audience-icon{
    font-size:40px;
    color:#ff2e2e;
    margin-bottom:20px;
}

/* TEXT */

.audience-card h3{
    color:white;
    margin-bottom:10px;
}

.audience-card p{
    color:#b0b0b0;
    font-size:14px;
    line-height:1.7;
}

/* STAT NUMBER */

.audience-stat{
    font-size:28px;
    color:#ff2e2e;
    font-weight:800;
    margin-bottom:10px;
}

/* ===============================
   ANIMATIONS
=================================*/

.slide-left,
.slide-right,
.slide-top{
    opacity:0;
    transition:0.8s ease;
}

.slide-left{
    transform:translateX(-80px);
}

.slide-right{
    transform:translateX(80px);
}

.slide-top{
    transform:translateY(60px);
}

.show{
    opacity:1;
    transform:translate(0);
}

/* ===============================
   MOBILE VIEW
=================================*/

@media(max-width:992px){
    .audience-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

.audience-header h2{
    font-size:28px;
}

.audience-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.audience-card{
    padding:30px 20px;
}

}


















/* ===============================
   PAST CAMPAIGNS SECTION
=================================*/

.campaign-section{
    padding:50px 20px;
}

.campaign-container{
    max-width:1200px;
    margin:auto;
}

/* HEADING */

.campaign-header{
    text-align:center;
    margin-bottom:80px;
}

.campaign-header h2{
    font-size:42px;
    color:#ff2e2e;
    font-weight:800;
    text-transform: uppercase;
}

.campaign-header p{
    color:white;
    margin-top:15px;
    max-width:650px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
}

.campaign-line{
    width:100px;
    height:4px;
    background:#ff2e2e;
    margin:20px auto 0;
    border-radius:4px;
}

/* GRID */

.campaign-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* CARD */

.campaign-card{
    background:#161b22;
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    border:1px solid #222;
    transition:0.4s ease;
}

.campaign-card:hover{
    transform:translateY(-10px);
    border:1px solid #ff2e2e;
}

/* ICON */

.campaign-icon{
    font-size:45px;
    color:#ff2e2e;
    margin-bottom:25px;
}

/* TEXT */

.campaign-card h3{
    color:white;
    margin-bottom:12px;
}

.campaign-card p{
    color:#b0b0b0;
    font-size:14px;
    line-height:1.7;
    margin-bottom:15px;
}

.campaign-stat{
    color:#ff2e2e;
    font-weight:bold;
    font-size:16px;
}

/* ===============================
   ANIMATIONS
=================================*/

.slide-left,
.slide-right,
.slide-top{
    opacity:0;
    transition:0.8s ease;
}

.slide-left{
    transform:translateX(-80px);
}

.slide-right{
    transform:translateX(80px);
}

.slide-top{
    transform:translateY(60px);
}

.show{
    opacity:1;
    transform:translate(0);
}

/* ===============================
   MOBILE VIEW
=================================*/

@media(max-width:992px){
    .campaign-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

.campaign-header h2{
    font-size:28px;
}

.campaign-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.campaign-card{
    padding:35px 20px;
}

}

















/* ===============================
   SECTION
=================================*/

.contact-apply-section{
    padding:100px 20px;
    background:#111418;
}

.contact-apply-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:stretch;
    flex-wrap:wrap;
}

/* ===============================
   LEFT CONTACT CARD
=================================*/

.contact-left{
    flex:1;
    display:flex;
}

.contact-card{
    background:#161b22;
    padding:40px;
    border-radius:20px;
    border:1px solid #222;
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:0.4s ease;
}

.contact-card:hover{
    border:1px solid #ff2e2e;
    transform:translateY(-5px);
}

.contact-title{
    color:#ff2e2e;
    margin-bottom:30px;
    margin-top: -70px;
    font-size:28px;
}

/* CONTACT ITEM */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
}

/* ICON FIX (IMPORTANT) */

.contact-item i{
    font-size:20px;
    color:#ff2e2e;
    width:30px;
    min-width:30px;
    text-align:center;
    margin-top:4px;
}

.contact-item h4{
    color:white;
    margin-bottom:5px;
    font-size:16px;
}

.contact-item p{
    color:#b0b0b0;
    line-height:1.6;
    font-size:14px;
}

/* ===============================
   MAP
=================================*/

.map-box{
    margin-top:30px;
    border-radius:15px;
    overflow:hidden;
    width:100%;
}

.map-box iframe{
    width:100%;
    height:320px;
    border:0;
    display:block;
}

/* ===============================
   RIGHT FORM
=================================*/

.apply-form-box{
    flex:1;
    background:#161b22;
    padding:40px;
    border-radius:20px;
    border:1px solid #222;
}

.apply-title{
    color:#ff2e2e;
    margin-bottom:30px;
}

/* FORM */

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
}

.form-group label{
    color:white;
    margin-bottom:8px;
    font-size:14px;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding:12px;
    border-radius:8px;
    border:1px solid #333;
    background:#0f0f12;
    color:white;
    outline:none;
    resize:none;
    transition:0.3s ease;
    font-family:inherit;
}

.form-group textarea{
    min-height:120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border:1px solid #ff2e2e;
}

/* BUTTON */

.apply-btn{
    width:100%;
    padding:14px;
    background:#ff2e2e;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s ease;
}

.apply-btn:hover{
    background:#ff0000;
}

/* ===============================
   ANIMATION
=================================*/

.slide-left,
.slide-right{
    opacity:0;
    transition:0.8s ease;
}

.slide-left{
    transform:translateX(-80px);
}

.slide-right{
    transform:translateX(80px);
}

.show{
    opacity:1;
    transform:translateX(0);
}

/* ===============================
   MOBILE VIEW
=================================*/

@media(max-width:768px){

    .contact-apply-container{
        flex-direction:column;
        gap:40px;
    }

    .contact-card,
    .apply-form-box{
        padding:25px;
    }

    .contact-title{
        font-size:22px;
    }

    /* ICON MOBILE FIX */
    .contact-item{
        gap:12px;
    }

    .contact-item i{
        width:26px;
        min-width:26px;
        font-size:18px;
    }

    .contact-item h4{
        font-size:14px;
    }

    .contact-item p{
        font-size:13px;
    }

    /* MAP HEIGHT */
    .map-box iframe{
        height:220px;
    }

}







/* =========================
   FOOTER SECTION
========================= */
.footer{
    padding:60px 20px 20px 20px;
    background:#000;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

.footer-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

/* =========================
   LOGO
========================= */
.footer-logo{
    width:150px;
    margin-bottom:10px;
}

/* =========================
   HEADINGS
========================= */
.footer-heading{
    text-transform:uppercase;
    font-size:15px;
    letter-spacing:1px;
    margin-bottom:20px;
}

/* =========================
   TEXT
========================= */
.footer-col p{
    color:#aaa;
    line-height:1.6;
}

/* =========================
   QUICK LINKS
========================= */
.quick-links{
    list-style:none;
    padding:0;
    margin:0;
}

.quick-links li{
    margin-bottom:12px;
}

.quick-links a{
    text-decoration:none;
    color:#aaa;
    transition:0.3s;
}

.quick-links a:hover{
    color:#ff2e2e;
    padding-left:8px;
}

/* =========================
   CONTACT
========================= */
.contact-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:15px;
    color:#aaa;
}

.contact-item i{
    color:#ff2e2e;
    margin-top:4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons{
    display:flex;
    gap:20px;
}

.social-icons a{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1c1f26;
    font-size:22px;
    transition:all 0.4s ease;
    text-decoration:none;
}

/* YOUTUBE */
.social-icons .youtube{
    color:#ff0000;
}

.social-icons .youtube:hover{
    background:#ff0000;
    color:#fff;
    transform:translateY(-6px) scale(1.05);
    box-shadow:0 0 18px rgba(255,0,0,0.7);
}

/* INSTAGRAM */
.social-icons .instagram{
    color:#e1306c;
}

.social-icons .instagram:hover{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
    color:#fff;
    transform:translateY(-6px) scale(1.05);
    box-shadow:0 0 18px rgba(225,48,108,0.6);
}

/* FACEBOOK */
.social-icons .facebook{
    color:#1877f2;
}

.social-icons .facebook:hover{
    background:#1877f2;
    color:#fff;
    transform:translateY(-6px) scale(1.05);
    box-shadow:0 0 18px rgba(24,119,242,0.6);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,0.05);
    font-size:14px;
    color:#777;
}

/* =========================
   SCROLL ANIMATION
========================= */
.fade-left,
.fade-right,
.fade-up{
    opacity:0;
    transition:all 0.9s ease;
}

.fade-left{
    transform:translateX(-80px);
}

.fade-right{
    transform:translateX(80px);
}

.fade-up{
    transform:translateY(80px);
}

.show{
    opacity:1;
    transform:translate(0,0);
}

/* Stagger Delay */
.footer-col:nth-child(1){
    transition-delay:0.1s;
}
.footer-col:nth-child(2){
    transition-delay:0.3s;
}
.footer-col:nth-child(3){
    transition-delay:0.5s;
}
.footer-col:nth-child(4){
    transition-delay:0.7s;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){
    .footer-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){

    .footer-wrapper{
        grid-template-columns:1fr;
        text-align:left;   /* LEFT ALIGN */
    }

    .footer-col{
        text-align:left;
    }

    .contact-item{
        justify-content:flex-start;  /* LEFT ALIGN ICON + TEXT */
    }

    .social-icons{
        justify-content:flex-start;  /* LEFT ALIGN SOCIAL ICONS */
        margin-top:10px;
    }

    .social-icons a{
        width:45px;
        height:45px;
        font-size:20px;
    }

    /* Disable animation shift on mobile */
    .fade-left,
    .fade-right,
    .fade-up{
        transform:none !important;
        opacity:1 !important;
    }
}
/* FLOATING CONTACT CONTAINER */

.floating-contact{
    position:fixed;
    bottom:20px;
    right:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:99999;
}

/* COMMON BUTTON STYLE */

.floating-contact a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:white;
    font-size:22px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.4);
    transition:0.3s ease;
}

/* PHONE BUTTON */

.float-phone{
    background:#25D366;
}

/* WHATSAPP BUTTON */

.float-whatsapp{
    background:#25D366;
}

/* HOVER EFFECT */

.floating-contact a:hover{
    transform:scale(1.1);
}

/* PULSE ANIMATION */

@keyframes pulse{
    0%{ box-shadow:0 0 0 0 25d366; }
    70%{ box-shadow:0 0 0 15px rgba(255,46,46,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,46,46,0); }
}

.float-phone{
    animation:pulse 2s infinite;
}

/* MOBILE OPTIMIZATION */

@media(max-width:768px){

.floating-contact{
    bottom:15px;
    right:15px;
}

.floating-contact a{
    width:60px;
    height:60px;
    font-size:24px;
}

}


/* BODY */

body{
    background:#0f0f12;
    position:relative;
    overflow-x:hidden;
}

/* BACKGROUND ICON CONTAINER */

.bg-animation{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:0;
}

.bg-animation i{
    position:absolute;
    color:rgba(255,255,255,0.03);  /* soft white */
    font-size:70px;
    animation:float 15s linear infinite;
}

/* RANDOM POSITIONS */

.bg-animation i:nth-child(1){
    top:10%;
    left:15%;
    animation-duration:18s;
}

.bg-animation i:nth-child(2){
    top:50%;
    left:70%;
    animation-duration:22s;
}

.bg-animation i:nth-child(3){
    top:80%;
    left:30%;
    animation-duration:20s;
}

.bg-animation i:nth-child(4){
    top:25%;
    left:85%;
    animation-duration:25s;
}

.bg-animation i:nth-child(5){
    top:65%;
    left:10%;
    animation-duration:19s;
}

/* FLOAT ANIMATION */

@keyframes float{
    0%{
        transform:translateY(0px) rotate(0deg);
    }
    50%{
        transform:translateY(-40px) rotate(10deg);
    }
    100%{
        transform:translateY(0px) rotate(0deg);
    }
}