/* =====================================
   GOOGLE FONT
===================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* =====================================
   GLOBAL
===================================== */







body{

    font-family:'Poppins',sans-serif;

    background:#f5f7fa;

    color:#222;

    overflow-x:hidden;

}



/* Anchor Scroll Fix */




a{

    text-decoration:none;

}



img{

    max-width:100%;

    display:block;

}



.btn-primary{

    background:#0d6efd;

    border:none;

}


.btn-primary:hover{

    background:#084f98;

}






.custom-navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:#ffffff;

    padding:15px 0;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    border-bottom:1px solid #eef2f7;

    transition:all .35s ease;
    
}

/* Shrink on Scroll */

.custom-navbar.scrolled{

    padding:10px 0;

    box-shadow:0 15px 40px rgba(13,110,253,.12);
}

/* Logo */

/* Logo */

.navbar-brand{
    padding:0;
    margin:0;
    display:flex;
    align-items:center;
}

.navbar-brand img{
    height:60px;              /* Keep original height */
    width:auto;
    transition:.35s ease;
    transform:scale(1.5);     /* Makes logo look 30% bigger */
    transform-origin:left center;
}

/* On Scroll */

.custom-navbar.scrolled .navbar-brand img{
    height:52px;
    transform:scale(1.25);
}

/* Navigation */

.nav-link{

    position:relative;

    color:#1b1b1b !important;

    font-size:17px;

    font-weight:600;

    margin:0 14px;

    transition:.3s;
}

.nav-link:hover{

    color:#0d6efd !important;
}

/* Animated Underline */

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-6px;

    width:0;

    height:3px;

    border-radius:20px;

    background:#0d6efd;

    transform:translateX(-50%);

    transition:.35s;
}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;
}

.nav-link.active{

    color:#0d6efd !important;
}

/* CTA Button */

.navbar .btn-primary{

    background:linear-gradient(135deg,#0d6efd,#008cff);

    border:none;

    border-radius:50px;

    padding:12px 28px;

    font-weight:600;

    transition:.35s;
}

.navbar .btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(13,110,253,.35);
}
/* =====================================
          HERO SECTION
===================================== */

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#ffffff,#f5f9ff);

    overflow:hidden;

    padding:120px 0 90px;

}


/* Background Glow */

.hero-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-220px;

    top:-260px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(13,110,253,.15),
    transparent 70%);

    animation:glowMove 8s ease-in-out infinite;

}


.hero-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    left:-160px;

    bottom:-220px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,180,255,.10),
    transparent 70%);

    animation:glowMove2 10s ease-in-out infinite;

}


@keyframes glowMove{

    50%{
        transform:translateY(40px);
    }

}


@keyframes glowMove2{

    50%{
        transform:translateX(40px);
    }

}


/* Container */

.hero-section .container{

    position:relative;

    z-index:2;

}


.hero-section .row{

    align-items:center;

}


/* Left Content */

.hero-content{

    max-width:580px;

}


.hero-title{

    font-size:62px;

    font-weight:800;

    line-height:1.15;

    color:#0b2345;

    margin-bottom:25px;

}


.hero-title span{

    color:#0d6efd;

}


.hero-text{

    font-size:18px;

    line-height:1.8;

    color:#666;

    margin-bottom:35px;

}


/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


