/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Poppins,sans-serif;
}

/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#38b6ff;

    padding:6px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:1000;
}

/* LOGO */

.logo img{

    height:80px;
}

/* LINKS */

.nav-links{

    display:flex;

    align-items:center;

    gap:28px;

    list-style:none;
}

.nav-links a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;
}

.nav-links a:hover{

    color:#0b3c6d;
}

/* BUTTONS */

.group-btn{

    border:2px solid #fff;

    padding:11px 20px;

    border-radius:40px;

    transition:.35s;
}

.group-btn:hover{

    background:#fff;

    color:#38b6ff !important;
}

.contact-btn{

    background:#fff;

    color:#0b3c6d !important;

    padding:11px 22px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;
}

.contact-btn:hover{

    background:#0b3c6d;

    color:#fff !important;
}

/* ==========================
   HAMBURGER
========================== */

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;
}

.menu-toggle span{

    width:30px;

    height:3px;

    background:#fff;

    transition:.35s;

    border-radius:10px;
}

/* ==========================
   HAMBURGER ANIMATION
========================== */

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg) translate(6px,6px);
}

.menu-toggle.active span:nth-child(2){

    opacity:0;
}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg) translate(7px,-7px);
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .navbar{

        padding:18px 25px;
    }

    .logo img{

        height:45px;
    }

    .menu-toggle{

        display:flex;
    }

    .nav-links{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#0b3c6d;

        flex-direction:column;

        gap:22px;

        padding:35px 0;

        opacity:0;

        visibility:hidden;

        transform:translateY(-20px);

        transition:.35s ease;
    }

    .nav-links.active{

        opacity:1;

        visibility:visible;

        transform:translateY(0);
    }

}

/* =========================================
                HERO
========================================= */

.hero{

    margin-top:90px;

    height:calc(100vh - 90px);

    position:relative;

    background:url("imagess/hero.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.hero-content{

    position:relative;

    z-index:2;

    width:90%;

    max-width:900px;

    color:white;

}

.hero-label{

    display:inline-block;

    padding:10px 24px;

    border:2px solid #27c2c5;

    border-radius:50px;

    color:#27c2c5;

    font-size:.85rem;

    letter-spacing:2px;

    margin-bottom:30px;

}

.hero h1{

    font-size:4.3rem;

    line-height:1.15;

    margin-bottom:30px;

    font-weight:700;

}

.hero p{

    max-width:700px;

    margin:auto;

    color:#d8d8d8;

    line-height:1.9;

    font-size:1.08rem;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:white;

    color:#0b3c6d;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-6px);

    background:#27c2c5;

    color:white;

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

}

.btn-secondary:hover{

    background:#0b3c6d;

    color:#ffffff;

    transform:translateY(-6px);

}

/* MOBILE */

@media(max-width:991px){

    .hero{

        height:75vh;

    }

    .hero h1{

        font-size:2.7rem;

    }

    .hero p{

        font-size:1rem;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

}

/* =========================================
            ABOUT
========================================= */

.about{

    padding:120px 8%;

    background:#ffffff;
}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-left span{

    color:#27c2c5;

    font-weight:600;

    letter-spacing:2px;
}

.about-left h2{

    font-size:3rem;

    color:#111;

    margin-top:20px;

    line-height:1.2;
}

.about-right p{

    color:#555;

    line-height:2;

    margin-bottom:25px;

    font-size:1.05rem;
}

.about-btn{

    display:inline-block;

    margin-top:10px;

    background:#0b3c6d;

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:50px;

    transition:.35s;
}

.about-btn:hover{

    background:#27c2c5;

    transform:translateY(-5px);
}

/* MOBILE */

@media(max-width:991px){

    .about{

        padding:80px 8%;
    }

    .about-container{

        grid-template-columns:1fr;

        gap:40px;
    }

    .about-left h2{

        font-size:2.3rem;
    }

}

/* =========================================
            SERVICES
========================================= */

.services{

    background:#f8f9fb;

    padding:120px 8%;
}

.services-heading{

    text-align:center;

    max-width:760px;

    margin:auto auto 70px;
}

.services-heading span{

    color:#27c2c5;

    font-weight:600;

    letter-spacing:2px;
}

.services-heading h2{

    margin:20px 0;

    font-size:3rem;

    color:#111;
}

.services-heading p{

    color:#666;

    line-height:1.9;
}

/* GRID */

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* CARD */

.service-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

    cursor:pointer;

    border-top:4px solid transparent;
}

.service-card:hover{

    transform:translateY(-12px);

    border-top:4px solid #27c2c5;

    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-number{

    width:60px;

    height:60px;

    background:#0b3c6d;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.2rem;

    font-weight:700;

    margin-bottom:25px;
}

.service-card h3{

    margin-bottom:18px;

    color:#111;

    font-size:1.4rem;
}

.service-card p{

    color:#666;

    line-height:1.8;
}

/* MOBILE */

@media(max-width:991px){

    .services-grid{

        grid-template-columns:1fr;
    }

    .services-heading h2{

        font-size:2.3rem;
    }

}

/* =========================================
            WHY CHOOSE US
========================================= */

.why-choose{

    background:#111;

    color:#fff;

    padding:120px 8%;
}

.why-header{

    text-align:center;

    max-width:750px;

    margin:auto auto 70px;
}

.why-header span{

    color:#27c2c5;

    letter-spacing:2px;

    font-weight:600;
}

.why-header h2{

    margin:20px 0;

    font-size:3rem;
}

.why-header p{

    color:#bfbfbf;

    line-height:1.9;
}

/* GRID */

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
}

/* CARD */

.why-card{

    background:#1a1a1a;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:45px;

    transition:.35s;

    cursor:pointer;
}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#38b6ff;

    background:#202020;

    box-shadow:0 20px 40px rgba(39,194,197,.12);
}

