

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---------- Variables ---------- */

:root{

    --primary:#0b4f8c;
    --secondary:#1d7dd8;
    --accent:#f2b705;

    --dark:#222;
    --light:#ffffff;
    --grey:#f7f8fa;
    --text:#555;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:10px;

    --transition:.35s ease;

}

/* ---------- Reset ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.8;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

}

/* ---------- Container ---------- */

.container{

    width:min(1200px,90%);
    margin:auto;

}

/* ---------- Common Section ---------- */

.section{

    padding:90px 0;

}

.gray{

    background:var(--grey);

}

.grid-2{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

/* ---------- Headings ---------- */

h1,
h2,
h3,
h4,
h5{

    color:var(--dark);
    line-height:1.3;

}

h1{

    font-size:3.6rem;
    font-weight:700;

}

h2{

    font-size:2.5rem;
    margin:10px 0 25px;

}

h3{

    font-size:1.3rem;

}

h5{

    color:var(--primary);
    letter-spacing:2px;
    font-weight:600;

}

p{

    margin-bottom:18px;

}

/* ---------- Buttons ---------- */

.btn{

    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:14px 34px;
    border-radius:40px;
    transition:var(--transition);
    font-weight:500;
    margin-right:15px;

}

.btn:hover{

    background:var(--secondary);
    transform:translateY(-3px);

}

.btn-outline{

    background:transparent;
    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff;
    color:var(--primary);

}

/* ==========================================
   HEADER
========================================== */

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;

    z-index:999;

    background:rgba(255,255,255,.98);

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:82px;

}

/* ---------- Logo ---------- */

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    width:60px;

}

.logo h2{

    font-size:1.2rem;
    margin:0;

}

.logo span{

    font-size:.8rem;
    color:#777;

}

/* ---------- Navigation ---------- */

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:#333;
    font-weight:500;
    transition:.3s;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary);

    transition:.3s;

}

nav a:hover{

    color:var(--primary);

}

nav a:hover::after{

    width:100%;

}

/* ---------- Mobile Menu ---------- */

#menu-btn{

    display:none;
    font-size:1.8rem;
    cursor:pointer;
    color:var(--primary);

}

/* ==========================================
   HERO
========================================== */

.hero{

    position:relative;

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    overflow:hidden;

}

.hero .overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    color:#fff;

    max-width:850px;

    padding:20px;

}

.hero-content h1{

    color:#fff;

    margin-bottom:30px;

}

.hero-content p{

    color:#f0f0f0;

    font-size:1.2rem;

    margin-bottom:40px;

}

.hero-buttons{

    margin-top:20px;

}

/* ---------- Scroll Indicator ---------- */

.hero::after{

    content:"";

    position:absolute;

    bottom:30px;
    left:50%;

    width:30px;
    height:50px;

    border:2px solid #fff;

    border-radius:30px;

    transform:translateX(-50%);

}

.hero::before{

    content:"";

    position:absolute;

    left:50%;
    bottom:45px;

    width:6px;
    height:12px;

    background:#fff;

    border-radius:20px;

    transform:translateX(-50%);

    animation:scroll 2s infinite;

}

@keyframes scroll{

    0%{

        opacity:1;
        transform:translate(-50%,0);

    }

    100%{

        opacity:0;
        transform:translate(-50%,15px);

    }

}

/* ==========================================
   Utility
========================================== */

.text-center{

    text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

/* ==========================================
   Responsive
========================================== */

@media(max-width:991px){

    .grid-2{

        grid-template-columns:1fr;
        gap:40px;

    }

    nav{

        position:fixed;

        top:82px;
        right:-100%;

        width:260px;
        height:calc(100vh - 82px);

        background:#fff;

        flex-direction:column;

        padding:40px;

        transition:.35s;

        box-shadow:-5px 0 20px rgba(0,0,0,.08);

    }

    nav.active{

        right:0;

    }

    #menu-btn{

        display:block;

    }

    h1{

        font-size:2.7rem;

    }

    h2{

        font-size:2rem;

    }

}

@media(max-width:768px){

    .section{

        padding:70px 0;

    }

    h1{

        font-size:2.2rem;

    }

    .hero-content p{

        font-size:1rem;

    }

    .btn{

        display:block;
        width:220px;
        margin:15px auto;

    }

}

/* ==========================================
   ABOUT SECTION
========================================== */

.about img{

    border-radius:15px;
    box-shadow:var(--shadow);

}

.about h2{

    margin-bottom:20px;

}

.about p{

    color:#666;
    margin-bottom:20px;

}

.about .btn{

    margin-top:10px;

}

/* ==========================================
   SERVICES
========================================== */

.services{

    position:relative;

}

.services .cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;

}

.services .card{

    background:#fff;

    padding:40px 30px;

    border-radius:12px;

    box-shadow:var(--shadow);

    transition:all .35s ease;

    text-align:center;

    border-top:4px solid transparent;

}

