/*=========================================
S D SOFTWARE SOLUTIONS
Modern American Corporate Style
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#0d6efd;
    --secondary:#0b132b;
    --dark:#081120;
    --light:#f8f9fa;
    --white:#ffffff;
    --text:#5f6b7a;
    --shadow:0 15px 40px rgba(0,0,0,.12);
    --radius:18px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

/*==========================
Loader
===========================*/

.loader-wrapper{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader{
    width:55px;
    height:55px;
    border-radius:50%;
    border:5px solid #ddd;
    border-top:5px solid var(--primary);
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/*==========================
Progress Bar
===========================*/

#progressBar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:var(--primary);
    z-index:99999;
}

/*==========================
Navbar
===========================*/

.navbar{
    padding:18px 0;
    transition:.4s;
    background:rgba(8,17,32,.65);
    backdrop-filter:blur(12px);
}

.navbar.scrolled{
    background:#081120;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.navbar-brand{
    color:#fff;
    font-size:30px;
    font-weight:800;
}

.navbar-brand span{
    color:#4ea5ff;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    margin-left:18px;
    transition:.3s;
}

.nav-link:hover{
    color:#4ea5ff !important;
}

/*==========================
Hero
===========================*/

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(8,17,32,.82),rgba(8,17,32,.82)),
    url("images/banner.jpg") center/cover no-repeat;
    padding-top:90px;
}

.hero h1{
    font-size:65px;
    font-weight:800;
    line-height:1.2;
}

.hero p{
    font-size:20px;
    color:#d7d7d7;
}

.hero-img{
    animation:float 5s ease-in-out infinite;
}

@keyframes float{
    50%{
        transform:translateY(-18px);
    }
}

/*==========================
Buttons
===========================*/

.btn{
    border-radius:50px;
    padding:13px 32px;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
    background:var(--primary);
    border:none;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(13,110,253,.4);
}

.btn-outline-light:hover{
    transform:translateY(-5px);
}

/*==========================
Sections
===========================*/

section{
    padding:90px 0;
}

.section-title{
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:12px;
}

h2{
    font-weight:800;
}

/*==========================
About
===========================*/

#about img{
    border-radius:18px;
    box-shadow:var(--shadow);
}

.counter{
    font-size:45px;
    font-weight:800;
    color:var(--primary);
}

#about p{
    color:var(--text);
}

/*==========================
Services
===========================*/

.service-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    height:100%;
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.service-box i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-box h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-box p{
    color:var(--text);
}

/*==========================
Technology
===========================*/

.tech-box{
    background:#081120;
    color:#fff;
    padding:22px;
    border-radius:15px;
    font-weight:600;
    transition:.35s;
}

.tech-box:hover{
    background:var(--primary);
    transform:translateY(-8px);
}

/*==========================
CTA
===========================*/

.cta{
    background:
    linear-gradient(rgba(9,30,66,.88),rgba(9,30,66,.88)),
    url(images/cta.jpg) center/cover;
    text-align:center;
}

.cta h2{
    font-size:48px;
}

.cta p{
    color:#d8d8d8;
}

/*==========================
Contact
===========================*/

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:var(--shadow);
}

.contact-box h4{
    font-weight:700;
}

.contact-box p{
    color:var(--text);
}

.form-control{
    border-radius:12px;
    min-height:55px;
    border:1px solid #ddd;
    box-shadow:none;
}

.form-control:focus{
    border-color:var(--primary);
    box-shadow:none;
}

textarea.form-control{
    min-height:150px;
}

/*==========================
Footer
===========================*/

footer{
    background:#081120;
    color:#fff;
    padding:35px 0;
}

footer h4{
    font-weight:700;
}

footer p{
    margin-top:10px;
    color:#c9c9c9;
}

/*==========================
WhatsApp
===========================*/

.whatsapp{
    position:fixed;
    bottom:25px;
    left:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:30px;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.6);
}

70%{
box-shadow:0 0 0 20px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

/*==========================
Top Button
===========================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:22px;
    display:none;
    cursor:pointer;
    z-index:999;
    transition:.3s;
}

#topBtn:hover{
    transform:translateY(-6px);
}

/*==========================
Animations
===========================*/

.service-box,
.tech-box,
.contact-box,
.counter,
img{
    transition:.35s;
}

img{
    max-width:100%;
}

/*==========================
Responsive
===========================*/

@media(max-width:992px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:48px;
}

.hero-img{
    margin-top:50px;
}

.navbar-nav{
    background:#081120;
    padding:20px;
    border-radius:10px;
    margin-top:15px;
}

.nav-link{
    margin:10px 0;
}

}

@media(max-width:768px){

.hero{
    min-height:auto;
    padding:140px 0 70px;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:17px;
}

.counter{
    font-size:32px;
}

.cta h2{
    font-size:32px;
}

.btn{
    width:100%;
    margin-bottom:10px;
}

.contact-box{
    margin-top:30px;
}

.whatsapp{
    width:55px;
    height:55px;
}

#topBtn{
    width:50px;
    height:50px;
}

}

@media(max-width:576px){

section{
    padding:70px 0;
}

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:15px;
}

.navbar-brand{
    font-size:24px;
}

.service-box{
    padding:28px;
}

.tech-box{
    padding:18px;
}

}