.hero-btn{

    background:#0d6efd;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}


.hero-btn:hover{

    color:#fff;

    transform:translateY(-4px);

}


.hero-btn-outline{

    border:2px solid #0d6efd;

    color:#0d6efd;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}


.hero-btn-outline:hover{

    background:#0d6efd;

    color:#fff;

}


/* Right Image */

.hero-image-box{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100%;
    padding-top:40px;   /* pushes image slightly down */
}


.hero-image{
    width:100%;
    max-width:620px;
    height:auto;
    display:block;

    animation:floatImage 5s ease-in-out infinite;
    filter:drop-shadow(0 30px 60px rgba(13,110,253,.20));
}
.hero-section .container{
    height:100%;
}

.hero-section .row{
    min-height:75vh;
    align-items:center;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}
/* =====================================
        RESPONSIVE
===================================== */

@media (max-width:991px){

    .custom-navbar{

        padding:8px 25px;

    }

    .navbar-brand img{

        height:60px;

    }

    .hero-section{

        min-height:auto;

        text-align:center;

        padding:120px 0 70px;

    }

    .hero-content{
    max-width:580px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
}

    .hero-title{

        font-size:48px;

    }

    .hero-text{

        font-size:17px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-image-box{

        justify-content:center;

        margin-top:50px;

    }

    .hero-image{

        max-width:480px;

    }

}



@media (max-width:768px){

    .hero-section{

        padding:110px 0 60px;

    }

    .hero-title{

        font-size:40px;

    }

    .hero-text{

        font-size:16px;

        line-height:1.7;

    }

    .hero-btn,
    .hero-btn-outline{

        padding:14px 28px;

        font-size:15px;

    }

}



@media (max-width:576px){

    .custom-navbar{

        padding:10px 0;

    }

    .navbar-brand img{

        height:50px;

    }

    .hero-section{

        padding:100px 0 50px;

    }

    .hero-title{

        font-size:34px;

        line-height:1.2;

    }

    .hero-text{

        font-size:15px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .hero-btn,
    .hero-btn-outline{

        width:100%;

        max-width:260px;

        text-align:center;

    }

    .hero-image{

        max-width:320px;

        margin:auto;

    }

}
/* =====================================
            ABOUT SECTION
===================================== */

.about-section{

    padding:100px 0;

    background:#fff;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    background:rgba(13,110,253,.08);

    color:#0d6efd;

    font-size:14px;

    font-weight:700;

    border-radius:50px;

    letter-spacing:1px;

}

.about-section h2{

    font-size:42px;

    font-weight:800;

    color:#0b2345;

}

.about-section p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

.about-section img{

    border-radius:20px;

    transition:.4s;

}

.about-section img:hover{

    transform:scale(1.03);

}

.about-section i{

    color:#0d6efd;

    margin-right:10px;

    font-size:18px;

}



/* =====================================
            SERVICES SECTION
===================================== */

.services-section{

    padding:100px 0;

    background:#f8fbff;

}

.section-title{

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    background:#eaf3ff;

    color:#0d6efd;

    padding:8px 18px;

    border-radius:40px;

    font-weight:700;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-title h2{

    font-size:42px;

    font-weight:800;

    color:#0b2345;

    margin-bottom:18px;

}

.section-title p{

    color:#666;

    max-width:650px;

    margin:auto;

    font-size:17px;

}



/* Service Card */

.service-box{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    display:block;

    text-decoration:none;

    color:#222;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    border:1px solid #edf2f7;

    position:relative;

    overflow:hidden;

}

.service-box::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#0d6efd;

    transform:scaleX(0);

    transition:.35s;

}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

    color:#222;

}

.service-box:hover::before{

    transform:scaleX(1);

}



/* Service Icon */

.service-icon{

    width:80px;

    height:80px;

    background:linear-gradient(135deg,#0d6efd,#009dff);

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    color:#fff;

    font-size:32px;

    transition:.35s;

}

.service-box:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

}



/* Service Title */

.service-box h4{

    font-size:23px;

    font-weight:700;

    margin-bottom:15px;

    color:#0b2345;

}



/* Service Description */

.service-box p{

    color:#666;

    line-height:1.8;

    margin:0;

}



/* Responsive */

@media(max-width:991px){

    .about-section{

        text-align:center;

    }

    .about-section img{

        margin-bottom:40px;

    }

    .section-title h2{

        font-size:34px;

    }

}

@media(max-width:576px){

    .services-section{

        padding:70px 0;

    }

    .about-section{

        padding:70px 0;

    }

    .section-title h2{

        font-size:28px;

    }

    .service-box{

        padding:30px 22px;

    }

    .service-icon{

        width:65px;

        height:65px;

        font-size:26px;

    }

}
/* =====================================
        INDUSTRIES SECTION
===================================== */

.industries-section{

    padding:100px 0;

    background:#ffffff;

}


.industries-section h2{

    font-size:42px;

    font-weight:800;

    color:#0b2345;

    margin-bottom:15px;

}


.industries-section p{

    color:#666;

    font-size:17px;

    margin-bottom:0;

}



/* Industry Card */

.industry-card{

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    cursor:pointer;

    position:relative;

    overflow:hidden;

}


.industry-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#0d6efd;

    transform:scaleX(0);

    transition:.35s;

}


.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}


.industry-card:hover::before{

    transform:scaleX(1);

}



/* Icon */

.industry-card i{

    width:85px;

    height:85px;

    background:linear-gradient(135deg,#0d6efd,#009dff);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin:0 auto 25px;

    transition:.35s;

}


.industry-card:hover i{

    transform:rotate(10deg) scale(1.08);

}



/* Title */

.industry-card h5{

    font-size:22px;

    font-weight:700;

    color:#0b2345;

    margin:0;

}



/* Responsive */

@media(max-width:991px){

    .industries-section{

        padding:80px 0;

    }

}


@media(max-width:576px){

    .industries-section{

        padding:70px 0;

    }

    .industries-section h2{

        font-size:30px;

    }

    .industry-card{

        padding:30px 20px;

    }

    .industry-card i{

        width:70px;

        height:70px;

        font-size:28px;

    }

    .industry-card h5{

        font-size:18px;

    }

}
/* =====================================
        PORTFOLIO SECTION
===================================== */

.portfolio-section{

    padding:70px 0;
    background:#f8fbff;

}

/* Header */

.portfolio-section .section-tag{

    display:inline-block;

    padding:8px 20px;

    background:#e9f2ff;

    color:#0d6efd;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

.portfolio-section .section-title{

    font-size:48px;

    font-weight:800;

    color:#0b2345;

    margin-bottom:18px;

    line-height:1.2;

}

.portfolio-section .section-title span{

    color:#0d6efd;

}

.section-subtitle{

    max-width:700px;

    margin:0 auto 45px;

    font-size:18px;

    line-height:1.7;

    color:#666;

}

/* Cards */

.portfolio-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.portfolio-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(13,110,253,.18);

}

/* Images */

.portfolio-card img{

    width:100%;

    height:180px;

    object-fit:cover;

}

/* Content */

.portfolio-content{

    padding:20px;

}

.portfolio-category{

    display:inline-block;

    background:#0d6efd;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    margin-bottom:15px;

}

.portfolio-content h4{

    font-size:22px;

    font-weight:700;

    color:#0b2345;

    margin-bottom:12px;

}

.portfolio-content p{

    color:#666;

    font-size:15px;

    line-height:1.7;

}

/* Tags */

.portfolio-tags{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-top:18px;

}

.portfolio-tags span{

    padding:6px 14px;

    border-radius:25px;

    background:#eef5ff;

    color:#0d6efd;

    font-size:12px;

    font-weight:600;

}
/* =====================================
        CONTACT SECTION
===================================== */

.contact-section{

    padding:60px 0;

    background:#f8fbff;

}

/* Section Header */

.contact-section .section-title{

    text-align:center;

    margin-bottom:35px;

}

.contact-section .section-tag{

    display:inline-block;

    padding:7px 18px;

    background:#eaf3ff;

    color:#0d6efd;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:12px;

}

.contact-section h2{

    font-size:34px;

    font-weight:800;

    color:#0b2345;

    margin-bottom:10px;

}

.contact-section .section-title p{

    color:#666;

    font-size:15px;

    margin:0;

}


/* Contact Info Card */

.contact-info{

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

}

.contact-info h3{

    font-size:24px;

    font-weight:700;

    color:#0b2345;

    margin-bottom:8px;

}

.contact-info>p{

    color:#666;

    font-size:14px;

    margin-bottom:20px;

}


/* Contact Item */

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

}

.contact-icon{

    width:48px;

    height:48px;

    min-width:48px;

    background:linear-gradient(135deg,#0d6efd,#009dff);

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    transition:.3s;

}

.contact-item:hover .contact-icon{

    transform:scale(1.08);

}

.contact-item h6{

    font-size:15px;

    font-weight:700;

    color:#0b2345;

    margin-bottom:4px;

}

.contact-item p{

    font-size:14px;

    color:#666;

    line-height:1.5;

    margin:0;

}


/* Contact Form */

.contact-form{

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

}


/* Inputs */

.contact-form .form-control{

    border:1px solid #dce5ef;

    border-radius:12px;

    padding:10px 15px;

    font-size:14px;

    box-shadow:none;

    transition:.3s;

}

.contact-form .form-control:focus{

    border-color:#0d6efd;

    box-shadow:0 0 0 3px rgba(13,110,253,.15);

}


/* Textarea */

.contact-form textarea{

    resize:none;

    height:100px;

}


/* Bootstrap spacing */

.contact-form .mb-3{

    margin-bottom:12px !important;

}


/* Button */

.contact-btn{

    background:linear-gradient(135deg,#0d6efd,#009dff);

    color:#fff;

    border:none;

    border-radius:50px;

    padding:12px 28px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.contact-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(13,110,253,.25);

}

.contact-btn i{

    margin-right:8px;

}


/* Responsive */

@media(max-width:991px){

    .contact-section{

        padding:50px 0;

    }

    .contact-info{

        margin-bottom:25px;

    }

}

@media(max-width:576px){

    .contact-section h2{

        font-size:28px;

    }

    .contact-info,
    .contact-form{

        padding:20px;

    }

    .contact-item{

        margin-bottom:15px;

    }

    .contact-icon{

        width:42px;

        height:42px;

        min-width:42px;

        font-size:16px;

    }

}
/* =====================================
            COMPACT FOOTER
===================================== */

.footer{

    background:#0b2345;
    color:#d8e4f0;

    padding:45px 0 15px;

}

.footer .row{

    row-gap:20px;

}

/* Logo */

.footer-logo{

    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;

}

.footer-logo-img{

    width:50px;

}

.footer-logo span{

    font-size:22px;
    font-weight:700;
    color:#fff;

}

/* About */

.footer-text{

    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;

}

/* Headings */

.footer h5{

    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;

}

/* Links */

.footer-links{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:10px;

}

.footer-links a{

    color:#d8e4f0;
    transition:.3s;

}

.footer-links a:hover{

    color:#0d6efd;

}

/* Contact */

.footer-contact p{

    display:flex;
    align-items:flex-start;
    gap:10px;

    margin-bottom:12px;

    font-size:15px;

    line-height:1.5;

}

.footer-contact i{

    color:#0d6efd;
    width:18px;

}

/* Social */

.footer-social{

    display:flex;
    gap:12px;

}

.footer-social a{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#0d6efd;

}

/* Divider */

.footer hr{

    margin:25px 0 15px;

    opacity:.15;

}

/* Bottom */

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;
    font-size:15px;

}

/* Mobile */

@media(max-width:991px){

    .footer{

        text-align:center;

    }

    .footer-logo{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

}
/* ==========================
   WHATSAPP FLOAT BUTTON
========================== */

.whatsapp-float{
    position:fixed !important;
    width:70px;
    height:70px;
    right:25px;
    bottom:25px;
    background:#25D366;
    color:#fff !important;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    z-index:999999;
    transition:.3s;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.12);
    color:#fff;
    background:#20c55a;
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){

.whatsapp-float{
    width:60px;
    height:60px;
    font-size:34px;
    right:18px;
    bottom:18px;
}

}
/*==================================
    CONTACT BUTTON LOADING
===================================*/

.submit-btn{

    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:50px;

    padding:15px 35px;

    font-size:16px;
    font-weight:600;

    transition:.3s;

    min-width:220px;

}

.submit-btn:hover{

    background:#0b5ed7;

}

.submit-btn:disabled{

    opacity:.85;

    cursor:not-allowed;

}
/*=================================
        CONTACT BUTTON
==================================*/

.contact-btn{

    background:linear-gradient(135deg,#0d6efd,#2563eb);
    color:#fff;
    border:none;
    border-radius:50px;

    padding:15px 40px;

    font-size:16px;
    font-weight:600;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:220px;
    height:58px;

    transition:.35s ease;

    box-shadow:0 10px 25px rgba(13,110,253,.25);

}

.contact-btn:hover{

    background:linear-gradient(135deg,#0b5ed7,#1d4ed8);
    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(13,110,253,.35);

}

.contact-btn:disabled{

    opacity:1;
    cursor:not-allowed;

}

.contact-btn i{

    font-size:15px;

}
/*==================================
        BACK TO TOP BUTTON
===================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:95px;   /* Above WhatsApp button */

    width:55px;

    height:55px;

    background:linear-gradient(135deg,#0d6efd,#2563eb);

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:20px;

    box-shadow:0 12px 30px rgba(13,110,253,.35);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    z-index:999;

}

#backToTop:hover{

    color:#fff;

    transform:translateY(-5px) scale(1.08);

    box-shadow:0 18px 40px rgba(13,110,253,.45);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* Mobile */

@media(max-width:768px){

    #backToTop{

        width:48px;

        height:48px;

        right:18px;

        bottom:85px;

        font-size:18px;

    }

}