/* assets/css/style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f8ff;
    color:#111;
}

/* CONTAINER */

.container{
    width:90%;
    margin:auto;
}

/* HEADER */

.main-header{
    width:100%;
    background:linear-gradient(135deg,#021B79,#0575E6);
    padding:16px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 25px rgba(0,0,0,0.15);
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo-link{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo-link img{
    width:60px;
    height:60px;
    border-radius:50%;
    background:white;
    padding:4px;
}

.logo-text h1{
    color:white;
    font-size:28px;
    font-weight:700;
    line-height:1.1;
}

.logo-text span{
    color:#dbe8ff;
    font-size:13px;
}

/* NAVBAR */

.navbar{
    display:flex;
    gap:35px;
}

.navbar a{
    position:relative;
    color:white;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
    padding-bottom:5px;
}

.navbar a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;
    background:white;
    transition:0.4s;
}

.navbar a:hover::after{
    width:100%;
}

.navbar a:hover{
    transform:translateY(-2px);
}

/* FOOTER */

.footer{
    background:#021B79;
    padding:22px 0;
    margin-top:60px;
    text-align:center;
}

.footer p{
    color:white;
    font-size:15px;
}

.contact-section{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.contact-form{
    background:white;
    padding:40px;
    width:100%;
    max-width:600px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2{
    text-align:center;
    margin-bottom:25px;
    color:#005eff;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:10px;
}

.contact-form button{
    width:100%;
    padding:15px;
    border:none;
    background:#005eff;
    color:white;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

.hero-slider{
    position:relative;
    width:100%;
    max-width:1400px;
    height:600px;
    margin:20px auto;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.hero-slider .slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:all 1s ease;
}

.hero-slider .slide.active{
    opacity:1;
    z-index:2;
}

.hero-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-slider .caption{
    position:absolute;
    left:60px;
    bottom:80px;
    max-width:600px;
    color:#fff;
    z-index:5;
}

.hero-slider .caption h1{
    font-size:52px;
    margin-bottom:15px;
    text-shadow:0 3px 15px rgba(0,0,0,.5);
}

.hero-slider .caption p{
    font-size:20px;
    margin-bottom:20px;
}

.slider-btn{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.slider-btn:hover{
    background:#084298;
    color:#fff;
}

.hero-slider::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.55),
        rgba(0,0,0,.15)
    );
    z-index:1;
}

.prev,.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,.2);
    border:none;
    color:#fff;
    width:50px;
    height:50px;
    border-radius:50%;
    cursor:pointer;
    z-index:10;
    font-size:24px;
}

.prev{left:20px;}
.next{right:20px;}

.prev:hover,.next:hover{
    background:#0d6efd;
}

.dots{
    position:absolute;
    bottom:20px;
    width:100%;
    text-align:center;
    z-index:10;
}

.dots span{
    display:inline-block;
    width:12px;
    height:12px;
    margin:0 5px;
    border-radius:50%;
    background:#fff;
    opacity:.5;
    cursor:pointer;
}

.dots span.active{
    opacity:1;
    background:#0d6efd;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    width:90%;
    margin:50px auto 80px;
}

.card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#005eff;
    margin-bottom:15px;
}

.card p{
    color:#555;
    line-height:1.75;
}

.about-hero{
    padding:80px 0;
    text-align:center;
    background:linear-gradient(135deg,#021B79,#0575E6);
    color:white;
}

.about-hero h2{
    font-size:42px;
    margin-bottom:20px;
    line-height:1.1;
}

.about-hero p{
    max-width:780px;
    margin:0 auto;
    font-size:18px;
    color:rgba(255,255,255,0.9);
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin:60px 0;
}

.about-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-card h3{
    color:#021B79;
    margin-bottom:15px;
}

.about-card p{
    color:#555;
    line-height:1.8;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-bottom:60px;
}

.stat-item{
    background:linear-gradient(180deg,#f8fbff,#edf5ff);
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.stat-item h3{
    font-size:42px;
    color:#021B79;
    margin-bottom:10px;
}

.stat-item span{
    display:block;
    color:#555;
    font-weight:600;
}

.team-section{
    margin-bottom:60px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.team-card{
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
}

.team-card h4{
    color:#021B79;
    margin:18px 0 8px;
}

.team-card p{
    color:#555;
    line-height:1.7;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    color:#021B79;
    margin-bottom:15px;
}

.section-heading p{
    color:#555;
    max-width:720px;
    margin:0 auto;
    line-height:1.8;
}

.about-cta{
    background:#021B79;
    color:white;
    padding:50px 0;
    text-align:center;
    border-radius:20px;
}

.about-cta p{
    max-width:720px;
    margin:0 auto 25px;
    color:rgba(255,255,255,0.88);
    font-size:17px;
    line-height:1.8;
}

.btn{
    display:inline-block;
    padding:14px 32px;
    background:white;
    color:#021B79;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* MOBILE */

@media(max-width:768px){

    .header-flex{
        flex-direction:column;
        gap:20px;
    }

    .logo-text h1{
        font-size:22px;
    }

    .navbar{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero-slider{
        height:350px;
    }

    .hero-slider .caption{
        left:20px;
        bottom:40px;
    }

    .hero-slider .caption h1{
        font-size:28px;
    }

    .hero-slider .caption p{
        font-size:14px;
    }

    .services{
        width:95%;
        margin:40px auto 60px;
    }

    .card{
        padding:25px;
    }

}