/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#333;
    line-height:1.6;
}

/*==========================
NAVBAR
===========================*/

header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:55px;
    margin-right:10px;
}

.logo h2{
    color:#0056b3;
    font-size:28px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff6600;
}

/* ==========================
   DROPDOWN MENU
========================== */

nav ul li{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#ffffff;
    min-width:230px;
    display:none;
    list-style:none;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    padding:10px 0;
    z-index:999;
}

.dropdown-menu li{
    margin:0;
}

.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    color:#333;
    text-decoration:none;
    transition:0.3s;
    font-size:15px;
}

.dropdown-menu li a:hover{
    background:#0056b3;
    color:#fff;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

/*==========================
HERO
===========================*/

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:90px 8%;
    background:linear-gradient(135deg,#0056b3,#0088ff);
    color:#fff;
    min-height:85vh;
}

.hero-text{
    width:50%;
}

.hero-text h1{
    font-size:52px;
    margin-bottom:20px;
    line-height:1.2;
}

.hero-text p{
    font-size:18px;
    margin-bottom:35px;
}

.hero-image{
    width:45%;
}

.hero-image img{
    width:100%;
    border-radius:15px;
}

.btn{
    display:inline-block;
    background:#ff6600;
    color:#fff;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#fff;
    color:#0056b3;
}

/*==========================
COMMON SECTION
===========================*/

section{
    padding:80px 8%;
}

section h2{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
    color:#0056b3;
}

/*==========================
ABOUT
===========================*/

.about p{
    max-width:900px;
    margin:auto;
    text-align:center;
    margin-bottom:50px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:55px;
    color:#ff6600;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

/*==========================
SERVICES
===========================*/

.service-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service{
    background:#fff;
    text-align:center;
    padding:35px;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.service:hover{
    background:#0056b3;
    color:#fff;
}

.service i{
    font-size:50px;
    color:#ff6600;
    margin-bottom:20px;
}

.service:hover i{
    color:#fff;
}

/*==========================
TECHNOLOGIES
===========================*/

.tech-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.tech-grid span{
    background:#0056b3;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    transition:.3s;
}

.tech-grid span:hover{
    background:#ff6600;
}

/*==========================
WHY CHOOSE
===========================*/

.why{
    background:#fff;
}

.why ul{
    max-width:700px;
    margin:auto;
}

.why ul li{
    margin:15px 0;
    font-size:20px;
    list-style:none;
}

/*==========================
CTA
===========================*/

.cta{
    background:linear-gradient(135deg,#0056b3,#0088ff);
    color:#fff;
    text-align:center;
}

.cta h2{
    color:#fff;
    margin-bottom:35px;
}

/*==========================
FOOTER
===========================*/

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:40px;
}

footer h2{
    color:#fff;
    margin-bottom:15px;
}

footer p{
    margin:8px;
}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:992px){

header{
    flex-direction:column;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    margin-top:20px;
}

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-text{
    width:100%;
}

.hero-image{
    width:100%;
    margin-top:40px;
}

.hero-text h1{
    font-size:40px;
}

}

@media(max-width:768px){

.hero-text h1{
    font-size:32px;
}

section h2{
    font-size:30px;
}

nav ul li{
    margin:10px;
}

.logo h2{
    font-size:22px;
}

}