.why-card h3{

    margin-bottom:20px;

    color:white;

    font-size:1.5rem;
}

.why-card p{

    color:#c9c9c9;

    line-height:1.8;
}

/* MOBILE */

@media(max-width:991px){

    .why-grid{

        grid-template-columns:1fr;
    }

    .why-header h2{

        font-size:2.3rem;
    }

}

/* =========================================
            OUR PROCESS
========================================= */

.process{

    background:#ffffff;

    padding:120px 8%;
}

.process-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;
}

.process-header span{

    color:#27c2c5;

    font-weight:600;

    letter-spacing:2px;
}

.process-header h2{

    margin:20px 0;

    font-size:3rem;

    color:#111;
}

.process-header p{

    color:#666;

    line-height:1.9;
}

/* PROCESS */

.process-container{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:25px;
}

.process-step{

    flex:1;

    text-align:center;
}

.step-number{

    width:80px;

    height:80px;

    background:#0b3c6d;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:1.5rem;

    font-weight:bold;

    transition:.35s;
}

.process-step:hover .step-number{

    background:#38b6ff;

    transform:scale(1.08);
}

.process-step h3{

    margin:30px 0 18px;

    color:#111;

    font-size:1.5rem;
}

.process-step p{

    color:#666;

    line-height:1.8;
}

.process-line{

    width:80px;

    height:3px;

    background:#d9d9d9;

    margin-top:40px;
}

/* MOBILE */

@media(max-width:991px){

    .process-container{

        flex-direction:column;

        align-items:center;
    }

    .process-line{

        width:3px;

        height:60px;

        margin:10px 0;
    }

    .process-header h2{

        font-size:2.3rem;
    }

}

/* =========================================
            INDUSTRIES
========================================= */

.industries{

    background:#111;

    padding:120px 8%;

    color:white;

}

.industries-header{

    text-align:center;

    max-width:760px;

    margin:auto auto 70px;

}

.industries-header span{

    color:#27c2c5;

    font-weight:600;

    letter-spacing:2px;

}

.industries-header h2{

    margin:20px 0;

    font-size:3rem;

}

.industries-header p{

    color:#bdbdbd;

    line-height:1.9;

}

.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.industry-card{

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:40px;

    transition:.35s;

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:#38b6ff;

    box-shadow:0 20px 40px rgba(39,194,197,.12);

}

.industry-card h3{

    margin-bottom:18px;

    color:white;

}

.industry-card p{

    color:#c8c8c8;

    line-height:1.8;

}

@media(max-width:991px){

    .industries-grid{

        grid-template-columns:1fr;

    }

    .industries-header h2{

        font-size:2.3rem;

    }

}

/* =========================================
            STATISTICS
========================================= */

.stats{

    background:#ffffff;

    padding:110px 8%;

}

