/*==================================================
                GOOGLE FONT
==================================================*/

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

/*==================================================
                VARIABLES
==================================================*/

:root{

    --primary:#0D6EFD;
    --secondary:#00C2FF;
    --dark:#071A3D;
    --light:#F8FAFC;
    --white:#ffffff;
    --text:#5B6475;

    --gradient:linear-gradient(135deg,#0D6EFD,#00C2FF);

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --shadow-hover:0 25px 60px rgba(13,110,253,.20);

    --radius:18px;

    --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;

    overflow-x:hidden;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

.section{

    padding:100px 0;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

h1,h2,h3,h4,h5{

    color:var(--dark);

    font-weight:700;

}

p{

    line-height:1.8;

}

/*==================================================
                PRELOADER
==================================================*/

#preloader{

    position:fixed;

    inset:0;

    background:#fff;

    z-index:99999;

    display:flex;

    justify-content:center;

    align-items:center;

}

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

.top-bar{

    background:var(--dark);

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-bar a{

    color:#fff;

    margin-left:15px;

}

.top-bar a:hover{

    color:var(--secondary);

}

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

.navbar{

    padding:10px 0;

    transition:.4s;

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

    backdrop-filter:blur(12px);

    box-shadow:0 5px 30px rgba(0,0,0,.05);

}

.navbar-brand{

    font-size:30px;

    font-weight:700;

    color:var(--dark)!important;

}

.logo-circle{

    width:42px;

    height:42px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    margin-right:10px;

    font-size:16px;

}

.nav-link{

    color:var(--dark)!important;

    margin-left:18px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link.active{

    color:var(--primary)!important;

}

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

.btn{

    border-radius:50px;

    padding:14px 30px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--gradient);

    border:none;

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-hover);

}

.btn-outline-primary{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--gradient);

    color:#fff;

    border-color:transparent;

}

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

.hero{

    position:relative;

    overflow:hidden;

    padding-top:140px;

    background:linear-gradient(180deg,#F8FBFF,#FFFFFF);

}

.hero-bg{

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(13,110,253,.08);

    right:-250px;

    top:-200px;

    filter:blur(30px);

}

.hero h1{

    font-size:58px;

    line-height:1.2;

    margin:25px 0;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:18px;

    margin-bottom:40px;

}

.hero-tag{

    display:inline-block;

    background:#EAF3FF;

    color:var(--primary);

    padding:10px 22px;

    border-radius:30px;

    font-weight:600;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:25px;

    box-shadow:0 40px 80px rgba(0,0,0,.12);

}

/*==================================================
                FLOATING CARDS
==================================================*/

.floating-card{

    position:absolute;

    background:#fff;

    padding:16px 22px;

    border-radius:16px;

    box-shadow:var(--shadow);

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

    animation:float 4s ease-in-out infinite;

}

.floating-card i{

    color:var(--primary);

    font-size:22px;

}

.card-one{

    top:15%;

    left:-40px;

}

.card-two{

    bottom:12%;

    right:-30px;

}

.hero-stats{

    display:flex;

    gap:40px;

    margin-top:60px;

}

.hero-stats h2{

    color:var(--primary);

    font-size:42px;

}

.hero-stats p{

    margin:0;

}

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

.clients{

    padding:70px 0;

    background:#fff;

}

.clients h4{

    color:#B7BDC8;

    transition:.3s;

    font-weight:600;

}

.clients h4:hover{

    color:var(--primary);

}

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

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

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

#about img{

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

#about img:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

#about h2{

    font-size:42px;

    margin:20px 0;

}

.feature-box{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    border-radius:14px;

    padding:16px 20px;

    margin-bottom:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:var(--transition);

}

.feature-box:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-hover);

}

.feature-box i{

    color:var(--primary);

    font-size:22px;

}

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

.service-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    height:100%;

    transition:var(--transition);

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:rgba(13,110,253,.05);

    top:-40px;

    right:-40px;

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.service-card:hover::before{

    transform:scale(2);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--gradient);

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.service-card h4{

    margin-bottom:18px;

}

.service-card p{

    margin-bottom:25px;

}

.service-link{

    color:var(--primary);

    font-weight:600;

}

.service-link i{

    margin-left:6px;

    transition:.3s;

}

.service-link:hover i{

    margin-left:12px;

}

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

.why-box{

    background:#fff;

    border-radius:16px;

    padding:18px 20px;

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:var(--transition);

}

.why-box:hover{

    transform:translateX(8px);

    box-shadow:var(--shadow-hover);

}

.why-box i{

    color:#22c55e;

    font-size:20px;

}

/*==================================================
                PROCESS
==================================================*/

.process-card{

    background:#fff;

    border-radius:20px;

    padding:35px 20px;

    height:100%;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.process-number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--gradient);

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:22px;

}

