*{
    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;
    }

}









/* ===============================
   BENEFITS SECTION
=================================*/

.benefits-section{
    background:#0f0f12;
    padding:50px 20px;
    display:flex;
    justify-content:center;
}

.benefits-container{
    max-width:1100px;
    width:100%;
    text-align:center;
}

.benefits-title{
    color:#ff2e2e;
    font-size:42px;
    font-weight: 800;
    margin-bottom:70px;
    text-transform:uppercase;
}

/* GRID */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
}

/* CARD */

.benefit-card{
    background:#161b22;
    padding:40px 25px;
    border-radius:20px;
    transition:all 0.4s ease;
    border:1px solid transparent;
}

.benefit-card:hover{
   transform:translateY(-10px);
box-shadow:0 0 25px rgba(255,46,46,0.4);
border: 1px solid red;
}

/* ICON */

.benefit-card i{
    font-size:45px;
    color:#ff2e2e;
    margin-bottom:20px;
    transition:0.4s;
}

.benefit-card:hover i{
    transform:scale(1.2);
    color:#ffffff;
}

/* TEXT */

.benefit-card h3{
    margin-bottom:15px;
    font-size:20px;
    color:#ffffff;
}

.benefit-card p{
    font-size:14px;
    color:#b0b0b0;
}

/* ===============================
   SCROLL ZOOM ANIMATION
=================================*/

.zoom{
    opacity:0;
    transform:scale(0.8);
    transition:all 0.8s ease;
}

.zoom.show{
    opacity:1;
    transform:scale(1);
}

/* ===============================
   MOBILE
=================================*/

@media(max-width:768px){

.benefits-section{
    padding:80px 15px;
}

.benefits-title{
    font-size:24px;
}

}




/* =================================
   REQUIREMENTS SECTION
=================================*/

.requirements-section{
    background:#111418;
    padding:60px 20px;
}

/* TITLE */
.req-title{
    text-align:center;
    font-size:38px;
    color:#ff2e2e;
    font-weight:800;
    margin-bottom:60px;
    text-transform:uppercase;
}

/* =================================
   TIMELINE CONTAINER
=================================*/

.req-timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

/* Vertical Red Line */
.req-timeline::before{
    content:"";
    position:absolute;
    left:40px;
    top:0;
    bottom:0;               /* Important */
    width:3px;
    background:#ff2e2e;
}

/* =================================
   TIMELINE ITEM
=================================*/

.req-item{
    position:relative;      /* Important */
    display:flex;
    align-items:flex-start;
    margin-bottom:60px;
    padding-left:100px;
}

/* Number Circle */
.req-number{
    position:absolute;
    left:23px;
    top:0;
    width:35px;
    height:35px;
    background:#ff2e2e;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    z-index:999;            /* Important */
}

/* Content Box */
.req-content{
    background:#161b22;
    padding:25px;
    border-radius:15px;
    width:100%;
    transition:.3s ease;
}

.req-content:hover{
    transform:translateY(-5px);
    border:1px solid #ff2e2e;
}

/* Header */
.req-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.req-header i{
    color:#ff2e2e;
    font-size:18px;
}

.req-header h3{
    color:#fff;
    font-size:17px;
}

.req-content p{
    color:#b0b0b0;
    font-size:14px;
    line-height:1.6;
}

/* =================================
   MOBILE VERSION
=================================*/

@media(max-width:768px){

    .req-title{
        font-size:24px;
        margin-bottom:40px;
    }

    /* Move vertical line */
    .req-timeline::before{
        left:14px;
        width:2px;
    }

    .req-item{
        padding-left:60px;
        margin-bottom:45px;
    }

    .req-number{
        left:0;
        top:5px;
        width:28px;
        height:28px;
        font-size:13px;
    }

}













/* ===============================
   REVENUE SECTION
=================================*/

.revenue-section{
    background:#0f0f12;
    padding:40px 20px;
}

.rev-container{
    max-width:1100px;
    margin:auto;
}

/* HEADING */

.rev-title{
    font-size:42px;
    font-weight:800;
    color:#ff2e2e;
    text-align: center;
    margin-bottom:70px;
}

/* GRID */

.rev-grid{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    flex-wrap:wrap;
}

