
@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;
}

body{
    background:#f8fbff;
    color:#333;
}

/* Header */
header{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
}

.logo h2{
    color:#002B8F;
    font-size:28px;
    font-weight:700;
}

.logo p{
    color:#28C840;
    font-size:14px;
    font-weight:500;
}

nav a{
    text-decoration:none;
    margin-left:30px;
    color:#002B8F;
    font-weight:600;
    transition:0.3s;
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    width:0;
    height:3px;
    left:0;
    bottom:-6px;
    background:#28C840;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

nav a:hover{
    color:#28C840;
}

/* Hero Section */
.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    background:linear-gradient(135deg,#ffffff,#eaf4ff);
}

.hero-content{
    width:50%;
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
    color:#002B8F;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:32px;
    color:#555;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    background:#28C840;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 10px 20px rgba(40,200,64,0.3);
}

.btn:hover{
    background:#002B8F;
    transform:translateY(-5px);
}

.hero-image{
    width:40%;
    text-align:center;
}

.hero-image img{
    width:90%;
    max-width:500px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    50%{
        transform:translateY(-15px);
    }
}

/* About Section */
.about{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-top:6px solid #1EA7FF;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h2{
    color:#002B8F;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.card p{
    color:#555;
    line-height:30px;
    font-size:16px;
}

/* Footer */
footer{
    background:#002B8F;
    color:#fff;
    text-align:center;
    padding:40px;
    position:relative;
    margin-top:50px;
}


footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(to right,#16a34a,#28C840,#4ade80);
    box-shadow:0 -2px 15px rgba(40,200,64,0.5);
}

footer h3{
    font-weight:700;
    margin-bottom:10px;
    font-size:28px;
}

footer p{
    margin-top:10px;
    opacity:0.9;
    font-size:15px;
}


@media(max-width:900px){

    header{
        flex-direction:column;
        padding:20px;
    }

    nav{
        margin-top:20px;
    }

    nav a{
        margin:0 12px;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:60px 8%;
    }

    .hero-content{
        width:100%;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-image{
        width:90%;
        margin-top:50px;
    }

    .about{
        grid-template-columns:1fr;
    }
}

@media(max-width:500px){

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
        line-height:28px;
    }

    .btn{
        padding:12px 28px;
    }

    .logo h2{
        font-size:24px;
    }
}