.process-card h5{

    margin-bottom:12px;

}

/*==================================================
                STATISTICS
==================================================*/

.stats-section{

    background:var(--gradient);

    color:#fff;

}

.stats-section h2,

.stats-section p{

    color:#fff;

}

.stat-card{

    padding:40px 20px;

    border-radius:20px;

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

    backdrop-filter:blur(12px);

    transition:var(--transition);

}

.stat-card:hover{

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

    transform:translateY(-8px);

}

.counter{

    font-size:56px;

    font-weight:700;

    margin-bottom:10px;

}

/*==================================================
                SECTION HEADINGS
==================================================*/

.section h2{

    font-size:42px;

    margin-bottom:20px;

}

.section p{

    font-size:16px;

}

/*==================================================
            LIGHT SECTION
==================================================*/

.bg-light{

    background:#f8fbff !important;

}

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

.industry-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

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

    transition:var(--transition);

    height:100%;

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.industry-card i{

    font-size:52px;

    color:var(--primary);

    margin-bottom:20px;

    display:block;

}

.industry-card h5{

    margin:0;

}


/*==================================================
                TESTIMONIALS
==================================================*/

.testimonial-card{

    max-width:850px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:24px;

    text-align:center;

    box-shadow:var(--shadow);

}

.testimonial-card img{

    width:90px;

    height:90px;

    object-fit:cover;

    border:4px solid #fff;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.testimonial-card p{

    font-size:18px;

    color:var(--text);

    font-style:italic;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    filter:invert(1);

}


/*==================================================
                    FAQ
==================================================*/

.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:14px !important;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.accordion-button{

    font-weight:600;

    padding:20px;

}

.accordion-button:not(.collapsed){

    background:var(--gradient);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    line-height:1.8;

}


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

#contact{

    position:relative;

    overflow:hidden;

}

#contact::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

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

    border-radius:50%;

    top:-250px;

    right:-180px;

}

#contact .form-control{

    padding:16px;

    border:none;

    border-radius:14px;

    margin-bottom:15px;

}

#contact textarea{

    resize:none;

}

.contact-info{

    padding:40px;

}

.contact-info p{

    font-size:18px;

    margin-bottom:20px;

}


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

.footer{

    background:#071A3D;

    color:#fff;

    padding:80px 0 30px;

}

.footer h3,
.footer h5{

    color:#fff;

    margin-bottom:20px;

}

.footer p{

    color:#C8D2E2;

}

.footer ul{

    padding-left:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer a{

    color:#C8D2E2;

    transition:.3s;

}

.footer a:hover{

    color:#fff;

    padding-left:6px;

}

.footer hr{

    border-color:rgba(255,255,255,.1);

    margin:40px 0 25px;

}

.footer .form-control{

    border-radius:50px 0 0 50px;

    border:none;

}

.footer .btn{

    border-radius:0 50px 50px 0;

}


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

#backToTop{

    position:fixed;

    bottom:25px;

    right:25px;

    width:52px;

    height:52px;

    border:none;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:999;

    display:none;

    box-shadow:var(--shadow);

}


/*==================================================
                WHATSAPP
==================================================*/

.whatsapp-btn{

    position:fixed;

    left:25px;

    bottom:25px;

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    z-index:999;

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

}


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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#084fc7;

}


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

@media(max-width:991px){

.hero{

    padding-top:160px;

}

.hero h1{

    font-size:42px;

}

.hero-image{

    margin-top:60px;

}

.hero-stats{

    justify-content:space-between;

}

.section{

    padding:80px 0;

}

.section h2{

    font-size:34px;

}

.card-one{

    left:0;

}

.card-two{

    right:0;

}

}

@media(max-width:767px){

.top-bar{

    text-align:center;

}

.top-bar .text-end{

    text-align:center !important;

    margin-top:8px;

}

.hero{

    text-align:center;

}

.hero h1{

    font-size:34px;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    flex-direction:column;

    gap:20px;

    margin-top:40px;

}

.floating-card{

    display:none;

}

.testimonial-card{

    padding:35px 25px;

}

.contact-info{

    margin-top:40px;

    padding:0;

}

#backToTop{

    right:15px;

    bottom:15px;

}

.whatsapp-btn{

    left:15px;

    bottom:15px;

}

}

@media(max-width:576px){

.section{

    padding:70px 0;

}

.section h2{

    font-size:30px;

}

.btn{

    width:100%;

}

.hero-buttons{

    flex-direction:column;

}

}


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

.shadow-hover{

    transition:var(--transition);

}

.shadow-hover:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

.rounded-xl{

    border-radius:24px;

}

.header-logo {
    max-height: 85px;
    height: auto;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    transition: var(--transition);
}

.footer-logo {
    max-height: 60px;
    height: auto;
    width: auto;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}