/* LEFT SIDE */

.rev-left{
    flex:1;
}

.rev-left h3{
    color:#ffffff;
    font-size:26px;
    margin-bottom:20px;
}

.rev-desc{
    color:#b0b0b0;
    line-height:1.7;
    margin-bottom:40px;
}

/* FEATURES */

.rev-features{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

/* TICK BOX */

.tick-box{
    min-width:32px;
    height:32px;
    background:rgba(255,46,46,0.15);
    border:1px solid #ff2e2e;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.tick-box i{
    color:#ff2e2e;
    font-size:14px;
}

.feature p{
    color:#ffffff;
    line-height:1.6;
    margin:0;
}

/* RIGHT SIDE */

.rev-right{
    flex:1;
    text-align:center;
}

.percent-wrapper{
    font-size:120px;
    font-weight:800;
    color:#ff2e2e;
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

.percent-symbol{
    font-size:50px;
    margin-top:25px;
}

.share-text{
    margin-top:25px;
    letter-spacing:3px;
    color:#ffffff;
}

/* ===============================
   MOBILE
=================================*/

@media(max-width:768px){

.rev-grid{
    flex-direction:column;
    gap:60px;
}

.rev-title{
    text-align:center;
}

.rev-left{
    text-align:center;
}

.feature{
    justify-content:center;
}

.percent-wrapper{
    font-size:80px;
}

.percent-symbol{
    font-size:35px;
    margin-top:15px;
}

}
/* ANIMATION BASE */
.slide-left,
.slide-right,
.zoom{
    opacity:0;
    transition:0.8s ease;
}

.slide-left{
    transform:translateX(-80px);
}

.slide-right{
    transform:translateX(80px);
}

.zoom{
    transform:scale(0.7);
}

.show{
    opacity:1;
    transform:translateX(0) scale(1);
}








.apply-section{
     background:#111418;
    padding:80px 20px;
}

.apply-container{
    max-width:600px;
    margin:auto;
    text-align:center;
}

/* HEADER */

.apply-header{
    margin-bottom:60px;
}

.apply-title{
    font-size:40px;
    font-weight:800;
    color:#ff2e2e;
    margin-bottom:20px;
}

.apply-desc{
    color:white;
    
}

/* FORM BOX */

.apply-form-box{
    background:#161b22;
    padding:40px;
    border-radius:20px;
    border:1px solid transparent;
    transition:0.4s ease;
}

.apply-form-box:hover{
    border:1px solid #ff2e2e;
}

/* FORM GROUP */

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
    text-align:left;
}

.form-group label{
    color:#ffffff;
    margin-bottom:8px;
    font-size:14px;
}

.form-group input,
.form-group select{
    padding:12px 15px;
    border-radius:8px;
    border:1px solid #333;
    background:#0f0f12;
    color:white;
    outline:none;
    transition:0.3s ease;
}

.form-group input:focus,
.form-group select:focus{
    border:1px solid #ff2e2e;
}

/* BUTTON */

.apply-btn{
    width:100%;
    padding:14px;
    background:#ff2e2e;
    color:white;
    border:none;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.apply-btn:hover{
    background:#ff0000;
    transform:translateY(-3px);
}

/* ===============================
   SCROLL 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){

.apply-section{
    padding:80px 15px;
}

.apply-title{
    font-size:28px;
}

.apply-form-box{
    padding:25px;
}

}
.form-group textarea{
    width:100%;
    padding:14px;
    border-radius:10px;
    border:1px solid #333;
    background:#0f0f12;
    color:white;
    font-size:14px;
    outline:none;
    resize:none;          /* remove resize handle */
    min-height:120px;
    font-family:inherit;
    transition:0.3s ease;
}

.form-group textarea::placeholder{
    color:#777;
}

.form-group textarea:focus{
    border:1px solid #ff2e2e;
    box-shadow:0 0 10px rgba(255,46,46,0.2);
}
@media(max-width:768px){

    .form-group textarea{
        width:100%;
        padding:12px;
        font-size:13px;
        min-height:100px;
        border-radius:8px;
    }

    .form-group textarea::placeholder{
        font-size:13px;
    }

}







/* =========================
   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);
    }
}