*{
    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 */
.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;
    }

}








/* ===============================
   ABOUT SECTION
=================================*/

.about-section{
    background:#0f0f12;
    padding:50px 20px;
}

.about-container{
    max-width:1100px;
    margin:auto;
}

.about-header{
    text-align:center;
    margin-bottom:70px;
}

.about-title{
    font-size:42px;
    font-weight:800;
    color:#ff2e2e;
}

.about-content-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.about-content{
    flex:1;
}

.about-subtitle{
    font-size:24px;
    margin-bottom:20px;
    color:white;
}

.about-content p{
    color:white;
    line-height:1.8;
    text-align: justify;
    margin-bottom:20px;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    max-width:100%;
    border-radius:20px;
}

/* ===============================
   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){

.about-content-wrapper{
    flex-direction:column;
    text-align:center;
}

.about-title{
    font-size:30px;
}

}








/* ===============================
   VISION & MISSION
=================================*/

.vm-section{
    background:#111418;
    padding:120px 20px;
}

.vm-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.vm-box{
    flex:1;
    background:#161b22;
    padding:60px 30px 40px 30px;
    border-radius:20px;
      border:2px solid #ff2e2e;
    text-align:center;
    position:relative;
    transition:0.4s ease;
    border:1px solid transparent;
}

.vm-box:hover{
    border:1px solid #ff2e2e;
    transform:translateY(-8px);
}

/* ICON CENTER TOP */

.vm-icon{
    width:80px;
    height:80px;
    background:#ff2e2e;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:white;
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
}

.vm-box h3{
    margin-top:50px;
    font-size:24px;
    color:white;
   
    margin-bottom:20px;
}

.vm-box p{
    color:white;
    line-height:1.8;
    text-align: justify;
}

/* ===============================
   ANIMATIONS
=================================*/

.slide-left,
.slide-right{
    opacity:0;
    transition:0.8s ease;
}

.slide-left{
    transform:translateX(-100px);
}

.slide-right{
    transform:translateX(100px);
}

.show{
    opacity:1;
    transform:translateX(0);
}

/* ===============================
   MOBILE VIEW
=================================*/

@media(max-width:768px){

.vm-container{
    flex-direction:column;
    gap:80px;
}

.vm-box{
    padding:60px 20px 30px 20px;
}

}


















/* ===============================
   LEADERSHIP SECTION
=================================*/

.leader-section{
    padding:50px 20px;
}

.leader-container{
    max-width:1200px;
    margin:auto;
}

/* HEADING */

.leader-header{
    text-align:center;
    margin-bottom:80px;
}

.leader-title{
    font-size:42px;
    font-weight:800;
    color:#ff2e2e;
}

.leader-line{
    width:80px;
    height:4px;
    background:#ff2e2e;
    margin:15px auto 0;
    border-radius:5px;
}

/* CARDS */

.leader-cards{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.leader-card{
    flex:1;
    background:#161b22;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid #222;
    transition:0.4s ease;
}

.leader-card:hover{
    transform:translateY(-10px);
    border:1px solid #ff2e2e;
}

/* ICON */

.leader-icon{
    width:120px;
    height:120px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    background:#0f0f12;
    border:3px solid #ff2e2e;
    color:#ff2e2e;
    transition:0.4s ease;
}

.leader-card:hover .leader-icon{
    background:#ff2e2e;
    color:white;
    transform:scale(1.1);
}

/* TEXT */

.leader-card h3{
    color:white;
    margin-bottom:8px;
    font-size:20px;
}

.leader-card span{
    display:block;
    color:#ff2e2e;
    margin-bottom:15px;
    font-size:14px;
}

.leader-card p{
    color:white;
    line-height:1.7;
    font-size:14px;
}

/* ===============================
   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:768px){

.leader-title{
    font-size:28px;
}

.leader-cards{
    flex-direction:column;
    gap:50px;
}

.leader-card{
    padding:30px 20px;
}

}








/* ===============================
   PRESTIGE MILESTONES
=================================*/

.prestige-section{
    background:#111418;
    padding:50px 20px;
}

.prestige-container{
    max-width:1200px;
    margin:auto;
}

/* HEADING */

.prestige-header{
    text-align:center;
    margin-bottom:80px;
}

.prestige-header h2{
    font-size:42px;
    font-weight:800;
    color:#ff2e2e;
}

.prestige-underline{
    width:100px;
    height:4px;
    background:#ff2e2e;
    margin:15px auto 0;
    border-radius:4px;
}

/* WRAPPER */

.prestige-wrapper{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

/* ITEM */

.prestige-item{
    flex:1;
    min-width:250px;
    background:#161b22;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid #222;
    transition:0.4s ease;
    position:relative;
}

.prestige-item:hover{
    transform:translateY(-10px);
    border:1px solid #ff2e2e;
}

/* YEAR BADGE */

.prestige-year{
    display:inline-block;
    background:#ff2e2e;
    color:white;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:bold;
}

/* TEXT */

.prestige-item h3{
    color:white;
    margin-bottom:15px;
}

.prestige-item 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:768px){

.prestige-header h2{
    font-size:28px;
}

.prestige-wrapper{
    flex-direction:column;
    gap:40px;
}

}











/* =========================
   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);
    }
}