.stats-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    padding:45px 30px;

    background:#f8f9fb;

    border-radius:20px;

    transition:.35s;

    border:1px solid #ececec;

}

.stat-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    border-color:#38b6ff;

}

.stat-box h2{

    font-size:3.8rem;

    color:#0b3c6d;

    margin-bottom:15px;

    font-weight:700;

}

.stat-box p{

    color:#666;

    font-size:1rem;

    font-weight:500;

}

/* MOBILE */

@media(max-width:991px){

    .stats-container{

        grid-template-columns:1fr;

    }

    .stat-box h2{

        font-size:3rem;

    }

}

/* =========================================
            OUR COMMITMENT
========================================= */

.commitment{

    background:#111;

    color:#fff;

    padding:120px 8%;

}

.commitment-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.commitment-left span{

    color:#27c2c5;

    letter-spacing:2px;

    font-weight:600;

}

.commitment-left h2{

    font-size:3rem;

    margin:20px 0;

    line-height:1.2;

}

.commitment-left p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:35px;

}

.commitment-btn{

    display:inline-block;

    text-decoration:none;

    background:#fff;

    color:#0b3c6d;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.commitment-btn:hover{

    background:#27c2c5;

    color:#fff;

    transform:translateY(-6px);

}

/* RIGHT SIDE */

.commitment-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.commitment-box{

    background:#1c1c1c;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:35px;

    transition:.35s;

}

.commitment-box:hover{

    transform:translateY(-10px);

    border-color:#38b6ff;

    box-shadow:0 20px 40px rgba(39,194,197,.12);

}

.commitment-box h3{

    margin-bottom:15px;

    color:#fff;

}

.commitment-box p{

    color:#c9c9c9;

    line-height:1.8;

}

/* MOBILE */

@media(max-width:991px){

    .commitment-container{

        grid-template-columns:1fr;

    }

    .commitment-right{

        grid-template-columns:1fr;

    }

    .commitment-left h2{

        font-size:2.3rem;

    }

}

/*=========================================
                FAQ
=========================================*/

.faq{

    background:#fff;

    padding:120px 8%;

}

.faq-header{

    text-align:center;

    max-width:760px;

    margin:auto auto 70px;

}

.faq-header span{

    color:#27c2c5;

    font-weight:600;

    letter-spacing:2px;

}

.faq-header h2{

    margin:20px 0;

    font-size:3rem;

    color:#111;

}

.faq-header p{

    color:#666;

    line-height:1.9;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    border-radius:16px;

    overflow:hidden;

    border:1px solid #e5e5e5;

    transition:.35s;

}

.faq-item:hover{

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    padding:24px 30px;

    background:#fff;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:1.05rem;

    font-weight:600;

    color:#0b3c6d;

}

.faq-question span{

    font-size:2rem;

    color:#38b6ff;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    background:#f9f9f9;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 30px 30px;

    color:#666;

    line-height:1.9;

}

/*=========================================
                CTA
=========================================*/

.cta{

    background:#ffffff;

    padding:120px 8%;

}

.cta-container{

    max-width:1100px;

    margin:auto;

    text-align:center;

    background:#0b3c6d;

    color:white;

    padding:80px 60px;

    border-radius:30px;

    position:relative;

    overflow:hidden;

}

/* Decorative Circles */

.cta-container::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-120px;

    left:-100px;

}

.cta-container::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(39,194,197,.15);

    bottom:-90px;

    right:-70px;

}

.cta-container span{

    position:relative;

    z-index:2;

    color:#27c2c5;

    letter-spacing:2px;

    font-weight:600;

}

.cta-container h2{

    position:relative;

    z-index:2;

    font-size:3rem;

    margin:25px 0;

    line-height:1.2;

}

.cta-container p{

    position:relative;

    z-index:2;

    max-width:720px;

    margin:auto;

    line-height:1.9;

    color:#dddddd;

}

/* Buttons */

