﻿/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
   ROOT
========================================= */

:root{

    --primary:#ff8c00;
    --primary2:#ffb000;
    --dark:#0f172a;
    --dark2:#111827;
    --light:#f8fafc;
    --text:#64748b;
    --white:#ffffff;

}

/* =========================================
   RESET
========================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

    background:#f5f7fb;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

html{

    scroll-behavior:smooth;

}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
    #ffb000,
    #ff8c00);

    border-radius:20px;

}

/* =========================================
   ABOUT BANNER SECTION
========================================= */

.about-banner-section{

    width:100%;

    margin:0;
    padding:0;

    overflow:hidden;

    background:#ffffff;

    line-height:0;

    position:relative;

}

/* =========================================
   BANNER IMAGE
========================================= */

.about-banner-img{

    width:100%;

    height:auto;

    display:block;

    margin:0;
    padding:0;

    border:none;

    object-fit:contain;

    object-position:center center;

    vertical-align:middle;

    background:#ffffff;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .about-banner-img{

        width:100%;

        height:auto;

    }

}

@media(max-width:768px){

    .about-banner-img{

        width:100%;

        height:auto;

    }

}

@media(max-width:480px){

    .about-banner-img{

        width:100%;

        height:auto;

    }

}


/* =========================================
   ABOUT INTRO SECTION
========================================= */

.about-intro-section{

    padding:100px 0;

    background:#f8fafc;

}

/* IMAGE */

.about-intro-image{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.10);

}

.about-intro-image img{

    width:100%;

    height:600px;

    object-fit:cover;

    transition:0.7s;

}

.about-intro-image:hover img{

    transform:scale(1.08);

}

/* EXPERIENCE BADGE */

.experience-badge{

    position:absolute;

    right:25px;
    bottom:25px;

    background:
    linear-gradient(
    135deg,
    #ff8c00,
    #ffb000);

    padding:24px 28px;

    border-radius:24px;

    text-align:center;

    color:white;

    box-shadow:
    0 15px 40px rgba(255,176,0,0.30);

}

.experience-badge h3{

    font-size:42px;

    font-weight:900;

    margin-bottom:5px;

    font-family:'Montserrat',sans-serif;

}

.experience-badge p{

    margin:0;

    font-size:14px;

    font-weight:600;

}

/* CONTENT */

.about-intro-content span{

    display:inline-block;

    color:#ff8c00;

    font-size:14px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:18px;

}

.about-intro-content h2{

    font-size:56px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:22px;

    color:#111827;

    font-family:'Montserrat',sans-serif;

}

.about-intro-content p{

    color:#64748b;

    line-height:2;

    font-size:16px;

    margin-bottom:20px;

}

/* FEATURE GRID */

.about-feature-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

/* FEATURE */

.about-feature{

    background:white;

    border-radius:18px;

    padding:18px 20px;

    font-size:15px;

    font-weight:600;

    color:#334155;

    transition:0.4s;

    border:1px solid #edf2f7;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);

}

.about-feature:hover{

    transform:translateY(-5px);

    border-color:#ffb000;

    box-shadow:
    0 15px 35px rgba(255,176,0,0.12);

}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-size:60px;

    font-weight:900;

    color:#111827;

    margin-bottom:18px;

    font-family:'Montserrat',sans-serif;

}

.section-heading p{

    max-width:850px;

    margin:auto;

    color:#64748b;

    font-size:18px;

    line-height:2;

}

/* =========================================
   MISSION SECTION
========================================= */

.mission-section{

    padding:120px 0;

    background:white;

}

/* BOX */

.mission-box{

    background:#f8fafc;

    border-radius:35px;

    padding:50px 40px;

    text-align:center;

    transition:0.5s;

    height:100%;

}

.mission-box:hover{

    transform:translateY(-10px);

    background:white;

    box-shadow:
    0 20px 50px rgba(255,176,0,0.15);

}

/* ICON */

.mission-icon{

    width:100px;
    height:100px;

    margin:auto auto 28px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #ff8c00,
    #ffb000);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;

    color:white;

    box-shadow:
    0 15px 35px rgba(255,176,0,0.25);

}

/* TITLE */

.mission-box h3{

    font-size:34px;

    font-weight:800;

    margin-bottom:18px;

    color:#111827;

    font-family:'Montserrat',sans-serif;

}

.mission-box p{

    color:#64748b;

    line-height:2;

    font-size:16px;

}

/* =========================================
   WHY SECTION
========================================= */

.why-about-section{

    padding:120px 0;

}

/* BOX */

.why-about-box{

    background:white;

    border-radius:35px;

    padding:45px 30px;

    text-align:center;

    transition:0.5s;

    height:100%;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.08);

}

.why-about-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(255,176,0,0.18);

}

/* ICON */

.why-about-icon{

    width:90px;
    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #ff8c00,
    #ffb000);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;

    color:white;

    box-shadow:
    0 15px 35px rgba(255,176,0,0.25);

}

/* TITLE */

.why-about-box h4{

    font-size:26px;

    font-weight:800;

    margin-bottom:15px;

    color:#111827;

    font-family:'Montserrat',sans-serif;

}

.why-about-box p{

    color:#64748b;

    line-height:1.9;

    font-size:15px;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .about-banner-img{

        height:150px;

    }

    .about-intro-content h2{

        font-size:42px;

    }

    .section-heading h2{

        font-size:42px;

    }

}

@media(max-width:768px){

    .about-banner-img{

        height:110px;

    }

    .about-intro-section,
    .mission-section,
    .why-about-section{

        padding:70px 0;

    }

    .about-intro-image{

        border-radius:25px;

    }

    .about-intro-image img{

        height:320px;

    }

    .experience-badge{

        right:15px;
        bottom:15px;

        padding:18px 20px;

        border-radius:18px;

    }

    .experience-badge h3{

        font-size:32px;

    }

    .about-intro-content h2{

        font-size:32px;

        line-height:1.4;

    }

    .about-intro-content p{

        font-size:14px;

        line-height:1.9;

    }

    .about-feature-grid{

        grid-template-columns:1fr;

    }

    .section-heading{

        margin-bottom:45px;

    }

    .section-heading h2{

        font-size:32px;

    }

    .mission-box,
    .why-about-box{

        border-radius:25px;

        padding:35px 22px;

    }

    .mission-icon,
    .why-about-icon{

        width:75px;
        height:75px;

        font-size:30px;

    }

}

@media(max-width:480px){

    .about-banner-img{

        height:95px;

    }

}