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

:root{
    --primary:#123f68;
    --primary-dark:#092b49;
    --primary-light:#eaf3fa;
    --accent:#f59e0b;
    --accent-dark:#df8700;
    --dark:#0b1f33;
    --text:#425466;
    --light:#f5f8fb;
    --white:#ffffff;
    --border:#e5ebf0;
    --success:#25d366;
    --shadow:0 15px 45px rgba(9,43,73,.10);
    --shadow-lg:0 25px 70px rgba(9,43,73,.16);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Manrope',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

section{
    padding:85px 0;
}

.text-primary{
    color:var(--primary)!important;
}

.text-warning{
    color:var(--accent)!important;
}

.bg-primary{
    background:var(--primary)!important;
}

.bg-warning{
    background:var(--accent)!important;
}

.btn{
    font-weight:700;
    border-radius:8px;
    padding:12px 22px;
    transition:.3s ease;
}

.btn-primary{
    background:var(--primary);
    border-color:var(--primary);
}

.btn-primary:hover{
    background:var(--primary-dark);
    border-color:var(--primary-dark);
    transform:translateY(-2px);
}

.btn-warning{
    background:var(--accent);
    border-color:var(--accent);
    color:#fff;
}

.btn-warning:hover{
    background:var(--accent-dark);
    border-color:var(--accent-dark);
    color:#fff;
    transform:translateY(-2px);
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--accent-dark);
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:12px;
}

.section-tag::before{
    content:"";
    width:28px;
    height:3px;
    border-radius:10px;
    background:var(--accent);
}

.section-title{
    color:var(--dark);
    font-size:40px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.section-title span{
    color:var(--primary);
}

.section-description{
    color:#667788;
    line-height:1.8;
    font-size:16px;
}

.section-heading{
    max-width:700px;
    margin:0 auto 50px;
    text-align:center;
}

.section-heading .section-tag::before{
    display:none;
}

/* ==============================
   TOP BAR
============================== */

.topbar{
    background:var(--primary-dark);
    color:#fff;
    font-size:13px;
}

.topbar-inner{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.topbar-contact{
    display:flex;
    align-items:center;
    gap:24px;
}

.topbar-contact a{
    color:rgba(255,255,255,.9);
    transition:.3s;
}

.topbar-contact a:hover{
    color:var(--accent);
}

.topbar-contact i{
    color:var(--accent);
    margin-right:7px;
}

.topbar-social{
    display:flex;
    align-items:center;
    gap:5px;
}

.topbar-social a{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border-left:1px solid rgba(255,255,255,.1);
    transition:.3s;
}

.topbar-social a:hover{
    background:var(--accent);
}

/* ==============================
   NAVBAR
============================== */

.main-navbar{
    background:#fff;
    padding:8px 0;
    position:relative;
    z-index:1000;
    box-shadow:0 4px 20px rgba(9,43,73,.06);
}

.main-navbar.sticky-top{
    top:0;
}

.navbar-brand img{
    width:76px;
    height:76px;
    object-fit:contain;
}

.navbar-nav{
    align-items:center;
    gap:2px;
}

.navbar-nav .nav-link{
    color:var(--dark)!important;
    font-size:14px;
    font-weight:700;
    padding:14px 12px!important;
    position:relative;
    transition:.3s;
}

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:12px;
    right:12px;
    bottom:7px;
    height:2px;
    background:var(--accent);
    transform:scaleX(0);
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:var(--primary)!important;
}

.navbar-nav .nav-link:hover::after{
    transform:scaleX(1);
}

.nav-contact-btn{
    background:var(--accent);
    color:#fff!important;
    border-radius:7px;
    padding:11px 18px!important;
    margin-left:8px;
}

.nav-contact-btn:hover{
    background:var(--primary);
    color:#fff!important;
}

.nav-contact-btn::after{
    display:none;
}

/* ==============================
   HERO SLIDER - FIXED
============================== */

.hero-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item{
    width:100%;
}

.hero-slide{
    width:100%;
    min-height:660px;

    display:flex;
    align-items:center;

    position:relative;

    background-repeat:no-repeat !important;
    background-size:cover !important;
    background-position:center center !important;
}

/* SLIDE 1 */
.hero-slide-1{
    background-image:url("../../assets/images/slider/slide-1.webp") !important;
}

/* SLIDE 2 */
.hero-slide-2{
    background-image:url("../../assets/images/slider/slide-2.webp") !important;
}

/* SLIDE 3 */
.hero-slide-3{
    background-image:url("../../assets/images/slider/slide-5.webp") !important;
}

/* SLIDE 4 */
.hero-slide-4{
    background-image:url("../../assets/images/slider/slide-4.webp") !important;
}

/* SLIDE 4 */
.hero-slide-5{
    background-image:url("../../assets/images/slider/slide-3.webp") !important;
}

/* DARK OVERLAY */
.hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;

    background:linear-gradient(
        90deg,
        rgba(5,25,43,0.92) 0%,
        rgba(5,25,43,0.75) 45%,
        rgba(5,25,43,0.15) 100%
    );
}

