/* ================= GLOBAL STYLES ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height:1.6;
}

/* Container keeps content centered */

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

/* ================= HEADER ================= */

.header{
    background:#222;
    color:white;
    padding:20px 0;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-links{
    list-style:none;
    display:flex;
}

.nav-links li{
    margin-left:20px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:bold;
}

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

.hero{
     background:linear-gradient(to right,#4facfe,#00f2fe);
    color:white;
    text-align:center;
    padding:100px 20px;
}



.hero h2{
    font-size:40px;
}

.hero p{
    margin:20px 0;
}

/* Button style */

.btn{
    display:inline-block;
    background:white;
    color:#333;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
}

/* ================= FEATURES ================= */

.features{
    padding:60px 0;
    text-align:center;
}

.section-title{
    margin-bottom:40px;
}

.feature-grid{
    display:flex;
    gap:20px;
}

.feature-box{
    background:#f4f4f4;
    padding:30px;
    border-radius:8px;
}
.feature-icon {
     width: 90%;          /* Almost full width but with a little padding */
    max-width: 1200px;   /* Keeps image from getting too large on very big screens */
    height: 65%;        /* Maintains aspect ratio */
    display: block;      /* Removes inline spacing issues */
    margin: 40px auto 60px auto; /* Top 40px, center horizontally, bottom 60px for spacing */
    border-radius: 12px; /* Optional: subtle rounded corners for aesthetics */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Optional: subtle shadow for depth */
}

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

.about{
    background:#eee;
    padding:60px 0;
    text-align:center;
}

/* ================= CTA ================= */

.cta{
    background:#333;
    color:white;
    text-align:center;
    padding:60px 0;
}

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

.footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
}


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

@media(max-width:768px){

    .feature-grid{
        flex-direction:column;
    }

    .header .container{
        flex-direction:column;
    }

    .nav-links{
        margin-top:10px;
    }

}