:root {
    --primary-color: #2d7645;
    --secondary-color: #f37520;
    --text-color: #677e73;
    --title-color: #1f2e26;
    --background-color: #f6f8f9;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --title_font: 'Poppins', sans-serif;
    --text_font: 'Catamaran', sans-serif;
}

body {
    font-family: "Catamaran", sans-serif;
}

.modal {
    z-index: 99999;
}


.top-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
}

.top-header p {
    font-size: 14px;
}

.banner_img {
    background-image: url('../img/hero-img.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(31 46 38 / 60%);
}

.text-accent {
    color: #ffc61a;
}

.banner_area .content {
    position: relative;
    max-width: 900px;
    padding: 20px;
}

.banner_area .badge {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--text_font);
}

.banner_area h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 59px;
    margin-bottom: 20px;
    font-family: var(--title_font);
}


.banner_area p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
    font-weight: 500;
    font-family: var(--text_font);
}

.banner_area .text-small {
    font-size: 12px;
    color: #677e73;
}


.banner_area .features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.banner_area .feature {
    background: rgb(255 255 255 / 26%);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    font-family: var(--text_font);
}



/* Responsive */
@media(max-width:768px) {
    h1 {
        font-size: 32px;
    }
}

.banner_area .form-wrapper {
    max-width: 600px;
    margin: 50px;
}