.services .card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.services .card i{

    width:80px;
    height:80px;

    line-height:80px;

    font-size:34px;

    border-radius:50%;

    background:#eef5fc;

    color:var(--primary);

    margin-bottom:25px;

    transition:.3s;

}

.services .card:hover i{

    background:var(--primary);

    color:#fff;

}

.services .card h3{

    margin-bottom:15px;

    font-size:1.3rem;

}

.services .card p{

    color:#777;

    font-size:.95rem;

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why{

    background:#fff;

}

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:35px;

    margin-top:60px;

}

.features>div{

    padding:35px;

    border-radius:12px;

    text-align:center;

    background:#fff;

    box-shadow:var(--shadow);

    transition:.35s;

}

.features>div:hover{

    transform:translateY(-8px);

}

.features i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

.features h3{

    margin-bottom:12px;

    color:var(--dark);

}

.features p{

    color:#777;

    margin:0;

}

/* ==========================================
   COUNTERS
========================================== */

.counter{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    padding:90px 0;

}

.stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

    gap:30px;

    text-align:center;

}

.stats div{

    padding:20px;

}

.stats h2{

    color:#fff;

    font-size:3rem;

    margin-bottom:10px;

    font-weight:700;

}

.stats p{

    color:rgba(255,255,255,.9);

    margin:0;

    font-size:1rem;

    letter-spacing:1px;

}

/* ==========================================
   CALL TO ACTION
========================================== */

.cta{

    background:#f8f9fb;

    text-align:center;

    padding:100px 20px;

}

.cta h2{

    max-width:700px;

    margin:0 auto 25px;

}

.cta p{

    max-width:700px;

    margin:0 auto 35px;

    color:#666;

}

.cta .btn{

    margin:0;

}

/* ==========================================
   SIMPLE FADE ANIMATION
========================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================
   IMAGE HOVER EFFECT
========================================== */

.about img,
.services .card,
.features>div{

    overflow:hidden;

}

.about img{

    transition:.4s;

}

.about img:hover{

    transform:scale(1.03);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:991px){

    .services .cards{

        grid-template-columns:repeat(2,1fr);

    }

    .features{

        grid-template-columns:repeat(2,1fr);

    }

    .stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .services .cards,

    .features,

    .stats{

        grid-template-columns:1fr;

    }

    .services .card{

        padding:30px;

    }

    .features>div{

        padding:30px;

    }

    .counter{

        padding:70px 0;

    }

    .stats h2{

        font-size:2.5rem;

    }

}

@media (max-width:480px){

    .about h2,

    .services h2,

    .why h2,

    .cta h2{

        font-size:1.8rem;

    }

    .services .card{

        padding:25px;

    }

    .services .card i{

        width:70px;
        height:70px;
        line-height:70px;
        font-size:30px;

    }

}/* ==========================================
   FOOTER
========================================== */

footer{

    background:#0d1b2a;
    color:#d9d9d9;
    padding:70px 0 0;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:40px;

}

.footer-grid h3,
.footer-grid h4{

    color:#fff;
    margin-bottom:20px;

}

.footer-grid p{

    color:#bfc6ce;
    line-height:1.8;

}

.footer-grid ul{

    padding:0;

}

.footer-grid ul li{

    margin-bottom:12px;

}

.footer-grid ul li a{

    color:#bfc6ce;
    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#fff;
    padding-left:8px;

}

footer .copyright{

    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px;
    color:#9ca6b3;
    font-size:.9rem;

}

/* ==========================================
   BACK TO TOP
========================================== */

#backToTop{

    position:fixed;

    right:30px;
    bottom:30px;

    width:50px;
    height:50px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    box-shadow:var(--shadow);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999;

}

#backToTop.show{

    opacity:1;
    visibility:visible;

}

#backToTop:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

/* ==========================================
   SCROLL PROGRESS BAR
========================================== */

#progressBar{

    position:fixed;

    top:0;
    left:0;

    width:0;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--accent),
        var(--secondary)
    );

    z-index:99999;

}

/* ==========================================
   REVEAL ANIMATION
========================================== */

.reveal{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================
   CARD HOVER EFFECT
========================================== */

.card,
.features>div,
.footer-grid div{

    transition:.35s;

}

.card:hover,
.features>div:hover{

    transform:translateY(-10px);

}

/* ==========================================
   IMAGE EFFECTS
========================================== */

img{

    transition:.4s;

}

img:hover{

    transform:scale(1.02);

}

/* ==========================================
   UTILITIES
========================================== */

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:var(--radius);

}

.text-primary{

    color:var(--primary);

}

.bg-primary{

    background:var(--primary);
    color:#fff;

}

.bg-light{

    background:#fff;

}

.bg-grey{

    background:var(--grey);

}

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-center{

    justify-content:center;

}

