body{overflow-x:hidden;}


.about-hero{
    position: relative;
    height: 97vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

/* VIDEO */
.bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* OVERLAY */
.about-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(104, 46, 2, 0.5);
    z-index: -1;
}

/* CURVE */
.about-hero::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    border-radius: 100% 100% 0 0;
    transform: scaleX(1.1);
    z-index: 1;
}

/* CONTENT */
.about-contents{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.about-contents h4{
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-contents h1{
    font-size: 60px;
    margin-bottom: 20px;
}

.about-contents-p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}
 

 @media (max-width: 1100px){
    .about-contents h1{
        font-size: 48px;
    }

    .about-contents h4{
        font-size: 18px;
    }

    .about-contents-p{
        font-size: 16px;
    }
}
@media (max-width: 800px){

    .about-hero{
        height: 85vh;
    }

    .about-contents h1{
        font-size: 36px;
    }

    .about-contents h4{
        font-size: 16px;
    }

    .about-contents-p{
        font-size: 15px;
        line-height: 1.6;
    }

    .btn{
        padding: 12px 28px;
        font-size: 14px;
    }
}
@media (max-width: 480px){

    .about-hero{
        height: 80vh;
    }

    .about-contents h1{
        font-size: 33px;
    }

    .about-contents h4{
        font-size: 16px;
        letter-spacing: 1px;
    }

    .about-contents-p{
        font-size: 16px;
        line-height: 1.5;
    }

	.about-hero::after {  transform: scaleX(1.4);}
}
/* -------------------------about us code ------------------------------ */
/* About Us Section */
.about-us{
    padding:10px 60px;
    background:#fff;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:85%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.about-content{
    flex:1;
    margin-bottom:20px;
}

.about-p{
    color:#ff6600;
    font-size:16px;
    font-weight:600;
    text-align:left;
    
}

 
 .about-content{
    text-align:center;
    margin-bottom:60px;
}

.about-content  h2{
    font-size:42px;
    font-weight:700;
    color:#1b1a1a;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

.about-content  h2::after{
    content:'';
    width:90px;
    height:4px;
    background:linear-gradient(85deg, #f7761a, #342105);
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    border-radius:5px;
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    -o-transform:translateX(-50%);
}


.about-content p{
    max-width:900px;
    margin:0 auto 15px;
    font-size:16px;
    color:#666;
    line-height:1.8;
}

.about-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 32px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s;
}

.about-btn:hover{
    background:#e65c00;
}
@media (max-width:1100px){

    .about-us{
        padding:40px;
    }

    .about-container{
        gap:20px;
    }

    .about-content h2{
        font-size:37px;
    }

    .about-image img{
        width:100%;
    }

    .about-content p{
        font-size:17px;
    }
}

@media (max-width:800px){

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-image img{
        width:100%;
    }

    .about-content{
        margin-bottom:30px;
    }

    .about-content h2{
        font-size:33px;
    }

    .about-p{
        text-align:center;
    }

    .about-content p{
        font-size:17px;
    }
}

@media (max-width:480px){

    .about-us{
        padding:30px 15px;
    }

    .about-content h2{
        font-size:27px;
    }

    .about-content h2::after{
        width:60px;
    }

    .about-content p{
        font-size:16px;
        line-height:1.6;
    }

    .about-btn{
        padding:10px 22px;
        font-size:16px;
    }

    .about-p{
        font-size:16px;
    }
}
 
/* -----------------------------why choose us -------------------------------- */
/* WHY CHOOSE US */
.why-choose-us{
    padding:100px 8%;
    background:#01094a;
}

.why-section-title{
    text-align:center;
    margin-bottom:70px;
}

.why-section-title h2{
    font-size:42px;
    color:#f8f5f5;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}
.why-section-title h2::after{
    content:'';
    width:90px;
    height:4px;
    background:#fff;
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    border-radius:5px;
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    -o-transform:translateX(-50%);
}

.why-section-title p{
    font-size:16px;
    color:#e9e8e8;
}

.choose-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:80px;
}

.choose-image,
.choose-content{
    flex:1;
}

.choose-image img{
    width:90%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(187, 187, 187, 0.1);
}

.choose-content h3{
    font-size:33px;
    color:#faf9f9;
    margin-bottom:20px;
}

.choose-content p{
    font-size:17px;
    line-height:1.8;
    color:#f7f5f5;
}

 @media (max-width:1100px){

    .why-choose-us{
        padding:80px 6%;
    }

    .choose-row{
        gap:25px;
    }

    .choose-image img{
        width:100%;
        height:320px;
    }

    .choose-content h3{
        font-size:28px;
    }
}

@media (max-width:800px){

    .why-choose-us{
        padding:70px 5%;
    }

    .choose-row{
        flex-direction:column;
        text-align:center;
        gap:25px;
        margin-bottom:60px;
    }

    /* IMPORTANT: keeps visual order same */
    .choose-row.reverse{
        flex-direction:column;
    }

    .choose-image,
    .choose-content{
        width:100%;
    }

    .choose-image img{
        width:100%;
        height:auto;
    }

    .choose-content h3{
        font-size:26px;
    }

    .choose-content p{
        font-size:17px;
        line-height:1.6;
    }
}

@media (max-width:480px){

    .why-choose-us{
        padding:60px 15px;
    }

    .why-section-title h2{
        font-size:29px;
    }

    .why-section-title p{
        font-size:16px;
    }

    .choose-content h3{
        font-size:22px;
    }

    .choose-content p{
        font-size:16px;
    }

    .choose-image img{
        border-radius:12px;
    }
}
/* --------------------mission vission cards ------------------ */
.mission-vision-section{
    padding:100px 10%;
    background:#f8fafc;
}

.mission-section-title{
    text-align:center;
    margin-bottom:60px;
}

.mission-section-title h2{
    font-size:42px;
    color:#111827;
    margin-bottom:10px;
    position:relative;
    display:inline-block;
}

.mission-section-title h2::after{
    content:'';
    width:90px;
    height:4px;
    background:linear-gradient(85deg, #f7761a, #342105);
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    border-radius:5px;
}

.mission-section-title p{
    color:#6b7280;
    font-size:17px;
}

.mv-container{
    display:flex;
    gap:35px;
    justify-content:center;
    flex-wrap:wrap;
}

/* =========================
   CARD
   ========================= */
.mv-card{
    position:relative;
    width:100%;
    max-width:500px;
    padding:40px 35px;
    border-radius:25px;
    overflow:hidden;
    background:#fff;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.mv-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(237,99,19,0.15);
}

/* Card 1 - Clockwise */
.mv-card:first-child::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:conic-gradient(
        transparent 0deg,
        transparent 280deg,
        #f7761a 320deg,
        #ffb67a 340deg,
        #f7761a 360deg
    );
    animation:rotateClockwise 4s linear infinite;
}

/* Card 2 - Anti-Clockwise */
.mv-card:last-child::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:conic-gradient(
        transparent 0deg,
        transparent 280deg,
        #ff9d00 320deg,
        #ffcf70 340deg,
        #ff9d00 360deg
    );
    animation:rotateAntiClockwise 5s linear infinite;
}
@keyframes rotateClockwise{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes rotateAntiClockwise{
    from{
        transform:rotate(360deg);
    }
    to{
        transform:rotate(0deg);
    }
}

/* Inner White Card */
.mv-card::after{
    content:"";
    position:absolute;
    inset:3px;
    background:#fff;
    border-radius:22px;
    z-index:1;
}

/* Keep Content Above Border */
.mv-card > *{
    position:relative;
    z-index:2;
}

@keyframes rotateBorder{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* =========================
   ICON
   ========================= */
.mv-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#f67016,#faa767);
}

.mv-icon i{
    font-size:40px;
    color:#fff;
}

.mv-card h3{
    font-size:28px;
    color:#111827;
    margin-bottom:15px;
}

.mv-card p{
    color:#6b7280;
    line-height:1.8;
    font-size:16px;
}

/* =========================
   1100px
   ========================= */
@media (max-width:1100px){

    .mission-vision-section{
        padding:80px 6%;
    }

    .mission-section-title h2{
        font-size:38px;
    }

    .mv-card{
        max-width:450px;
    }
}

/* =========================
   800px
   ========================= */
@media (max-width:800px){

    .mission-vision-section{
        padding:70px 5%;
    }

    .mission-section-title{
        margin-bottom:50px;
    }

    .mission-section-title h2{
        font-size:32px;
    }

    .mv-container{
        gap:25px;
    }

    .mv-card{
        max-width:600px;
        padding:35px 25px;
    }

    .mv-card h3{
        font-size:24px;
    }

    .mv-card p{
        font-size:15px;
    }

    .mv-icon{
        width:80px;
        height:80px;
    }

    .mv-icon i{
        font-size:34px;
    }
}

/* =========================
   480px
   ========================= */
@media (max-width:480px){

    .mission-vision-section{
        padding:60px 15px;
    }

    .mission-section-title{
        margin-bottom:40px;
    }

    .mission-section-title h2{
        font-size:28px;
    }

    .mission-section-title p{
        font-size:15px;
    }

    .mv-card{
        padding:30px 20px;
        border-radius:20px;
    }

    .mv-card::after{
        border-radius:17px;
    }

    .mv-card h3{
        font-size:22px;
    }

    .mv-card p{
        font-size:14px;
        line-height:1.7;
    }

    .mv-icon{
        width:70px;
        height:70px;
        margin-bottom:20px;
    }

    .mv-icon i{
        font-size:30px;
    }
}