/* ===========================
   Reset
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

/* ===========================
   Header
=========================== */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#0d6efd;
    padding:20px 60px;
    position:sticky;
    top:0;
    z-index:1000;
    flex-wrap:wrap;
}
.logo h2{
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin:0 20px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

nav ul li a:hover{
    color:yellow;
}

.btn{
    background:black;
    color:black;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#222;
    color:white;
}

/* ===========================
   Hero Section
=========================== */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px;
    background: #eaf4ff;
}

.hero-content{
    width:50%;
}

.hero-content h1{
    font-size:50px;
    margin-bottom:20px;
    color:#0d6efd;
}

.hero-content p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    background:#0d6efd;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
    transition:.3s;
}

.hero-btn:hover{
    background:#003d99;
}

.hero-image img{
    width:500px;
    max-width:100%;
    border-radius:10px;
}

/* ===========================
   About Preview
=========================== */



.about-preview{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding:80px;
    background: #ffffff;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.about-content{
    flex:1;
}

.about-content h4{
    color:#0d6efd;
    font-size:18px;
    margin-bottom:10px;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#222;
}

.about-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.feature{
    background:white;
    padding:15px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    font-weight:bold;
}

.feature:hover{
    background:#0d6efd;
    color:white;
    transition:.3s;
}
/* ===========================
   Services previw
=========================== */


.services-preview{
    padding:90px 8%;
    background: #eaf4ff;
    text-align:center;
}

.section-title h4{
    color:#0d6efd;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:20px;
}

.section-title p{
    width:70%;
    margin:auto;
    color:#666;
    line-height:1.8;
    margin-bottom:50px;
}

.cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.card{
    width:330px;
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(13,110,253,.25);
}

.icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    background:#0d6efd;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.card h3{
    margin-bottom:15px;
    color:#222;
}

.card p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.card a{
    text-decoration:none;
    color:#0d6efd;
    font-weight:bold;
}

.card a:hover{
    color:#003d99;
}

/* ===========================
   Testimonials
=========================== */

.testimonials{
    background:#f8f9fa;
    padding:80px;
    text-align:center;
}

.testimonials h2{
    font-size:40px;
    margin-bottom:40px;
    color:#0d6efd;
}

.testimonial-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.testimonial{
    width:300px;
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.testimonial h4{
    margin-top:15px;
    color:#0d6efd;
}

/* ===========================
   Contact Preview
=========================== */


.contact-preview{
    padding:90px 8%;
    background:white;
    text-align:center;
    color:white;
}

.contact-content h4{
    color:black;
    letter-spacing:2px;
    margin-bottom:10px;
}

.contact-content h2{
    color:black;
    font-size:42px;
    margin-bottom:20px;
}

.contact-content p{
    color:black;
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

.contact-info{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin:50px 0;
}

.info-box{
    background:white;
    color:#333;
    width:280px;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-8px);
}

.info-box h3{
    color:#0d6efd;
    margin-bottom:15px;
}

.contact-btn{
    display:inline-block;
    padding:15px 35px;
    background:white;
    color:#0d6efd;
    text-decoration:none;
    font-weight:bold;
    border-radius:30px;
    transition:.3s;
}

.contact-btn:hover{
    background:#222;
    color:white;
}
/* ===========================
   Footer
=========================== */

footer{
    background: #222222;
    color:white;
    padding:50px 80px 20px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-container h3{
    margin-bottom:20px;
}

.footer-container p{
    margin-bottom:10px;
}

.footer-container a{
    color:white;
    text-decoration:none;
}

.footer-container a:hover{
    color:#0d6efd;
}

footer hr{
    margin:30px 0;
}

.copyright{
    text-align:center;
}

/* ===========================
   About Page
=========================== */

.about{
    max-width:1100px;
    margin:60px auto;
    background:white;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.about h1{
    text-align:center;
    color:#0d6efd;
    margin-bottom:20px;
}

.about h2{
    margin-top:30px;
    margin-bottom:15px;
}

.about p{
    margin-bottom:20px;
}

.about ul{
    padding-left:20px;
}

.about li{
    margin-bottom:10px;
}

/* ===========================
   Services Page
=========================== */

.service-hero{
    background:#eaf4ff;
    color:black;
    text-align:center;
    padding:80px 20px;
}

.service-hero h1{
    font-size:48px;
    color:#0d6efd
}

.services{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:80px;
    background:#f8f9fa;
}

.service-card{
    width:300px;
    background:white;
    padding:30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.cta{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:70px;
}

.cta p{
    margin:20px 0;
}
.services-content{
    padding:80px;
    background:#f8f9fa;
}

.services-content h2{
    text-align:center;
    color:#0d6efd;
    font-size:40px;
    margin-bottom:20px;
}

.service-intro{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
    color:#555;
    line-height:1.8;
}

.service-box{
    background:white;
    padding:30px;
    margin-bottom:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.service-box h3{
    color:#0d6efd;
    margin-bottom:15px;
}

.service-box p{
    color:#555;
    line-height:1.8;
}

.service-box ul{
    margin-top:20px;
    padding-left:20px;
}

.service-box li{
    margin-bottom:10px;
}


/* ===========================
   Contact Page
=========================== */


/* CONTACT HERO */

.contact-hero{
    background:linear-gradient(135deg,#0d6efd,#4facfe);
    color:white;
    text-align:center;
    padding:100px 20px;
}

.contact-hero h1{
    font-size:50px;
    margin-bottom:20px;
}

.contact-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

/* CONTACT INFO */

.contact-info{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:70px 8%;
    background:#f8f9fa;
}

.info-card{
    width:300px;
    background:white;
    padding:35px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-card h2{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:15px;
}

.info-card h3{
    margin-bottom:10px;
}

/* CONTACT SECTION */

.contact-section{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    padding:80px 8%;
    background:white;
}

.contact-form{
    flex:1;
    min-width:320px;
}

.contact-form h2{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.contact-form button{
    background:#0d6efd;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.contact-form button:hover{
    background:#084298;
}

.contact-map{
    flex:1;
    min-width:320px;
}

/* CTA */

.contact-cta{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.contact-cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.contact-cta p{
    font-size:18px;
    margin-bottom:30px;
}

/* ===========================
   Responsive
=========================== */

/* =========================
   Mobile Navigation
========================= */

/* ===========================
   Mobile Responsive
=========================== */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

@media screen and (max-width:768px){

header{
    padding:15px;
}

.menu-toggle{
    display:block;
}

.desktop-btn{
    display:none;
}

nav{
    display:none;
    width:100%;
}

nav.active{
    display:block;
}

nav ul{
    display:flex;
    flex-direction:column;
    width:100%;
    background:#0d6efd;
    padding:15px 0;
}

nav ul li{
    margin:10px 0;
}

.hero{
    flex-direction:column-reverse;
    padding:40px 20px;
    text-align:center;
}

.hero-content{
    width:100%;
}

.hero-content h1{
    font-size:32px;
}

.hero-image{
    width:100%;
}

.hero-image img{
    width:100%;
}

.about-preview{
    display:flex;
    flex-direction:column;
    padding:40px 20px;
}

.about-image,
.about-content{
    width:100%;
}

.about-content h2{
    font-size:30px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr;
}

.section-title p{
    width:100%;
}

.cards{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.card{
    width:100%;
    max-width:350px;
}

.contact-info{
    display:flex;
    flex-direction:column;
}

.footer-container{
    display:flex;
    flex-direction:column;
    text-align:center;
}

}
.hero{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/herobackground.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 600px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}