.justify-between{

    justify-content:space-between;

}

.w-100{

    width:100%;

}

/* spacing */

.py-1{padding:10px 0;}
.py-2{padding:20px 0;}
.py-3{padding:30px 0;}
.py-4{padding:40px 0;}
.py-5{padding:50px 0;}

.px-1{padding:0 10px;}
.px-2{padding:0 20px;}
.px-3{padding:0 30px;}

.m-auto{

    margin:auto;

}

/* ==========================================
   LOADING ANIMATION
========================================== */

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes slideUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-content{

    animation:fadeIn 1.2s ease;

}

.card{

    animation:slideUp .8s ease both;

}

/* ==========================================
   SELECTION
========================================== */

::selection{

    background:var(--primary);

    color:#fff;

}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:991px){

    footer{

        text-align:center;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

    .footer-grid ul{

        display:flex;

        justify-content:center;

        flex-wrap:wrap;

        gap:18px;

    }

    .footer-grid ul li{

        margin:0;

    }

}

@media(max-width:768px){

    #backToTop{

        width:45px;
        height:45px;

        right:20px;
        bottom:20px;

    }

    footer{

        padding-top:50px;

    }

}

@media(max-width:576px){

    .container{

        width:94%;

    }

    h1{

        font-size:2rem;

    }

    h2{

        font-size:1.7rem;

    }

    h3{

        font-size:1.2rem;

    }

    p{

        font-size:.95rem;

    }

    .logo h2{

        font-size:1rem;

    }

    .logo span{

        font-size:.75rem;

    }

}

/* ==========================================
   PRINT
========================================== */

@media print{

    header,
    footer,
    #menu-btn,
    #backToTop,
    #progressBar{

        display:none;

    }

    body{

        background:#fff;

        color:#000;

    }

}

.page-banner{

    margin-top:82px;
    padding:120px 20px;
    text-align:center;
    color:#fff;

}

.page-banner h1{

    color:#fff;
    font-size:3rem;

}

.service-list{

    margin-top:20px;
    text-align:left;

}

.service-list li{

    padding:8px 0;
    border-bottom:1px solid #eee;

}

.service-list li:last-child{

    border:none;

}

.service-list li::before{

    content:"✓ ";
    color:var(--primary);
    font-weight:bold;

}

.check-list p{

    margin-bottom:14px;

}

.check-list i{

    color:green;
    margin-right:10px;

}

.team-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;

}

.team-card{

background:#fff;
padding:30px;
border-radius:15px;
box-shadow:var(--shadow);
text-align:center;
transition:.35s;

}

.team-card:hover{

transform:translateY(-10px);

}

.team-card img{

width:180px;
height:180px;
margin:auto;
border-radius:50%;
object-fit:cover;
border:6px solid #eef4fb;

}

.position{

display:block;
margin:12px 0;
font-weight:600;
color:var(--primary);

}

.qualification{

margin:20px 0;
padding:15px;
background:#f5f8fc;
border-radius:10px;
font-size:.9rem;

}

.management-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:50px;

}

.management-card{

background:#fff;
padding:30px;
text-align:center;
border-radius:10px;
box-shadow:var(--shadow);

}

/* ==========================================
GLOBAL PAGE
========================================== */

.world-map{

max-width:1000px;
margin:auto;

}

.world-map img{

width:100%;

}

.global-icon{

font-size:55px;
color:var(--primary);

}


/* ==========================================
CONTACT
========================================== */

.contact-wrapper{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;

}

.contact-item{

display:flex;
gap:20px;
margin:30px 0;

}

.contact-item i{

font-size:28px;
color:var(--primary);
margin-top:8px;

}

.contact-form{

background:#fff;
padding:40px;
border-radius:15px;
box-shadow:var(--shadow);

}

.form-row{

display:grid;
grid-template-columns:1fr 1fr;
gap:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

width:100%;
padding:15px;
margin:12px 0;
border:1px solid #ddd;
border-radius:8px;
font-family:inherit;

}

.contact-form textarea{

resize:vertical;

}

.social-icons{

margin-top:30px;

}

.social-icons a{

display:inline-flex;
justify-content:center;
align-items:center;

width:45px;
height:45px;

border-radius:50%;

background:var(--primary);

color:#fff;

margin-right:10px;

transition:.3s;

}

.social-icons a:hover{

background:var(--secondary);

}

.google-map{

margin-top:40px;

border-radius:15px;
overflow:hidden;
box-shadow:var(--shadow);

}

.faq{

max-width:900px;
margin:50px auto 0;

}

.faq-item{

padding:25px;
margin-bottom:20px;
background:#fff;
border-radius:10px;
box-shadow:var(--shadow);

}

@media(max-width:900px){

.contact-wrapper{

grid-template-columns:1fr;

}

.form-row{

grid-template-columns:1fr;

}

}