.btn-gradient {
    background: linear-gradient(90deg, #ff6a00, #ff3cac);
    border: none;
    color: #fff;
    border-radius: 30px;
    padding: 12px;
    font-weight: 500;
    box-shadow: 0 1px 21px rgb(254 90 33 / 56%);
    transition: .2s ease-in-out 0s;
}

.btn-gradient:hover {
    transform: scale(1.1);
    color: #fff;
}

.form-header {
    margin-bottom: 10px;
    text-align: center;
    gap: 15px;
}



.form-header h3 {
    color: #262f40;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif
}

.form-header p {
    color: #626d84;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.progress-container {
    margin-bottom: 25px;
}


.progress-bar {
    width: 100%;
    height: 8px;
    background: #2d7645;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    /* background: linear-gradient(90deg, #ff6a00, #ff3cac); */
    background: #f37520 !important;
    transition: width 0.3s ease;
    border-radius: 10px;
}



.form_two .progress-fill {
    width: 50%;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-indicator {
    display: flex;
    align-items: center;
    color: #626d84;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    font-family: "Catamaran", sans-serif;
}

.step-indicator.active {
    color: #f37520;
}

.step-indicator.completed {
    color: #f37520;
}

@media (max-width: 450px) {

    .step-indicator {
        flex-direction: column;
    }
}


.step-indicator.active .step-number {
    background: #667eea;
    color: white;
}

.step-indicator.completed .step-number {
    background: #10b981;
    color: white;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #e8e4d9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: white;
    appearance: auto;
    font-weight: 400;
    color: #242424;
}

.form-select {
    background-position: 0 15px !important;
    background-size: 12px;
}


.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* .form-control:invalid {
     border-color: #ef4444;
 } */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn {
    padding: 9px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
}

.text-small {
    font-size: 14px;
    color: #3e4658;
    font-weight: 400;
}

.btn-primary {
    background: #f37520;
    color: white;
}

.btn-primary:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(241, 129, 37, 0.3); */
    background-color: rgba(243, 116, 32, 0.773);
}

.btn-secondary {
    background: #f1f5f9;
    color: #1f2e26;
    border: solid 1px #d3ded9;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1f2e26;
}

.btn-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn-actions .btn {
    flex: 1;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #667eea;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

.success-animation {
    text-align: center;
    padding: 40px 20px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease-out;
}

.checkmark svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.5s ease-out 0.2s forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.plan-selection {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.plan-option {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.plan-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.plan-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.plan-name {
    font-weight: 600;
    color: #1a1a2e;
}

.plan-price {
    font-weight: 700;
    color: #667eea;
}

.plan-description {
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 640px) {


    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-actions {
        flex-direction: column;
    }

    /* .step-indicators {
         display: none;
     } */
}



.banner_area .card {
    border-radius: 20px;
    border: none;
}

.banner_area .form-control,
.banner_area .form-select {
    border-radius: 10px;
    /* padding: 12px; */
    background-color: #f6f8f9;
    height: 40px;
    font-size: 14px;
}

.form-label {
    color: var(--title-color);
    font-size: 14px;
    font-weight: 700 !important;
}

.banner_area .form-control:focus,
.banner_area .form-select:focus {
    border-color: #f97316;
    box-shadow: none;
}

.btn-orange {
    background: #f97316;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    font-weight: 700;
}

.btn-orange:hover {
    background: #ea580c;
    color: #fff;
}

.note {
    font-size: 12px;
    color: #777;
}

.stats-section {
    /* background-color: #f8f9fa; */
    padding: 40px 0;
}

.stat-number {
    color: #f97316;
    font-size: 36px;
    font-weight: 800;
    font-family: var(--title_font);
}

.stat-text {
    color: #555;
    font-size: 14px;
}

/* Section */
.programs {
    padding: 80px 0;
    background-color: #f6f8f9;
}

/* Title */
.section-title {
    font-weight: 600;
    font-family: var(--title_font);
    font-size: 40px;
    color: #1f2e26;
}

.section-subtitle {
    color: #677e73;
    margin-bottom: 40px;
    font-size: 18px;
    font-family: var(--text_font);
}


/* Section 2 */
/* Heading */
.safe-section h2 {
    font-size: 36px;
    color: #1f2e26;
    font-family: var(--title_font);
}

.safe-section p {
    color: #677e73;
    font-size: 18px;
}

/* Feature list */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #050505;
}

/* Icon style */
.feature-item .icon {
    width: 40px;
    height: 40px;
    background: #e6f4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 16px;
}


.fill-accent {
    fill: #ffc61a;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    max-width: 750px;
    margin: auto;
    line-height: 1.6;
    font-family: var(--title_font);
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: #d1e7dd;
}






.btn-call {
    background: #f97316;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-call:hover {
    background: #ea580c;
    color: #fff;
}

/* Footer */
.footer {
    background: #1f2e26;
    color: #cfe2d6;
    padding: 20px 10px;
    font-size: 14px;
}

.footer p {
    color: #c9d9d0;
}

.stat-card {
    background: #f6f8f9;
    border-radius: 20px;
    padding: 15px 20px;
    border: 1px solid #d3ded9;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
    transition: all 0.3s ease;
}

/* Hover */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
/* Number */
.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #f37520;
    margin: 2px 0;
}

/* Text */
.stat-text {
    color: #555;
    font-size: 16px;
    margin-bottom: 0;
}

/* Day at wisdom styles */
.day-section {
    background: #eaeef0;
    padding: 80px 0;
}

.day-section h2 {
    font-size: 34px;
    color: #0f172a;
    font-family: var(--title_font);
}

.day-section p {
    color: #677e73;
    font-size: 18px;
}

/* Mini cards */
.mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 22px 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 16px;
    color: #374151;
    transition: all 0.3s ease;
}

/* Icon */
.mini-card .iconArea {
    width: 36px;
    height: 36px;
    background: #ffece5;
    color: #ff5a1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Hover */
.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, #ff7a18, #ff5a1f);
    padding: 20px 0;
    color: #fff;
}

/* Text */
.cta-banner h4 {
    font-weight: 600;
    font-size: 25px;
}

/* Button */
.cta-btn {
    background: #ffc107;
    color: #000;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

/* Hover */
.cta-btn:hover {
    background: #ffb300;
    color: #000;
}


/* Our Programme */
.programs-section {
    background: #f8fafc;
}

/* Card */
.program-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height:100%;
}

/* Image */
.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Body */
.program-card .card-body {
    padding: 18px;
    height:100%;
}

/* Age text */
.program-card .age {
    color: #ff5a1f;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Description */
.program-card p {
    font-size: 16px;
    color: #677e73;
}

.program-card img {
    transition: transform 0.4s ease;
}

.program-card:hover img {
    transform: scale(1.05);
}

/* Hover */
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* CTA Button */
.enroll-btn {
    background: #ff5a1f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
}

.enroll-btn:hover {
    background: rgba(225, 72, 26, 0.774);
    color: #fff;
}

.bg-muted {
    background-color: #eaeef0;
}

/* Why Families Choose Wisdom Schools */

.why-section {
    background: #f6f8f9;
}

/* Feature card */
.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
    font-size: 17px;
    color: #0e0e0e;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* Icon circle */
.feature-box .icon {
    width: 40px;
    height: 40px;
    background: #f5e6c8;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Hover */
.feature-box:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Heading */
.why-section h2 {
    font-size: 40px;
    color: #1f2e26;
    font-family: var(--title_font);
    font-weight: 600;
}

/* Designed for Safety, Comfort, and Growth */
.safety-section {
    /* background: #f8fafc; */
    padding: 80px 0;
}

/* Heading */
.safety-section h2 {
    font-size: 40px;
    color: #1f2e26;
    font-weight: 600;
    font-family: var(--title_font);
}

.safety-section p {
    color: #677e73;
    font-size: 18px;
}

/* Checklist */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Item */
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #1f2e26;
}

/* Child feel at home */
.trust-section {
    background: #f6f8f9;
    padding: 80px 0;
}

/* Icon items */
.trust-item {
    text-align: center;
}



/* Text */
.trust-item p {
    font-size: 18px;
    margin: 0;
    color: #1f2e26 !important;
    font-weight: 600;
}

/* Heading */
.trust-section h2 {
    font-size: 40px;
    color: #1f2e26;
    font-weight: 600;
    font-family: var(--title_font);
}

.trust-section p {
    color: #677e73;
    font-size: 18px;
}

/* Testimonial  */
.testimonial-section {
    background: #2e7d32;
}

.testimonial-section h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    font-family: var(--title_font);
}

.testimonial-section p.subtxt {
    color: #cfe2d6;
    font-size: 18px;
}

/* Card */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Stars */
.stars {
    color: #f5b301;
    font-size: 26px;
}

/* Text */
.testimonial-text {
    font-size: 14px;
    color: #1f2e26;
    margin-bottom: 20px;
}

/* User */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar */
.avatar {
    width: 40px;
    height: 40px;
    background: #2e7d32;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Name */
.user h6 {
    font-weight: 600;
}

/* Subtitle */
.user small {
    color: #777;
}

.testimonial-card {
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Final CTA */
.final-cta {
    /* background: #f8fafc; */
    padding: 80px 0;
}

/* Heading */
.final-cta h2 {
    font-size: 40px;
    margin: auto;
    color: #1f2e26;
    font-weight: 600;
    font-family: var(--title_font);
}

.final-cta p {
    color: #677e73;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Pills */
.cta-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    color: #374151;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
}

/* Icon */
.cta-pill i {
    width: 22px;
    height: 22px;
    background: #e6f4ea;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Hover */
.cta-pill {
    transition: 0.3s;
}

.cta-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form_3rd h2 {
    font-size: 40px;
    margin: auto;
    color: #1f2e26;
    font-weight: 600;
    font-family: var(--title_font);
    text-align: center;
}

.form_3rd p {
    color: #677e73;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}
.call a{
    color:#f37520 ;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    padding-top: 35px;
}
.call a:hover{
    text-decoration: underline;
}
.btn-close{
        position: absolute;
    right: 17px;
    top: 12px;
    font-size: 12px;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #fff;
    background-color: #699d3f !important;
    border-color: #699d3f !important;
}

@media (min-width: 1200px) {
  .row-5-col .col {
    width: 20%;
    flex: 0 0 20%;
  }
}

@media (max-width:1199px){
    .row-5-col .col{
      width: 33.33%;
    flex: 0 0 33.33%;
    }
}

@media (max-width:767px){
    .row-5-col .col{
      width: 50%;
    flex: 0 0 50%;
    }
}
@media (max-width:576px){
    .row-5-col .col{
  flex: 0 0 auto;
        width: 83.33333333%
    }
}