body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    overflow-x:hidden;
}

/* =========================
   HERO
========================= */

.quote-hero{

    min-height:70vh;

    /* WHITE BACKGROUND */

    background:#ffffff;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    /* ROYAL BLUE TEXT */

    color:rgba(0,0,128,1 );
}

/* REMOVE DARK OVERLAY */

.overlay{
    display:none;
}

/* HERO CONTENT */

.quote-hero-content{
    position:relative;
    z-index:2;
}

.quote-hero-content h1{

    font-size:65px;
    font-weight:800;

    color:rgba(0,0,128,1 );

    text-shadow:
    0 8px 20px rgba(65,105,225,0.08);
}

.quote-hero-content p{

    font-size:20px;
    margin-top:15px;

    color:rgba(0,0,128,1 );
}

/* =========================
   COMMON
========================= */

.section-padding{
    padding:100px 0;
}

.section-subtitle{

    color:rgba(207, 181, 59, 1);

    font-weight:bold;

    letter-spacing:2px;
}

.section-title{

    font-size:42px;

    font-weight:bold;

    color:rgba(0,0,128,1 );

    margin-top:15px;
}

/* =========================
   INFO
========================= */

.quote-description{

    color:rgba(207, 181, 59, 1);

    line-height:30px;

    margin:25px 0;
}

.info-box{

    display:flex;

    gap:20px;

    margin-bottom:30px;
}

.info-box i{

    width:60px;
    height:60px;

    background:rgba(207, 181, 59, 1);

    color:#0b1f3a;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    box-shadow:
    0 8px 20px rgba(207, 181, 59, 1);
}

/* =========================
   FORM
========================= */

.quote-form-wrapper{

    background:#ffffff;

    padding:50px;

    border-radius:20px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

    border:1px solid rgba(65,105,225,0.08);
}

/* INPUTS */

.form-control,
.form-select{

    height:58px;

    border-radius:10px;

    border:1px solid #ddd;

    padding-left:20px;

    transition:0.3s ease;
}

textarea.form-control{

    height:auto;

    padding-top:15px;
}

/* INPUT FOCUS */

.form-control:focus,
.form-select:focus{

    box-shadow:none;

    border-color:#f4b400;
}

/* BUTTON */

.quote-btn{

    width:100%;

    border:none;

    background:rgba(207, 181, 59, 1);

    color:#000;

    padding:16px;

    border-radius:10px;

    font-weight:bold;

    transition:0.4s ease;

    box-shadow:
    0 8px 20px rgba(207, 181, 59, 1);
}

.quote-btn:hover{

    background:rgba(0,0,128,1);

    color:#ffffff;

    transform:translateY(-3px);
}

/* =========================
   SUCCESS MESSAGE
========================= */

.success-message{

    display:none;

    margin-top:25px;

    background:#d1ffe0;

    color:rgba(0,0,128,1 );
    padding:18px;

    border-radius:10px;

    text-align:center;

    font-weight:bold;
}

.success-message i{
    margin-right:10px;
}

/* =========================
   SCROLL DOWN
========================= */

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    z-index:10;
}

.scroll-down a{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    background:#ffffff;

    color:rgba(0,0,128,1 );

    font-size:28px;

    border:2px solid rgba(0,0,128 ,1);

    box-shadow:
    0 8px 25px rgba(65,105,225,0.18);

    transition:0.4s ease;

    animation:scrollDown 2s infinite;
}

.scroll-down a:hover{

    background:rgba(0,0,128,1);

    color:#ffffff;

    transform:scale(1.12);
}

/* =========================
   SCROLL ANIMATION
========================= */

@keyframes scrollDown{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(12px);
    }

    100%{
        transform:translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .quote-hero-content h1{
        font-size:42px;
    }

    .quote-hero-content p{
        font-size:17px;
    }

    .quote-form-wrapper{
        padding:30px;
    }

    .section-title{
        font-size:32px;
    }
}