*{
    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;
    }

}










.directory{
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.page-title{
text-align:center;
margin-bottom:50px;
font-weight: 800;
font-size: 42px;
color:#ff2e2e
}

.zoom{
transform:scale(0.7);
opacity:0;
transition:0.8s ease;
}

.zoom.visible{
transform:scale(1);
opacity:1;
}

/* FILTER */
.filters{
text-align:center;
margin-bottom:60px;
}

.filter{
padding:10px 20px;
margin:5px;
border:none;
background:#161b22;
color:white;
border-radius:20px;
cursor:pointer;
transition:0.3s;
}

.filter.active,
.filter:hover{
background:#ff2e2e;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;
}

/* CARD */
.card{
background:#161b22;
padding:30px;
border-radius:20px;
text-align:center;
transition:0.4s ease;
}

.card:hover{
transform:translateY(-10px);

box-shadow:0 0 25px rgba(255,46,46,0.4);
}

.card img{
width:80px;
height:80px;
border-radius:50%;
margin-bottom:20px;
}

.subs{
margin-top:10px;
color:#ff2e2e;
font-weight:600;
}

.btns{
display:flex;
justify-content:center;
gap:15px;
margin-top:15px;
}

.yt{
width:40px;
height:40px;
background:#ff2e2e;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
text-decoration:none;
}

.collab{
padding:8px 15px;
background:#222;
border:none;
color:white;
border-radius:20px;
cursor:pointer;
}
.hide{
    opacity:0;
    transform:scale(0.85);
    pointer-events:none;
    transition:0.4s ease;
}
/* SCROLL ANIMATIONS */
.anim-left{
transform:translateX(-80px);
opacity:0;
transition:0.8s ease;
}

.anim-right{
transform:translateX(80px);
opacity:0;
transition:0.8s ease;
}

.anim-top{
transform:translateY(-80px);
opacity:0;
transition:0.8s ease;
}

.visible{
transform:translate(0);
opacity:1;
}
















/* =========================
   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);
    }
}