.cta-buttons{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.cta-primary{

    background:#ffffff;

    color:#0b3c6d;

    text-decoration:none;

    padding:16px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.cta-primary:hover{

    background:#27c2c5;

    color:white;

    transform:translateY(-6px);

}

.cta-secondary{

    border:2px solid white;

    color:white;

    text-decoration:none;

    padding:16px 36px;

    border-radius:50px;

    transition:.35s;

}

.cta-secondary:hover{

    background:white;

    color:#0b3c6d;

    transform:translateY(-6px);

}

/* Mobile */

@media(max-width:991px){

    .cta-container{

        padding:60px 30px;

    }

    .cta-container h2{

        font-size:2.2rem;

    }

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

}

/*=========================================
                FOOTER
=========================================*/

.footer{

    background:#0a0a0a;

    color:#fff;

    padding:90px 8% 25px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

}

.footer-column h3{

    margin-bottom:25px;

    font-size:1.3rem;

    color:#fff;

}

.footer-column p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:15px;

}

.footer-column a{

    display:block;

    text-decoration:none;

    color:#bdbdbd;

    margin-bottom:15px;

    transition:.3s;

}

.footer-column a:hover{

    color:#27c2c5;

    padding-left:8px;

}

/* SOCIAL */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#161616;

    color:white;

    font-size:18px;

    transition:.35s;

}

.footer-social a:hover{

    background:#38b6ff;
    color:white;
    transform:translateY(-6px);

}

/* BOTTOM */

.footer-bottom{

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#8d8d8d;

}

.footer-bottom a{

    color:#38b6ff;

    text-decoration:none;

    font-weight:600;

}

.footer-bottom a:hover{

    color:white;

}

/* MOBILE */

@media(max-width:991px){

    .footer-container{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}

/*=========================================
            CONTACT HERO
=========================================*/

.contact-hero{

    height:45vh;

    background:
    linear-gradient(rgba(11,60,109,.78),
    rgba(11,60,109,.78)),
    url("imagess/contact-hero.jpg") center/cover;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 8% 80px;

}

.contact-hero-content{

    max-width:800px;

}

.contact-hero-content span{

    color:#27c2c5;

    letter-spacing:3px;

    font-weight:600;

}

.contact-hero-content h1{

    color:white;

    font-size:3.5rem;

    margin:20px 0;

}

.contact-hero-content p{

    color:#e5e5e5;

    line-height:1.9;

    margin-bottom:40px;

}

.hero-btn{

    display:inline-block;

    text-decoration:none;

    background:white;

    color:#0b3c6d;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.hero-btn:hover{

    background:#27c2c5;

    color:white;

    transform:translateY(-5px);

}

/* MOBILE */

@media(max-width:991px){

    .contact-hero{

        height:40vh;

    }

    .contact-hero-content h1{

        font-size:2.4rem;

    }

}

/*=========================================
            CONTACT SECTION
=========================================*/

.contact-section{

    padding:120px 8%;

    background:#ffffff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1.3fr;

    gap:60px;

    align-items:start;

}

/* LEFT */

.contact-details{

    background:#0b3c6d;

    color:white;

    padding:50px;

    border-radius:25px;

}

.contact-details span{

    color:#38b6ff;

    font-weight:600;

    letter-spacing:2px;

}

.contact-details h2{

    margin:20px 0;

    font-size:2.4rem;

}

.contact-details>p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:40px;

}

.contact-item{

    margin-bottom:30px;

}

.contact-item h4{

    margin-bottom:10px;

    color:#38b6ff;

}

.contact-item p{

    color:#ffffff;

    line-height:1.8;

}

/* FORM */

.contact-form-box{

    background:#f8f9fb;

    padding:50px;

    border-radius:25px;

    box-shadow:0 10px 40px rgba(0,0,0,.06);

}

.input-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{

    width:100%;

    margin-bottom:20px;

    padding:18px;

    border:1px solid #dddddd;

    border-radius:12px;

    font-size:15px;

    outline:none;

    transition:.3s;

    font-family:inherit;

}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus{

    border-color:#38b6ff;

    box-shadow:0 0 0 4px rgba(39,194,197,.12);

}

.contact-form-box textarea{

    resize:vertical;

}

.contact-form-box button{

    width:100%;

    border:none;

    background:#0b3c6d;

    color:white;

    padding:18px;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.contact-form-box button:hover{

    background:#38b6ff;

    transform:translateY(-4px);

}

.reply-time{

    text-align:center;

    margin-top:20px;

    color:#666;

}

/* MOBILE */

@media(max-width:991px){

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .input-row{

        grid-template-columns:1fr;

    }

    .contact-details,
    .contact-form-box{

        padding:35px;

    }

}