*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}
html, body{
    overflow-x: hidden;
}

body{
    background:#ffffff;
     
    /* background:linear-gradient(90deg,#0a0a0ae6,#1d1800); */
}

/* BASE */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
    opacity:0;
    transition:all 0.8s ease;
}

/* DEFAULT (BOTTOM TO TOP) */
.reveal{
    transform:translateY(60px);
}

/* LEFT */
.reveal-left{
    transform:translateX(-80px);
}

/* RIGHT */
.reveal-right{
    transform:translateX(80px);
}

/* ZOOM */
.reveal-zoom{
    transform:scale(0.8);
}

/* ACTIVE (WHEN VISIBLE) */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active{
    opacity:1;
    transform:translate(0,0) scale(1);
}

/* ===== COLORS ===== */
:root{
    --gold1:#c9a227;
    --gold2:#f5d76e;
    --gold3:#fff3b0;
    --red1:#f31818;
    --red2:#fe3a3af3;
    --red3:#f15454df;

    --dark:#1a1a1a; /* dark text color */
    --secondary:#555555; /* secondary text */
    --section-bg:#fffdf0; /* light cream background */
}



/*========================= about hero==================== */

.about-hero{
    position: relative;
    height: 70vh;
    background: url("/images/about_BG.webp") center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* DARK OVERLAY */
.about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:1;
}

/* GOLD GRADIENT FLOW */
.about-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        #050505 0%,
        rgba(0,0,0,0.9) 20%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.2) 75%,
        transparent 100%
    );
  
    z-index:1;
    pointer-events:none;
}

/* CONTENT */
.about-hero-content{
    position: relative;
    z-index:2;
    text-align:center;
    max-width:700px;
    padding:0 20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}


/* HEADING */
.about-hero-content h1{
    font-size:48px;
    margin-bottom:15px;
    font-weight:700;
    color: #ffffff;
}

