@import url('https://fonts.googleapis.com/css2?family=Inder&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&family=Marck+Script&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #ffffff;
     font-family: 'Open Sans', sans-serif;
}


.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 👈 left & right end */
    padding: 12px 24px;
    background: #fff;
}

/* LOGO */
.logo {
    height: 85px;
}

/* BUTTON GROUP */
.btn-group {
    display: flex;
    gap: 12px;
}

/* BUTTON COMMON */
.btn-login,
.btn-register {
    border: 1.5px solid #041F57;
    background: #041F57;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

/* OPTIONAL */
.btn-login {
    background: transparent;
    color: #041F57;
}

.btn-login:hover {
    background: #041F57;
    color: #fff;
}

.btn-register:hover {
    opacity: 0.9;
}

@media (max-width: 576px) {
    .top-bar {
        flex-direction: column;
        gap: 12px;
    }
}

/* HERO SECTION */
.hero-section {
    width: 100%;
    padding: 60px 0;
}

/* ONLY CONTAINER HAS COLOR */
.hero-container {
    background: #EBF2FF;
    /* 👈 required color */
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #041F57;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 16px;
    color: #4a5d8f;
    margin-bottom: 28px;
    max-width: 520px;
}

/* BUTTON */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #041F57;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}

.hero-btn img {
    width: 18px;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-btn {
        justify-content: center;
    }
}

/* About section====================================== */

.about-desc {
    max-width: 700px;
    font-size: 18px;
    color: #000;
}

.about-card {
    padding: 30px 20px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.about-card img {
    width: 70px;
    margin-bottom: 15px;
}

.about-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 15px;
    color: #646464;
    line-height: 1.6;
}


.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* BENEFITS FOR MEMBERS============================== */
.benefits-heading {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.benefit-card {
    border: 1px solid #e3e3e3;
    border-radius: 14px;
    padding: 24px;
    gap: 16px;
    align-items: flex-start;
    height: 100%;
    transition: 0.3s ease;
}

.benefit-card img {
    width: 48px;
    flex-shrink: 0;
}

.benefit-card h5 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* HOVER EFFECT */
.benefit-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* MOBILE ADJUSTMENT */
@media (max-width: 575px) {
    .benefit-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* CTA SECTION --------------------------------------*/
.cta-section {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.cta-container {
    background: #041F57;
    border-radius: 24px;
    padding: 60px;
    max-width: 1100px;
    width: 100%;
    color: #fff;
    text-align: center;
}

/* TEXT */
.cta-section h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto 35px;
    color: #d6e0ff;
    line-height: 1.6;
}

/* BUTTON */
.cta-btn-register {
    background: #ffffff;
    color: #041F57;
    border: none;
    width: 192px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.cta-btn-register:hover {
    background: #e6ecff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .cta-section h1 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 15px;
    }
}

/* footer=------------------------- */
/* FOOTER SECTION */
.footer-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

/* CENTER CONTAINER */
.footer-container {
    width: 100%;
    text-align: center;
}

/* TEXT */
.benefits-heading {
    font-size: 20px;
    font-weight: 600;
}

.footer-desc {
    color: #555;
    margin-bottom: 24px;
}

/* BUTTON GROUP */
.footer-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* BUTTON STYLE */
.footer-btn {
    background: #FFFFFF;
    color: #606060;
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid #AEAEAE;
}

.footer-btn:hover {
    background: #9b9b9b;
    transform: translateY(-2px);
}

/* COPYRIGHT SECTION ONLY */
.copyright-box {
    background: #101828;
    border-radius: 8px;
    padding: 14px 10px;
    max-width: 1100px;
    width: 100%;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}


.copyright-box p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .footer-btn-group {
        flex-direction: column;
    }
}

/* Registration------------------------------------------------------------------------------------ */

.registration-wrapper {
    max-width: 1200px;
    border: 1px solid #a2a2a2;
    margin: 0 auto;
    /* wrapper center */
    padding: 30px;
}

.back-link {
    text-decoration: none;
    color: #6c757d;
    font-size: 14px;
}

.form-box {
    background: #D3E7F9;
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
}

h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

label {
    font-weight: 500;
    margin-bottom: 6px;
}

.doc-uploed-text {
    font-weight: 500;
    margin-bottom: 6px;
}

.doc-uploed-text span {
    color: red;
}

label span {
    color: red;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 10px;
}

.upload-box {
    width: 300px;
    height: 150px;
    border: 2px dashed #c5cce4;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}


.upload-box img {
    width: 34px;
}

.upload-box span {
    font-size: 14px;
    font-weight: 500;
}

/* BUTTON GROUP */
.action-btn-group {
    width: 100%;
}

/* CANCEL BUTTON */
.btn-cancel {
    background: #ffffff;
    color: #041F57;
    border: 2px solid #989898;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-cancel:hover {
    background: #f2f5ff;
}

/* SUBMIT BUTTON */
.btn-submit {
    background: #041F57;
    color: #ffffff;
    border: none;
    width: 650px;
    padding: 14px 0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: #03204a;
}

/* 📱 RESPONSIVE */
@media (max-width: 991px) {
    .btn-submit {
        width: 100%;
    }

    .action-btn-group {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .form-box {
        padding: 25px;
    }

    .upload-box {
        width: 100%;
        max-width: 309px;
        margin: 0 auto;
    }

    .action-btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 1030px) {
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Registration Successful ------------------------------------------*/
/* PAGE BACKGROUND */
.reg-success-body {
    background: #D3E7F9;
}

/* SUCCESS BOX */
.reg-success-wrapper {
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1.5px solid #757575;
}

/* IMAGE */
.success-img {
    width: 90px;
    margin-bottom: 10px;
}

/* TEXT */
.reg-success-wrapper h2 {
    font-weight: 600;
}

.reg-success-wrapper p {
    font-size: 15px;
}

/* 📱 RESPONSIVE */
@media (max-width: 576px) {
    .reg-success-wrapper {
        padding: 35px 20px;
    }

    .success-img {
        width: 70px;
    }
}

/* CENTER SECTION */
.next-steps-section {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(211, 231, 249, 0.8);
    border-radius: 16px;
}

/* EACH ROW */
.next-step {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.next-step:last-child {
    margin-bottom: 0;
}

/* ICON */


/* CONTENT */
.step-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 16px;
    color: #646464;
    line-height: 1.6;
    margin: 0;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 576px) {
    .next-steps-section {
        padding: 20px;
    }

    .next-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-icon img {
        margin-bottom: 8px;
    }
}

/* SECTION */
.timeline-section {
    max-width: 1000px;
    margin: 40px auto;
}

.timeline-head {
    font-size: 24px !important;
    font-weight: 500;
}

/* CARD */
.timeline-card {
  display: flex;
  flex-direction: column;     /* 🔥 vertical layout */
  align-items: center;        /* center horizontally */
  gap: 12px;
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  height: 100%;
  text-align: center;
}

/* NUMBER CIRCLE */
.timeline-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* COLORS */
.step-green {
    background: #00C950;
}

.step-blue {
    background: #2B7FFF;
}

.step-grey {
    background: #B8B8B8;
}

/* TEXT */
.step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 14.5px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* 📱 MOBILE */
@media (max-width: 576px) {
    .timeline-card {
        align-items: center;
    }
}

.submission-summary {
    margin: 30px auto;
}

.summary-title {
    font-size: 24px !important;
    font-weight: 500;
    margin-bottom: 16px;
}

/* ROW */
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-row:last-child {
    border-bottom: none;
}

/* TEXT */
.label {
    font-weight: 500;
    color: #555;
}

.value {
    font-weight: 500;
    color: #000;
    text-align: right;
    max-width: 60%;
}

/* 📱 MOBILE */
@media (max-width: 576px) {
    .summary-row {
        flex-direction: column;
        gap: 6px;
    }

    .value {
        text-align: left;
        max-width: 100%;
        color: #333;
    }
}

.Important-notes-section {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background: #FEFCE8;
    border-radius: 16px;
    border: 1.5px solid #E5D5FB;
}

/* TITLE */
.notes-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #92400E;
}

/* LIST */
.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* DOT / ICON */
.notes-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: #D97706;
}

/* 📱 MOBILE */
@media (max-width: 576px) {
    .Important-notes-section {
        padding: 20px;
    }

    .notes-title {
        font-size: 16px;
    }

    .notes-list li {
        font-size: 14px;
    }
}
/* CENTER BUTTON GROUP */
.action-btn-center {
  display: flex;
  justify-content: center;   /* ✅ center horizontally */
  align-items: center;
  gap: 16px;
  margin: 30px auto;
  flex-wrap: wrap;           /* mobile safe */
}

/* CONTACT SUPPORT */
.btn-support {
  background: #FFFFFF;
  color: #041F57;
  border: 2px solid #AEAEAE;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

/* BACK TO HOME */
.btn-home {
  background: #041F57;
  color: #FFFFFF;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .action-btn-center {
    flex-direction: column;
  }

  .btn-support,
  .btn-home {
    width: 100%;
    max-width: 280px;
  }
}