/* HERO CONTENT */
.hero-content{
    position:relative;
    z-index:2;

    max-width:720px;
    padding:80px 0 120px;
}

.hero-content h1{
    color:#ffffff;
    font-size:62px;
    line-height:1.08;
    font-weight:800;
    margin-bottom:22px;
}

.hero-content h1 span{
    color:#f59e0b;
}

.hero-content p{
    color:rgba(255,255,255,0.85);
    font-size:18px;
    line-height:1.8;
    max-width:620px;
    margin-bottom:30px;
}

/* MOBILE */
@media(max-width:767px){

    .hero-slide{
        min-height:540px;

        background-size:cover !important;
        background-position:center center !important;
    }

    .hero-slide::before{
        background:rgba(5,25,43,0.72);
    }

    .hero-content{
        text-align:center;
        padding:60px 0 100px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:15px;
    }
}

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

.hero-features{
    position:relative;
    z-index:20;
    margin-top:-65px;
}

.hero-feature-wrapper{
    background:#fff;
    border-radius:14px;
    box-shadow:var(--shadow-lg);
    overflow:hidden;
}

.hero-feature{
    padding:28px 24px;
    display:flex;
    align-items:center;
    gap:17px;
    height:100%;
    border-right:1px solid var(--border);
}

.hero-feature:last-child{
    border-right:0;
}

.hero-feature-icon{
    width:56px;
    height:56px;
    flex:0 0 56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:var(--primary-light);
    color:var(--primary);
    font-size:25px;
}

.hero-feature h6{
    color:var(--dark);
    font-weight:800;
    margin-bottom:5px;
}

.hero-feature p{
    font-size:13px;
    margin:0;
    color:#718096;
}

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

.about-section{
    padding-top:120px;
}

.about-image-wrap{
    position:relative;
    padding-right:30px;
    padding-bottom:30px;
}

.about-main-image{
    width:100%;
    min-height:267px;
    object-fit:cover;
    border-radius:14px;
}

.about-experience{
    position:absolute;
    right:0;
    bottom:0;
    width:190px;
    background:var(--primary);
    color:#fff;
    padding:25px;
    border-radius:12px;
    border:7px solid #fff;
}

.about-experience h3{
    color:var(--accent);
    font-size:42px;
    font-weight:800;
    margin:0;
}

.about-experience p{
    color:#fff;
    margin:0;
    font-size:13px;
}

.about-list{
    margin:25px 0;
}

.about-list-item{
    display:flex;
    gap:14px;
    margin-bottom:18px;
}

.about-check{
    width:28px;
    height:28px;
    flex:0 0 28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e8f7ef;
    color:#17a05d;
}

.about-list-item h6{
    color:var(--dark);
    font-weight:800;
    margin-bottom:3px;
}

.about-list-item p{
    font-size:14px;
    margin:0;
    color:#718096;
}

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

.services-section{
    background:var(--light);
}

.service-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:30px 25px;
    position:relative;
    overflow:hidden;
    transition:.35s;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:0;
    background:var(--accent);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    border-color:transparent;
}

.service-card:hover::before{
    height:100%;
}

.service-icon{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary-light);
    color:var(--primary);
    border-radius:10px;
    font-size:29px;
    margin-bottom:22px;
    transition:.35s;
}

.service-card:hover .service-icon{
    background:var(--primary);
    color:#fff;
}

.service-card h5{
    color:var(--dark);
    font-weight:800;
    margin-bottom:12px;
}

.service-card p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:18px;
}

.service-link{
    color:var(--primary);
    font-size:13px;
    font-weight:800;
}

.service-link i{
    transition:.3s;
}

.service-card:hover .service-link i{
    margin-left:5px;
}

/* ==============================
   INDUSTRIES
============================== */

.industry-card{
    height:100%;
    padding:30px 20px;
    text-align:center;
    border:1px solid var(--border);
    border-radius:12px;
    background:#fff;
    transition:.3s;
}

.industry-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
    border-color:transparent;
}

