/* ===========================
   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;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#333;
    line-height:1.6;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

.section{
    padding:50px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#0f172a;
    margin-bottom:15px;
}

 

/* ===========================
   HEADER
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    z-index:999;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

 

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:700;
    transition:.3s;
}

nav ul li a:hover{
    color:#2563eb;
}

#menu-btn{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ===========================
   HERO
=========================== */

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
    background:linear-gradient(rgba(15,23,42,.75),rgba(37,99,235,.75)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    max-width:750px;
    margin:auto;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    transition:.3s;
    border:none;
    cursor:pointer;
    font-size:16px;
}

.btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
}

.btn-outline:hover{
    background:#fff;
    color:#2563eb;
}

/* ===========================
ABOUT
=========================== */

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.about-box{
    background:#fff;
    text-align:center;
    padding:40px 30px;
    border-radius:15px;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-box:hover{
    transform:translateY(-10px);
}

.about-box i{
    font-size:50px;
    color:#2563eb;
    margin-bottom:20px;
}

.about-box h3{
    margin-bottom:15px;
}

/* ===========================
SERVICES
=========================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:55px;
    color:#2563eb;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

/* ===========================
PRICING
=========================== */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.price-card{
    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:45px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-10px);
}

.featured{
    background:#2563eb;
    color:#fff;
}

.featured .btn{
    background:#fff;
    color:#2563eb;
}

.price-card h1{
    font-size:48px;
    margin:20px 0;
}

.price-card ul{
    list-style:none;
    margin:25px 0;
}

.price-card li{
    margin:12px 0;
}

/* ===========================
CONTACT
=========================== */

.contact-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.contact form{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact input,
.contact textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
}

.contact-info{
    background:#2563eb;
    color:#fff;
    padding:35px;
    border-radius:15px;
}

.contact-info h3{
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:20px;
}

.contact-info i{
    margin-right:10px;
}

/* ===========================
FOOTER
=========================== */

footer{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:30px 0;
}

.social{
    margin-top:15px;
}

.social a{
    color:#fff;
    font-size:22px;
    margin:0 10px;
    transition:.3s;
}

.social a:hover{
    color:#38bdf8;
}

/* ===========================
BACK TO TOP
=========================== */

#topBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    cursor:pointer;
    display:none;
    font-size:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:768px){

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:16px;
}

nav ul{
    position:absolute;
    top:75px;
    left:-100%;
    width:100%;
    background:#fff;
    flex-direction:column;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

nav ul.active{
    left:0;
}

nav ul li{
    margin:20px;
}

#menu-btn{
    display:block;
}

.contact-wrapper{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:32px;
}

.hero-btns{
    flex-direction:column;
    align-items:center;
}

.btn{
    width:220px;
    text-align:center;
}

}






 
 