.about-hero-content h1 span{
    background:linear-gradient(90deg,var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */
.about-hero-content p{
    font-size:16px;
    color:#ddd;
    line-height:1.6;
}


@media(max-width:600px){

    .about-hero{
        height: 45vh; /* slightly compact */
        padding: 0 15px;
    }

    .about-hero-content{
        max-width: 100%;
        padding: 0 10px;
    }

    /* HEADING */
    .about-hero-content h1{
        font-size: 28px; /* ✅ perfect mobile size */
        line-height: 1.3;
        margin-bottom: 10px;
        margin-top: 0; /* ❌ remove extra push */
        text-align: center;
    }

    .about-hero-content h1 span{
        display: inline-block;
    }

    /* TEXT */
    .about-hero-content p{
        font-size: 14px; /* ✅ readable + clean */
        line-height: 1.6;
        color: #ccc;
        max-width: 90%;
        margin: 0 auto;
    }

}

/* ================= ELITE ABOUT ================= */
.about-elite{
    padding:90px 8% 60px;
    background:#ffffff;
    color:var(--dark);
    margin-top: 0;

    position: relative; /* FIX */
}

/* LAYOUT */
.about-elite-container{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;  /* ✅ change from flex-start */
}

/* LEFT SIDE */
.about-left{
    position: sticky;
    top: 0;
    align-self: start;   /* ✅ VERY IMPORTANT */
}
.about-left::before{
    content:"ABOUT";
    position:absolute;
    margin-top: 100px;
    margin-left: -40px;
    font-size:120px;
    font-weight:800;
    color:rgba(0,0,0,0.04);
    letter-spacing:10px;
    z-index:0;
}

.about-left .tag{
    color:var(--dark);
   
    font-size:14px;
    letter-spacing:2px;
}

.about-left h2{
    font-size:40px;
    line-height:1.3;
    margin-top:10px;
}

.about-left h2 span{
    background:linear-gradient(90deg,var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* RIGHT SIDE */
.about-right{
    border-left:1px solid rgba(89, 89, 89, 0.715);
    padding-left:40px;
}

/* INTRO TEXT */
.about-right .intro{
    font-size:18px;
    font-weight: 500;
    color:var(--dark);
    margin-bottom:25px;
    line-height:1.7;
}

/* NORMAL TEXT */
.about-right p{
    color:var(--secondary);
    line-height:1.8;
    margin-bottom:18px;
    font-size:15px;
}

/* INLINE FEATURE LINE */
.about-line{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin:30px 0;
}

/* GOLD LINE */
.about-line span{
    width:3px;
    height:100%;
    background:linear-gradient(var(--red1),var(--red2));
    display:block;
}

/* TEXT */
.about-line p{
    color:#a1a1a1f0;
    font-size:15px;
}
/* RESPONSIVE */
@media(max-width:900px){
    .about-elite-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-left{
        position:relative;
        top:0;
    }

    .about-right{
        padding-left:0;
        border-left:none;
    }
}

.about-strip{
    display:flex;
    gap:30px;
    margin-bottom:30px;
    padding-bottom:15px;
    border-bottom:1px solid rgba(4, 4, 4, 0.08);
}

.about-strip div h4{
    font-size:16px;
    color:#383838;
    margin-bottom:3px;
}

.about-strip div span{
    font-size:14px;
    color:var(--red1);
    font-weight: 700;
    letter-spacing:1px;
}


.about-flow{
    position:relative;
    padding-left:30px;
    margin:35px 0;
}

/* CURVED GOLD LINE EFFECT */
.flow-line{
    position:absolute;
    left:0;
    top:5px;
    width:4px;
    height:80%;
     background:linear-gradient(var(--red1),var(--red2));
    border-radius:10px;

    /* Glow */
    box-shadow:0 0 12px rgba(137, 131, 106, 0.5);
}

/* SMALL DOT AT TOP */
.flow-line::before{
    content:"";
    position:absolute;
    top:-6px;
    left:50%;
    transform:translateX(-50%);
    width:10px;
    height:10px;
    background:var(--red2);
    border-radius:50%;
    box-shadow:0 0 10px rgba(245,215,110,0.8);
}

/* TEXT */
.about-flow p{
    color:#6a6969;
    line-height:1.7;
    font-size:15px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-strip{
        flex-direction:column;
        gap:10px;
    }
}


@media(max-width:600px){

    .about-elite{
        padding: 60px 20px 40px;
        margin-top: -20px;
    }

    /* STACK LAYOUT */
    .about-elite-container{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* LEFT SIDE */
    .about-left{
        position: relative;
        top: 0;
        text-align: center;
    }

    /* WATERMARK FIX */
    .about-left::before{
        font-size: 80px; 
        margin-top: 40px;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        letter-spacing: 6px;
    }

    .about-left .tag{
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-left h2{
        font-size: 26px; 
        line-height: 1.4;
    }

    /* RIGHT SIDE */
    .about-right{
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    /* INTRO */
    .about-right .intro{
        font-size: 15px;
        line-height: 1.6;
    }

    /* PARAGRAPH */
    .about-right p{
        font-size: 14px;
        line-height: 1.7;
    }

    /* STRIP */
    .about-strip{
    display: flex;
    justify-content: center;  
    flex-direction: row; 
    align-items: center;
    gap: 30px;                
    text-align: center;
    padding-bottom: 15px;
    flex-wrap: wrap;          
}

.about-strip div{
    display: flex;
    flex-direction: column;
    align-items: center;      /* ✅ center each block */
}

/* HEADING */
.about-strip div h4{
    font-size: 20px;          /* ✅ bigger & premium */
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}


/* SUBTEXT */
.about-strip div span{
    font-size: 15px;
    color: var(--red1);
    font-weight: 700;
    letter-spacing: 1px;
}

    /* FEATURE LINE */
    .about-line{
        gap: 10px;
        margin: 20px 0;
        justify-content: center;
        text-align: left;
    }

    .about-line span{
        width: 2px;
    }

    .about-line p{
        font-size: 14px;
    }

    /* FLOW SECTION */
    .about-flow{
        padding-left: 20px;
        margin: 25px 0;
        text-align: left;
    }

    .flow-line{
        width: 3px;
        height: 75%;
    }

    .flow-line::before{
        width: 8px;
        height: 8px;
    }

    .about-flow p{
        font-size: 14px;
    }

}


/* ================= MV SECTION ================= */
.mv-section{
    padding:100px 6%;
    background:#ffffff;
    color:var(--dark);
    text-align:center;
}

/* HEADER */
.mv-header h2{
    font-size:40px;
    margin-bottom:60px;
}

.mv-header span{
    background:linear-gradient(var(--red1),var(--red2));

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* GRID */
.mv-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.mv-card{
    position:relative;
    /* background:var(--gold3); */
       background:linear-gradient(var(--red1),var(--red2));

    border-radius:12px;
    overflow:hidden;
    transition:0.4s;
}

/* TOP SECTION */
.mv-top{
    height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

/* DARK + LOW OPACITY IMAGE CONTROL */
.mv-top::before{
    content:"";
    position:absolute;
    inset:0;

    
    background:linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.274),   /* very dark */
        rgba(0, 0, 0, 0.563),    /* darker */
        rgba(0,0,0,0.95)    /* almost black */
    );

    z-index:1;
}

.mv-top::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        120deg,
        rgba(201,162,39,0.08),
        transparent 60%
    );

    z-index:1;
}

.mission-bg{
    background:url("https://images.unsplash.com/photo-1698434156098-68e834638679?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
}

.vision-bg{
    background:url("https://images.unsplash.com/photo-1503387762-592deb58ef4e") center/cover no-repeat;
}

.values-bg{
    background:url("https://images.unsplash.com/photo-1521791136064-7986c2920216") center/cover no-repeat;
}

/* TITLE */
.mv-top h3{
    font-size:22px;
    letter-spacing:2px;
    color:#ffffff;
    z-index: 4;
}

/* ICON (OVERLAP STYLE) */
.mv-icon{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:140px;

    width:70px;
    height:70px;
    border-radius:50%;

    background:#111;
    border:2px solid var(--red2);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:2;
}

/* ICON STYLE */
.mv-icon i{
    font-size:22px;
    color:white;
}

/* CONTENT */
.mv-content{
    padding:50px 25px 30px;
}

.mv-content p{
    font-size:14px;
    font-weight: 400;
    color:#ffffff;
    line-height:1.7;
}

/* HOVER EFFECT */
.mv-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(70, 67, 55, 0.54);
}

@media(max-width:600px){

    .mv-section{
        padding: 60px 20px;
    }

    /* HEADER */
    .mv-header h2{
        font-size: 26px;
        margin-bottom: 30px;
    }

    /* STACK CARDS */
    .mv-container{
        grid-template-columns: 1fr; /* ✅ single column */
        gap: 25px;
    }

    /* CARD */
    .mv-card{
        border-radius: 10px;
    }

    /* TOP IMAGE AREA */
    .mv-top{
        height: 140px;
    }

    .mv-top h3{
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    /* ICON (FIX OVERLAP) */
    .mv-icon{
        width: 55px;
        height: 55px;
        top: 110px; /* adjust for smaller top */
    }

    .mv-icon i{
        font-size: 18px;
    }

    /* CONTENT */
    .mv-content{
        padding: 40px 20px 25px;
    }

    .mv-content p{
        font-size: 13px;
        line-height: 1.6;
    }

}


/*=========================== Why================================= */

.why-ultra{
    padding:30px 8%;
    color:var(--dark);
    position:relative;
    overflow:hidden;
    font-family:Segoe UI;
    background:linear-gradient(180deg,#ffffff,#ffffff);
}

.why-ultra::after{
    content:"";
    position:absolute;
    inset:0;
    background:url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
    opacity:0.05;
}

/* HEADER */
.why-header{
    text-align:center;
    margin-bottom:50px;
}

.why-header h2{
    font-size:44px;
    letter-spacing:1px;
}

.why-header span{
        
    background:linear-gradient(var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* PROGRESS BAR */
.why-progress{
    width:60%;
    height:2px;
    background:rgb(200, 198, 198);
    margin:0 auto 60px;
    position:relative;
}

.why-bar{
    height:100%;
    width:0%;
    background:linear-gradient(var(--red1),var(--red2));
    transition:0.5s ease;
}

/* WRAPPER */
.why-wrap{
    overflow:hidden;
}

/* TRACK */
.why-track{
    display:flex;
    transition:transform 0.6s ease;
}

.why-item{
    min-width:100%;
    text-align:center;
    padding:60px 12%;
    position:relative;

    background:rgba(255, 255, 255, 0.6);
    backdrop-filter:blur(10px);
    border-radius:20px;
    box-shadow:0 10px 40px rgba(198, 196, 196, 0.803);
    transition:0.4s ease;
     opacity:0.6;
    transform:scale(0.9);

    flex-shrink:0;
}
/* active slide effect */
.why-item{
    opacity:0.5;
    transform:scale(0.9);
    transition:0.4s;
}

.why-item.active{
    opacity:1;
    transform:scale(1);
}



/* BIG BACKGROUND NUMBER */
.bg-number{
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    color:rgba(51, 51, 51, 0.262);
    pointer-events:none;
     font-size:180px;
    font-weight:900;
    background:linear-gradient(175deg,var(--red1),transparent);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    opacity:0.25;
}

/* TITLE */
.why-item h3{
    font-size:34px;
    margin-bottom:20px;
    transition:0.3s;
    color:#272626;
}

/* TEXT */
.why-item p{
    color:#555454;
    max-width:520px;
    margin:auto;
    line-height:1.8;
}

/* GOLD LINE */
.why-item::after{
    content:"";
    display:block;
    width:90px;
    height:2px;
    margin:25px auto 0;
    background:linear-gradient(90deg,var(--red1),var(--red2));
}

/* HOVER EFFECT */
.why-item:hover h3{
    color:var(--gold1);
}

/* CONTROLS */
.why-controls{
    text-align:center;
    margin-top:5px; 
    margin-bottom: 20px;   
}

.why-controls{
    position:relative;
    z-index:10;
}

.why-btn{
    background:transparent;
    border:1px solid var(--red3);
    color:var(--red2);
    padding:12px 18px;
    margin:0 10px;
    cursor:pointer;
    transition:0.3s;
    font-size:16px;
}

.why-btn:hover{
    background:var(--red2);
    color:#000;
}

/* PREMIUM GLOW EFFECT */
.why-ultra::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(201,162,39,0.15), transparent 70%);
    top:-120px;
    left:-120px;
}

@media(max-width:600px){

    .why-ultra{
        padding: 40px 15px;
    }

    /* HEADER */
    .why-header{
        margin-bottom: 25px;
    }

    .why-header h2{
        font-size: 24px;
        line-height: 1.3;
    }

    /* PROGRESS BAR */
    .why-progress{
        width: 85%;
        margin-bottom: 30px;
    }

    /* WRAP FIX */
    .why-wrap{
        overflow: hidden;
        width: 100%;
        
    }

    .why-track{
        display: flex;
        transition: transform 0.6s ease;
    }

    /* SLIDE (MOST IMPORTANT FIX) */
    .why-item{
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;

        padding: 30px 20px; /* ✅ NO % (fixes half-slide bug) */
        border-radius: 12px;

        opacity: 0.7;
        transform: scale(0.95);
    }

    .why-item.active{
        opacity: 1;
        transform: scale(1);
    }

    /* BIG NUMBER */
    .bg-number{
        font-size: 100px;
        top: 15px;
        opacity: 0.20;
    }

    /* TITLE */
    .why-item h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

    /* TEXT */
    .why-item p{
        font-size: 14px;
        line-height: 1.6;
    }

    /* GOLD LINE */
    .why-item::after{
        width: 50px;
        margin-top: 15px;
    }

    /* BUTTONS */
    .why-controls{
        margin-top: 10px;
    }

    .why-btn{
        padding: 10px 12px;
        font-size: 13px;
        margin: 5px;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