.industry-icon{
    width:70px;
    height:70px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#fff5e5;
    color:var(--accent-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.industry-card h5{
    color:var(--dark);
    font-weight:800;
    margin:0;
}

/* ==============================
   REACH
============================== */

.reach-section{
    background:var(--primary-dark);
    position:relative;
    overflow:hidden;
}

.reach-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('assets/images/world-map.png') center/contain no-repeat;
    opacity:.08;
}

.reach-section .container{
    position:relative;
}

.reach-section .section-title{
    color:#fff;
}

.reach-section .section-description{
    color:rgba(255,255,255,.7);
}

.city-card{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    padding:25px 20px;
    color:#fff;
    transition:.3s;
    backdrop-filter:blur(8px);
}

.city-card:hover{
    background:var(--accent);
    transform:translateY(-5px);
}

.city-card i{
    font-size:25px;
    color:var(--accent);
    margin-bottom:12px;
}

.city-card:hover i{
    color:#fff;
}

.city-card h5{
    font-weight:800;
    margin:0;
}

/* ==============================
   COUNTER
============================== */

.counter-section{
    background:var(--primary);
    padding:0;
}

.counter-item{
    padding:45px 20px;
    text-align:center;
    color:#fff;
    border-right:1px solid rgba(255,255,255,.15);
}

.counter-item:last-child{
    border-right:0;
}

.counter-item i{
    display:block;
    color:var(--accent);
    font-size:30px;
    margin-bottom:10px;
}

.counter-item h2{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:4px;
}

.counter-item p{
    color:rgba(255,255,255,.7);
    margin:0;
    font-size:14px;
}

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

.why-image{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:14px;
}

.why-card{
    display:flex;
    gap:15px;
    padding:18px;
    border:1px solid var(--border);
    border-radius:10px;
    margin-bottom:12px;
    transition:.3s;
}

.why-card:hover{
    border-color:transparent;
    box-shadow:var(--shadow);
    transform:translateX(5px);
}

.why-icon{
    width:46px;
    height:46px;
    flex:0 0 46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    background:var(--primary-light);
    color:var(--primary);
    font-size:20px;
}

.why-card h6{
    color:var(--dark);
    font-weight:800;
    margin-bottom:4px;
}

.why-card p{
    margin:0;
    font-size:13px;
    line-height:1.6;
}

/* ==============================
   TESTIMONIAL
============================== */

.testimonial-section{
    background:var(--light);
}

.testimonial-card{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:45px;
    border-radius:14px;
    box-shadow:var(--shadow);
    text-align:center;
}

.quote-icon{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    border-radius:50%;
    background:var(--primary-light);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
}

.testimonial-img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    box-shadow:0 0 0 2px var(--accent);
    margin-bottom:18px;
}

.testimonial-text{
    font-size:17px;
    line-height:1.9;
    color:#5d6d7e;
    font-style:italic;
}

.testimonial-card h5{
    color:var(--dark);
    font-weight:800;
}

.testimonial-stars{
    color:var(--accent);
    margin-top:12px;
}

.testi-slider .carousel-indicators{
    position:relative;
    margin-top:30px;
    margin-bottom:0;
}

.testi-slider .carousel-indicators button{
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--primary);
}

.testi-slider .carousel-indicators .active{
    width:28px;
    border-radius:10px;
    background:var(--accent);
}

/* ==============================
   CLIENT LOGOS
============================== */

.client-logo-card{
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:10px;
    padding:15px;
    transition:.3s;
}

.client-logo-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.client-logo-card img{
    max-height:65px;
    max-width:100%;
    object-fit:contain;
}

/* ==============================
   BLOG
============================== */

.blog-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    overflow:hidden;
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    border-color:transparent;
}

.blog-image{
    overflow:hidden;
    height:230px;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.07);
}

.blog-content{
    padding:25px;
}

.blog-meta{
    color:var(--accent-dark);
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
}

.blog-content h5{
    color:var(--dark);
    font-weight:800;
}

.blog-content p{
    font-size:14px;
    line-height:1.7;
}

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

.contact-section{
    background:var(--light);
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:14px;
    box-shadow:var(--shadow);
}

.contact-form-box .form-label{
    color:var(--dark);
    font-size:13px;
    font-weight:700;
}

.contact-form-box .form-control{
    min-height:50px;
    border:1px solid var(--border);
    border-radius:7px;
    font-size:14px;
}

.contact-form-box textarea.form-control{
    min-height:130px;
}

.contact-form-box .form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(18,63,104,.08);
}

.support-box{
    height:100%;
    background:var(--primary-dark);
    border-radius:14px;
    padding:45px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.support-box::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    right:-100px;
    top:-100px;
}

.support-box h3{
    color:#fff;
    font-weight:800;
}

.support-box p{
    color:rgba(255,255,255,.7);
    line-height:1.8;
}

