/* hero section  */
#pageBanner {
    max-width: 100%;
    background: #293857;
    justify-items: center;
    text-align: center;
    align-content: center;
    padding: 100px 20px;
}

#pageBanner .pageBannerInner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1280px;
    width: 100%;
}

#pageBanner .pageBannerInner h1 {
    color: #fff;
    font-size: 62px;
    font-family: "Playfair Display";
    font-weight: 700;
    text-transform: uppercase;
}

#pageBanner .pageBannerInner p {
    font-size: 18px;
    color: #fff;
    font-family: "poppins";
    font-weight: 400;
    line-height: 1.2em;
}

#prismJourneySec {
    padding: 100px 20px;
}
#prismJourneySec .prismJourneySecHead h2 {
    color: #293857;
    font-size: 42px;
    font-family: "Playfair Display";
    font-weight: 700;
    margin: 0 0 0 0;
    text-align: center;
}
#prismJourneySec .prismJourneySecInner {
    display: flex;
    max-width: 1280px;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    margin: 100px auto 0 auto;
}
#prismJourneySec .prismJourneySecInnerRow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
#prismJourneySec .prismJourneySecInnerRow.prismJourneySecInnerRowReverse {
    flex-direction: row-reverse;
}
#prismJourneySec
    .prismJourneySecInnerRow
    .prismJourneySecInnerCol.prismJourneySecInnerColContent {
    flex: 1;
}
#prismJourneySec
    .prismJourneySecInnerRow
    .prismJourneySecInnerCol.prismJourneySecInnerColImg {
    max-width: 40%;
    width: 100%;
}
#prismJourneySec .prismJourneySecInnerRow .prismJourneySecInnerCol h2 {
    color: #293857;
    font-size: 42px;
    font-family: "Playfair Display";
    font-weight: 700;
    margin: 0 0 0 0;
}
#prismJourneySec .prismJourneySecInnerRow .prismJourneySecInnerCol p {
    font-size: 18px;
    color: #333;
    font-family: "poppins";
    font-weight: 400;
    line-height: 1.5em;
    margin: 20px 0;
}
#prismJourneySec .prismJourneySecInnerRow .prismJourneySecInnerCol img {
    border-radius: 15px;
}

/* express interest section  */
#expressInterestSec {
    max-width: 100%;
    background: #293857;
    justify-items: center;

    align-content: center;
    padding: 100px 20px;
}

#expressInterestSec .expressInterestSecInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1280px;
    width: 100%;
}
#expressInterestSec .expressInterestSecInner .expressInterestSecInnerHead {
    text-align: center;
}
#expressInterestSec .expressInterestSecInner h1 {
    color: #fff;
    font-size: 62px;
    font-family: "Playfair Display";
    font-weight: 700;
    text-transform: uppercase;
}

#expressInterestSec .expressInterestSecInner p {
    font-size: 18px;
    color: #fff;
    font-family: "poppins";
    font-weight: 400;
    line-height: 1.2em;
}
#expressInterestSec .form-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    padding: 50px 45px;
}

#expressInterestSec .form-group {
    margin-bottom: 24px;
}

#expressInterestSec .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

#expressInterestSec label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

#expressInterestSec label .required {
    color: #e74c3c;
}

#expressInterestSec input[type="text"],
#expressInterestSec input[type="email"],
#expressInterestSec input[type="tel"],
#expressInterestSec input[type="url"],
#expressInterestSec textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

#expressInterestSec input:focus,
#expressInterestSec textarea:focus {
    outline: none;
    border-color: #2a5298;
    background: white;
    box-shadow: 0 0 0 4px rgba(42, 82, 152, 0.1);
}

#expressInterestSec textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

#expressInterestSec .error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

#expressInterestSec .error-message.show {
    display: block;
}

#expressInterestSec .input-error {
    border-color: #e74c3c !important;
    background: #fff5f5 !important;
}

#expressInterestSec .help-text {
    color: #5a6c7d;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.5;
}

#expressInterestSec .note-box {
    background: #f0f4f8;
    border-left: 4px solid #2a5298;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
}

#expressInterestSec .recaptcha-container {
    margin: 28px 0;
    display: flex;
    justify-content: center;
}

#expressInterestSec .submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

#expressInterestSec .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

#expressInterestSec .submit-btn:active {
    transform: translateY(0);
}

#expressInterestSec .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#expressInterestSec .iti {
    width: 100%;
}

#expressInterestSec .iti__flag-container {
    padding: 14px 16px;
}

#expressInterestSec #phone {
    padding-left: 52px;
}

#expressInterestSec .success-message {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
}

#expressInterestSec .success-message.show {
    display: block;
}
@media (max-width: 768px) {
    #prismJourneySec .prismJourneySecInnerRow {
        flex-direction: column-reverse;
        align-items: start;
    }
    #prismJourneySec .prismJourneySecInnerRow.prismJourneySecInnerRowReverse {
        flex-direction: column-reverse;
        align-items: start;
    }
    #prismJourneySec
        .prismJourneySecInnerRow
        .prismJourneySecInnerCol.prismJourneySecInnerColImg {
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    #expressInterestSec .form-container {
        padding: 35px 25px;
    }

    #expressInterestSec .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #expressInterestSec .submit-btn {
        font-size: 16px;
        padding: 16px;
    }
}
@media (max-width: 480px) {
    #pageBanner .pageBannerInner h1 {
        font-size: 28px;
    }
    #pageBanner .pageBannerInner p {
        font-size: 16px;
        line-height: 1.3em;
    }
    #prismJourneySec .prismJourneySecHead h2 {
        font-size: 28px;
    }
    #prismJourneySec .prismJourneySecInnerRow .prismJourneySecInnerCol h2 {
        font-size: 28px;
    }
    #prismJourneySec .prismJourneySecInnerRow .prismJourneySecInnerCol p {
        font-size: 16px;
    }
    #expressInterestSec .expressInterestSecInner h1 {
        font-size: 28px;
    }
    #expressInterestSec .expressInterestSecInner p {
        font-size: 16px;
        line-height: 1.4em;
    }
}
