:root{
    --primary:#0ea5a4;
    --secondary:#083344;
    --light:#f1f5f9;
}

body{
    font-family:'Poppins', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-weight:700;
}

/* HEADER */

header{
    height:70px;
    background:white;
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    z-index:999;
}

header img{
    height:auto;
}


.hero{
    margin-top:70px;
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    padding:100px 0;
    color:white;
    }
    
    /* Mobile Fix */
    @media (max-width:768px){
    .hero{
    padding:40px 0;
    }
    }

/* FORM */

.form-box{
    background:white;
    border-radius:16px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
    position:relative;
    overflow:hidden;
}

.progress-container{
    display:flex;
    justify-content:space-between;
    position:relative;
    margin-bottom:30px;
}

.progress-container::before{
    content:"";
    position:absolute;
    top:14px;
    left:0;
    width:100%;
    height:5px;
    background:#ddd;
}

.progress-bar-custom{
    position:absolute;
    top:14px;
    left:0;
    height:5px;
    background:linear-gradient(90deg,var(--primary),#22d3ee);
    width:0%;
    transition:0.4s ease;
}

.circle{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    z-index:2;
}

.circle.active{
    background:var(--primary);
    color:white;
}

/* Step Title */

.step-title{
    text-align:center;
    font-weight:700;
    font-size:26px;
    margin-bottom:25px;
    color: #0f172a;
}

/* Steps */

.step{
    display:none;
    animation:fadeSlide 0.4s ease;
}

.step.active{
    display:block;
}

@keyframes fadeSlide{
    from{opacity:0; transform:translateX(30px);}
    to{opacity:1; transform:translateX(0);}
}

/* SLIDER */

.big-amount{
    font-size:44px;
    font-weight:800;
    color:var(--primary);
}

.form-range{
    -webkit-appearance:none;
    width:100%;
    height:10px;
    background:transparent;
    margin-top:20px;
}

/* Track */
.form-range::-webkit-slider-runnable-track{
    height:10px;
    background:linear-gradient(90deg,var(--primary),#22d3ee);
    border-radius:10px;
}

/* Thumb */
.form-range::-webkit-slider-thumb{
    -webkit-appearance:none;
    appearance:none;
    height:24px;
    width:24px;
    background:var(--primary);
    border-radius:50%;
    cursor:pointer;
    margin-top:-7px;   /* THIS FIXES ALIGNMENT */
    box-shadow:0 4px 10px rgba(0,0,0,0.25);
    transition:0.2s ease;
}

.form-range::-webkit-slider-thumb:hover{
    transform:scale(1.15);
}

/* Firefox Support */
.form-range::-moz-range-track{
    height:10px;
    background:linear-gradient(90deg,var(--primary),#22d3ee);
    border-radius:10px;
}

.form-range::-moz-range-thumb{
    height:24px;
    width:24px;
    background:var(--primary);
    border:none;
    border-radius:50%;
    cursor:pointer;
}
/* INPUTS */

.input-icon{
    display:flex;
    align-items:center;
    position:relative;
    }
    
    .input-icon i{
        position:absolute;
        left:14px;
        top:50%;
        transform:translateY(-50%);
        font-size:16px;
        color:var(--primary);
        }
    
    .input-icon input{
    padding-left:42px;
    height:48px;
    }

.form-control{
    padding-left:45px;
    height:52px;
    border-radius:30px;
}

.form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 12px rgba(14,165,164,0.4);
}

.field-error{
    font-size:13px;
    color:#dc3545;
    margin:4px 6px 8px;
    text-align:left;
    display:none;
}

.field-error:not(:empty){
    display:block;
}

.form-control.is-invalid{
    border-color:#dc3545;
}

.form-control.is-valid{
    border-color:#198754;
}

/* BUTTON */

.btn-main{
    background:linear-gradient(90deg,var(--primary),#22d3ee);
    color:white;
    height:58px;
    font-size:18px;
    font-weight:700;
    border-radius:35px;
    transition:0.3s ease;
}

.btn-main:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* Sections */

.section{
    padding:80px 0;
}

.icon-box1{
    text-align:center;
    padding:30px;
    border-radius:15px;
    transition:0.3s;
}

.icon-box1:hover{
    background:var(--light);
    transform:translateY(-6px);
}

.icon-box1 i{
    font-size:42px;
    color:#00bc88;
    margin-bottom:20px;
    transition:0.3s;
}
.icon-box1:hover i{
    transform:scale(1.15);
}


.section{
    padding:80px 0;
}

.program-card{
    background:white;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s ease;
    height:100%;
}

.program-card i{
    font-size:42px;
    color:#00bc88;
    margin-bottom:20px;
    transition:0.3s;
}

.program-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.program-card:hover i{
    transform:scale(1.15);
}

.cta-section{
    background:#083344;
    color:white;
    padding:90px 0;
}

.cta-section .btn{
    font-weight:700;
    border-radius:40px;
}

.footer-light{
    background:#f8fafc;
    color:#0f172a;
    padding:60px 0 25px;
}

.footer-light a{
    color:#0f172a;
    text-decoration:none;
    font-size:14px;
    margin-bottom:8px;
    display:block;
}

.footer-light a:hover{
    color:#00bc88;
}

.footer-light .social-icons i{
    color:#0f172a;
    margin-right:15px;
    cursor:pointer;
}

.footer-light .social-icons i:hover{
    color:#00bc88;
}

.footer-bottom-light{
    border-top:1px solid #e2e8f0;
    margin-top:25px;
    padding-top:18px;
    font-size:13px;
    color:#64748b;
}

@media(max-width:768px){
.hero{
    padding:60px 0;
}
.form-box{
    padding:25px;
}
.step-title{
    font-size:22px;
}
.cta-section{
    padding:60px 20px;
}
.section{
    padding:60px 0;
}
}

/* Legal Pages */

.legal-wrapper{
    max-width:900px;
    margin:auto;
    }
    
    .legal-heading{
    font-weight:800;
    margin-bottom:25px;
    }
    
    .legal-intro{
    font-size:17px;
    margin-bottom:25px;
    }
    
    .legal-section{
    margin-bottom:30px;
    padding-bottom:20px;
    border-bottom:1px solid #e5e7eb;
    }
    
    .legal-section h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    color:#083344;
    }
    
    .contact-box{
    background:#f8fafc;
    padding:25px;
    border-radius:10px;
    border:none;
    }

    .legal-page{
        padding:60px 20px;
        background:#f9fbfb;
    }
    
    .legal-page .container{
        max-width:900px;
        margin:auto;
    }
    
    .legal-page h1{
        font-size:34px;
        margin-bottom:10px;
    }
    
    .legal-page h2{
        margin-top:40px;
        font-size:24px;
    }
    
    .legal-page h3{
        margin-top:20px;
        font-size:18px;
    }
    
    .legal-page p{
        line-height:1.7;
        margin:12px 0;
    }
    
    .legal-page ul{
        margin:10px 0 20px 20px;
    }
    
    .legal-page li{
        margin-bottom:8px;
    }
    
    .legal-page hr{
        margin:35px 0;
        border:0;
        border-top:1px solid #e5e5e5;
    }
    
    .legal-date{
        color:#777;
        font-size:14px;
    }
    .optout-box{
        background:#f5f7f8;
        border-left:4px solid #00bc88;
        padding:20px;
        margin:25px 0;
        border-radius:6px;
        }
    /* LICENSE TABLE */

.table-wrap{
    overflow-x:auto;
    margin:25px 0;
    }
    
    .license-table{
    width:100%;
    border-collapse:collapse;
    font-size:15px;
    background:white;
    }
    
    .license-table th{
    background:#00bc88;
    color:white;
    padding:12px;
    text-align:left;
    }
    
    .license-table td{
    padding:12px;
    border-bottom:1px solid #eee;
    }
    
    .license-table tr:hover{
    background:#f8fdfb;
    }
    
    .legal-note{
    font-size:14px;
    color:#555;
    margin-top:10px;
    }
    
    @media(max-width:768px){
    
    .license-table th,
    .license-table td{
    font-size:13px;
    padding:10px;
    }
    
    }

/* Sorry Icon */
.sorry-icon-wrapper{
    display:flex;
    justify-content:center;
}

.sorry-icon-circle{
    width:68px;
    height:68px;
    background:rgba(255,255,255,0.15);
    border:3px solid rgba(255,255,255,0.6);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 30px rgba(0,0,0,0.25);
    animation:sorry-pop 0.4s cubic-bezier(0.175,0.885,0.32,1.275) both;
}

.sorry-icon-circle i{
    font-size:30px;
    color:#fff;
    line-height:1;
}

@keyframes sorry-pop{
    0%{transform:scale(0);opacity:0;}
    100%{transform:scale(1);opacity:1;}
}

    