.support-phone{
    display:flex;
    align-items:center;
    gap:15px;
    margin:25px 0;
}

.support-phone-icon{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--accent);
    color:#fff;
    border-radius:50%;
    font-size:23px;
}

.support-phone small{
    display:block;
    color:rgba(255,255,255,.6);
}

.support-phone a{
    color:#fff;
    font-size:21px;
    font-weight:800;
}

/* ==============================
   CTA
============================== */

.cta-section{
    padding:45px 0;
    background:var(--accent);
}

.cta-section h3{
    color:#fff;
    font-weight:800;
    margin-bottom:5px;
}

.cta-section p{
    color:rgba(255,255,255,.85);
    margin:0;
}

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

.main-footer{
    background:#071d30;
    color:rgba(255,255,255,.7);
    padding:75px 0 0;
    position:relative;
}

.main-footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('assets/images/world-map.png') center/contain no-repeat;
    opacity:.035;
}

.main-footer .container{
    position:relative;
}

.footer-logo{
    width:90px;
    height:90px;
    object-fit:contain;
    background:#fff;
    border-radius:10px;
    padding:5px;
    margin-bottom:20px;
}

.footer-title{
    color:#fff;
    font-weight:800;
    font-size:18px;
    margin-bottom:24px;
    position:relative;
    padding-bottom:12px;
}

.footer-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:40px;
    height:3px;
    background:var(--accent);
    border-radius:10px;
}

.footer-text{
    font-size:13px;
    line-height:1.9;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,.7);
    font-size:13px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--accent);
    padding-left:5px;
}

.footer-links i{
    color:var(--accent);
    margin-right:8px;
}

.footer-contact-item{
    display:flex;
    gap:12px;
    margin-bottom:16px;
    font-size:13px;
    line-height:1.7;
}

.footer-contact-item i{
    color:var(--accent);
    margin-top:4px;
}

.footer-contact-item a{
    color:rgba(255,255,255,.7);
}

.footer-social{
    display:flex;
    gap:8px;
}

.footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:7px;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--accent);
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:55px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.1);
    font-size:12px;
}

/* ==============================
   FLOATING BUTTONS
============================== */

.whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25d366;
    color:#fff;
    font-size:26px;
    border-radius:50%;
    z-index:1000;
    box-shadow:0 8px 25px rgba(37,211,102,.35);
    animation:whatsappPulse 2s infinite;
}

.whatsapp:hover{
    color:#fff;
}

@keyframes whatsappPulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)}
    70%{box-shadow:0 0 0 15px rgba(37,211,102,0)}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}

#topBtn{
    position:fixed;
    right:25px;
    bottom:95px;
    width:42px;
    height:42px;
    border:0;
    border-radius:8px;
    background:var(--primary);
    color:#fff;
    z-index:999;
    display:none;
}

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

.animate{
    opacity:0;
    transform:translateY(30px);
    transition:.8s ease;
}

.animate.show{
    opacity:1;
    transform:none;
}

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

@media(max-width:991px){

    section{
        padding:65px 0;
    }

    .topbar-social{
        display:none;
    }

    .navbar-nav{
        align-items:stretch;
        padding:15px 0;
    }

    .navbar-nav .nav-link{
        padding:10px 5px!important;
    }

    .nav-contact-btn{
        margin:5px 0;
        text-align:center;
    }

    .hero-slide{
        min-height:580px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-features{
        margin-top:0;
        padding-top:20px;
    }

    .hero-feature{
        border-bottom:1px solid var(--border);
    }

    .about-section{
        padding-top:70px;
    }

    .about-image-wrap{
        margin-bottom:50px;
    }

    .section-title{
        font-size:34px;
    }
}

@media(max-width:767px){

    .topbar-inner{
        justify-content:center;
    }

    .topbar-contact{
        gap:8px;
        flex-direction:column;
        padding:8px 0;
    }

    .hero-slide{
        min-height:540px;
        text-align:center;
    }

    .hero-slide::before{
        background:rgba(5,25,43,.78);
    }

    .hero-content{
        margin:auto;
        padding:60px 0 90px;
    }

    .hero-content h1{
        font-size:39px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-slider .carousel-indicators{
        justify-content:center;
        margin-left:15%;
        margin-right:15%;
    }

    .section-title{
        font-size:30px;
    }

    .about-main-image,
    .why-image{
        min-height:auto;
        height:auto;
    }

    .counter-item{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .contact-form-box,
    .support-box{
        padding:28px 22px;
    }

    .cta-section{
        text-align:center;
    }

    .cta-section .btn{
        margin-top:20px;
    }

    .footer-bottom{
        text-align:center;
    }
}
