@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.hero *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f9fc;
    overflow-x:hidden;
    color:#222;
}

/* HERO */

.hero{
    min-height:75vh;
    background:linear-gradient(135deg,#0D5B7A,#117ea5);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:80px 8%;
}

.hero-content{
    position:relative;
    z-index:5;
    text-align:center;
    color:#fff;
    animation:fadeUp 1s ease;
}

.hero-tag{
    padding:12px 28px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    letter-spacing:2px;
    font-size:14px;
}

.hero-content h1{
    font-size:72px;
    margin-top:25px;
    font-weight:800;
}

.hero-content p{
    margin-top:20px;
    font-size:20px;
    opacity:.95;
}

.breadcrumb{
    margin-top:25px;
    opacity:.85;
}

/* ANIMATIONS */

.hero-shape{
    position:absolute;
    border-radius:50%;
    animation:float 7s ease-in-out infinite;
}

.shape1{
    width:320px;
    height:320px;
    background:rgba(255,255,255,.08);
    left:-80px;
    top:-80px;
}

.shape2{
    width:420px;
    height:420px;
    background:rgba(243,112,33,.12);
    right:-150px;
    bottom:-150px;
}

.shape3{
    width:130px;
    height:130px;
    background:rgba(255,255,255,.09);
    top:120px;
    right:18%;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(25px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0px);
    }

}

/* TOP INFO */

.top-info{
    padding:0 8%;
    margin-top:-70px;
    position:relative;
    z-index:10;
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.info-card{
    width:320px;
    background:#fff;
    border-radius:30px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.info-card:hover{
    transform:translateY(-12px);
}

.info-card .icon{
    font-size:50px;
    margin-bottom:18px;
}

.info-card h3{
    color:#0D5B7A;
    margin-bottom:10px;
}

/* CENTERS */

.center-section{
    padding:110px 8%;
}

.section-head{
    text-align:center;
    margin-bottom:60px;
}

.section-head h2{
    font-size:52px;
    color:#0D5B7A;
}

.section-head p{
    margin-top:15px;
    color:#666;
}

.center-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.center-card{
    position:relative;
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    padding:45px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.5s;
}

.center-card:hover{
    transform:translateY(-15px);
}

.card-circle{
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(243,112,33,.12);
    border-radius:50%;
    top:-50px;
    right:-50px;
}

.center-icon{
    font-size:52px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.center-card h3{
    font-size:30px;
    margin-bottom:15px;
    color:#0D5B7A;
    position:relative;
    z-index:2;
}

.center-card p{
    line-height:1.8;
    color:#555;
    position:relative;
    z-index:2;
}

.map-btn{
    display:inline-block;
    margin-top:25px;
    padding:15px 30px;
    background:linear-gradient(135deg,#0D5B7A,#f37021);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.4s;
    position:relative;
    z-index:2;
}

.map-btn:hover{
    transform:scale(1.05);
}

/* FORM */

.form-section{
    padding:20px 8% 100px;
}

.form-container{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:60px;
    background:#fff;
    border-radius:40px;
    padding:65px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.small-tag{
    color:#f37021;
    font-weight:700;
    letter-spacing:2px;
}

.left-content h2{
    font-size:50px;
    margin:20px 0;
    color:#0D5B7A;
}

.left-content p{
    line-height:1.9;
    color:#666;
}

.note-box{
    margin-top:30px;
    background:#fff4ed;
    border-left:5px solid #f37021;
    padding:25px;
    border-radius:20px;
    line-height:1.8;
}

.success-box{
    background:#e7fff0;
    border-left:5px solid #13b45d;
    padding:18px;
    margin-bottom:25px;
    border-radius:15px;
    color:#0c8a45;
}

/* FORM FIELDS */

.input-group{
    margin-bottom:24px;
}

.input-group label{
    display:block;
    margin-bottom:12px;
    color:#0D5B7A;
    font-weight:600;
}

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;
    border:none;
    outline:none;
    background:#f3f7fa;
    padding:18px;
    border-radius:18px;
    font-size:15px;
    transition:.3s;
}

.input-group textarea{
    min-height:170px;
    resize:none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
    background:#fff;
    box-shadow:0 0 0 3px rgba(13,91,122,.15);
}

/* DROPDOWN */

select{
    appearance:none;
    cursor:pointer;
}

/* BUTTON */

.submit-btn{
    border:none;
    padding:18px 35px;
    border-radius:50px;
    background:linear-gradient(135deg,#f37021,#ff944e);
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 12px 25px rgba(243,112,33,.25);
}

.submit-btn:hover{
    transform:translateY(-6px);
}

/* CTA */

.cta-section{
    padding:0 8% 100px;
}

.cta-card{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#0D5B7A,#117ea5);
    padding:80px;
    border-radius:40px;
    text-align:center;
    color:#fff;
}

.cta-glow{
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-100px;
    top:-200px;
}

.cta-card h2{
    font-size:58px;
    position:relative;
    z-index:2;
}

.cta-card p{
    margin-top:20px;
    font-size:18px;
    position:relative;
    z-index:2;
}

.apply-btn{
    display:inline-block;
    margin-top:35px;
    padding:18px 38px;
    border-radius:50px;
    background:#f37021;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    position:relative;
    z-index:2;
}

.apply-btn:hover{
    transform:translateY(-6px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .form-container{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:50px;
    }

    .left-content h2{
        font-size:40px;
    }

    .cta-card h2{
        font-size:42px;
    }

}

@media(max-width:600px){

    .hero-content h1{
        font-size:38px;
    }

    .hero{
        min-height:65vh;
    }

    .form-container{
        padding:35px;
    }

    .cta-card{
        padding:45px 25px;
    }

}