

    body {
     font-family: "Poppins", sans-serif;
      background-color: #fbf7f7; 
      color: #444;
    }

    /* Top utility bar */
    .top-utility-bar {
background: #FF4500;
    font-size: 12px;
    padding: 17px 0;
    }

    .top-utility-bar a {
      color: #c0392b;
      text-decoration: none;
      margin-left: 10px;
    }

    .navbar-brand {
 font-size: 30px;
    }

    /* Main title bar */
    .title-bar {
      background: #fff;
      color: #228B22;
      padding: 20px 15px 12px;
      text-align: center;
    }

    .title-bar h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    }

    .title-bar p {
font-size: 18px;
    margin: 0;
    font-weight: 600;
    }

    /* Green nav bar */
    .main-nav {
      background: #0b8b00;
    }

    .main-nav .nav-link {
    color: #ffffff !important;
    font-size: 16px;
    padding: 10px 12px;
    text-align: center;
    font-weight: 500;
    margin-right: 30px;
    }

    .main-nav .nav-link:hover {
      /* background: rgba(255, 255, 255, 0.1); */
       color: #F39C12 !important;;
    }

    /* Page heading */
    .page-heading {
      font-size: 42px;
      font-weight: 600;
      color:#ff4500;
      text-align: center;
      margin: 15px 0 15px;
    }

    /* Light strip under heading */
    .info-strip {
    background: linear-gradient(120deg, rgba(255, 127, 80, 0.1), rgba(255, 69, 0, 0.1));
    border-left: 4px solid #ff6347;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    }

    .info-strip i {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6347;
    }


/* Registration table */
/* .reg-table2
{
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}


    .reg-table thead th {
      background: linear-gradient(to right, #FF4500, #8b0000);
      color: #ffffff;
      font-size: 16px;
      vertical-align: middle;
      text-align: center; 
      font-weight: 500; 
      padding: 15px 10px;
    }

    .reg-table th:first-child {
      text-align: left;
      width: 32%;
    }

    .reg-table tbody td {
      font-size: 16px;
      padding: 15px 12px;
      vertical-align: middle;
    }

    .reg-table tbody tr:nth-child(even) {
      background: #fdf5f3;
    }

    .reg-table tbody td.fee-highlight {
    font-weight: 600;
    color: #d42b0d;
} */




/*---table start---*/
/* Table Container Styling */
.reg-table2 {
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    border-radius: 12px;
}

/* Table Header */
.reg-table thead th {
    background: linear-gradient(to right, #FF4500, #8b0000);
    color: #ffffff;
    font-size: 16px;
    vertical-align: middle;
    text-align: center;
    font-weight: 500;
    padding: 15px 10px;
}

.reg-table th:first-child {
    text-align: left;
    width: 32%;
}

/* Table Body */
.reg-table tbody td {
    font-size: 18px;
    padding: 15px 12px;
    vertical-align: middle;
        /* color: green; */
}

.reg-table tbody tr:nth-child(even) {
    background: #fdf5f3;
}

.reg-table tbody td.fee-highlight {
    font-weight: 700;
    color: #d42b0d;
    font-size: 22px;
}

/* Register Button */
.btn-price {
       display: block;
    margin: 10px auto 0;
    padding: 7px 20px;
    background: transparent;
    color: #ff4500;
    border: 2px solid #f53f00;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}
.btn-price:hover {
    background: #d63a00;
    color: #ffffff;
}

/* ---------------------- */
/* MOBILE STACKED TABLE   */
/* ---------------------- */
@media (max-width: 768px) {

  .reg-table thead {
    display: none !important;
  }

  .reg-table,
  .reg-table tbody,
  .reg-table tr,
  .reg-table td {
    display: block;
    width: 100%;
  }



    .table>:not(caption)>*>* {
    padding: .5rem .5rem;
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
    background-color: transparent !important;
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

  .reg-table tr {
                   margin-bottom: 20px;
        background: #ffffff29 !important;
        border-radius: 15px;
        padding: 14px 12px;
        box-shadow: 0 4px 20px rgb(195 195 195);
        border-top: 4px solid #ff4500;
                border-bottom: 4px solid #ff4500;
  }
  .reg-table tbody td {
    font-size: 18px;
    padding: 15px 12px;
    vertical-align: middle;
    color: green;
}

  .reg-table td {
    padding: 10px 12px !important;
    border: none !important;
    text-align: center !important;
    font-size: 16px;
    position: relative;
    font-weight: 600;
  }

  /* LABEL ABOVE THE VALUE */
  .reg-table td::before {
    content: attr(data-label);
   display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffffbf;

    border-radius: 10px;
    background: linear-gradient(to right, #FF4500, #8b0000);
    line-height: 20px;
    padding: 5px;
  }

  /* Button full-width on mobile */
  .btn-price {
      width: fit-content;
      margin-top: 12px;
  }
}


.text-light-dark
{
    color: #6e6e6e !important;
}

/*---table end---*/

















.registration-details {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.details-title {
    color: #ff4500;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.details-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6347;
}


.details-title2 {
    color: #ff4500;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px; 
    padding-top: 15px;
}

.details-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6347;
}


.included-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.included-icon {
    color: #ff4500;
    margin-right: 12px;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
    margin-top: 3px;
}

.included-text {
    font-size: 0.95rem 15.2px;
    color: #000000;
}

.note-box2 {
    background: #FFF5EE;
    border-left: 4px solid #ff6347;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 16px;
}

.note-box2 i {
   
    color: #ff6347;
    font-size:16px;
}










    /* Section headings */
    .section-title {
      color: #e85a18;
      font-size: 20px;
      font-weight: 600;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    /* Custom bullets */
    .bullet-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 20px;
    }

    .bullet-list li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 6px;
      font-size: 16px;
    }

    .bullet-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ff6200;
      position: absolute;
      left: 0;
      top: 7px;
    }

    /* Highlight note */
    .note-box {
      background: #fff6ef;
      border-left: 4px solid #ff7f32;
      padding: 10px 12px;
      font-size: 13px;
      margin-top: 10px;
    }

    /* Additional info list */
    .additional-list {
      font-size: 16px;
      padding-left: 18px;
    }

    /* Buttons */
    .btn-orange {
      background: #ff6200;
      color: #ffffff;
      border-radius: 25px;
      padding: 10px 36px;
      border: none;
      font-size: 18px;
      font-weight: 500;
    }

    .btn-orange:hover {
      background: #e45700;
      color: #ffffff;
    }

    .btn-outline-orange {
      border-radius: 25px;
      padding: 8px 28px;
      border: 1px solid #ff6200;
      color: #ff6200;
      font-size: 16px;
      font-weight: 500;
      background: #ffffff;
    }

    .btn-outline-orange:hover {
      background: #ff6200;
      color: #ffffff;
    }

    /* Footer */
    footer {
      background: #071a3a;
      color: #ffffff;
      margin-top: 40px;
      padding-top: 30px;
    }

    footer h5 {
      font-size: 16px;
      margin-bottom: 10px;
    }

    footer p {
      font-size: 16px;
      margin-bottom: 4px;
    }

        footer p a {
      font-size: 16px;
  color: #ffffff;
    text-decoration: none;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 15px;
      padding: 10px 0;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 767.98px) {
      .title-bar h1 {
        font-size:24px;
      }

      .page-heading {
        font-size: 24px;
      }
    }




    /*----Form start****----*/

 .form-card {
        background: #ffffff;
        padding: 40px 45px;
        border-radius: 14px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        /* max-width: 1150px; */
        margin:20px auto;
    }

    h2.form-title {
        text-align: center;
           font-size: 36px;
    font-weight: 600;
    color: #ff4500;
        margin-bottom: 5px;
    }

    .subtitle {
        text-align: center;
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 30px;
        color: #555;
    }

    label {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .form-control, .form-select {
        padding: 10px 14px;
        border-radius: 10px;
    }

    textarea.form-control {
        height: 130px;
    }

    .note {
        font-size: 13px;
        color: #444;
        margin-top: 5px;
    }

    /* Modern Attractive Radio Buttons */
    .radio-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .custom-radio {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        font-weight: 500;
        padding: 6px 14px;
        border-radius: 25px;
        transition: 0.25s ease;
        border: 1px solid #d0d7e2;
        background: #fff;
    }

    .custom-radio input {
        accent-color:#ff6200;
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

    .custom-radio:hover {
          background: #ffe1cf;
    border-color: #ff6200;
    }

    .custom-radio.active {
       background: #ffe1cf;
    border-color: #ff6200;
    font-weight: 600;
    color: #ff6200;
    }

    .submit-btn {
        background: #ff6200;
        color: #fff;
        padding: 10px 28px;
        border-radius: 30px;
        border: none;
        font-weight: 600;
        transition: .3s;
    }
    .submit-btn:hover {
        background: #ff6200;
    }


    .iti {
    display: block !important;
}


    @media (max-width: 576px) {
        .form-card {
            padding: 25px;
        }
    }





    /* Heading Row */
.form-header {
    margin-bottom: 30px;
}

/* Left Heading (existing) */
.left-heading {
    flex: 1;
}

/* Right Heading Box */
.right-heading {
    text-align: right;
    min-width: 220px;
}

/* Right Heading Title */
.amount-title {
    font-size: 20px;
    font-weight:600;
    color: #ff6200;
    margin-bottom: 5px;
}

/* Creative Amount Box */
.amount-box {
    background: #fff4ec;
    border: 2px solid #ff6200;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #ff6200;
    box-shadow: 0 4px 10px rgba(255,98,0,0.25);
    display: inline-block;
}

/* Responsive: Move Selected Amount below form title */
@media (max-width: 768px) {
    .form-header {
        text-align: center;
        flex-direction: column;
    }

    .right-heading {
        text-align: center;
        margin-top: 15px;
        width: 100%;
    }
}

.error-msg
{
  color: red;
  font-size: 15px; 
  text-align: left; 
  font-weight: 600;
}

     /*----Form end****----*/



     /*----payment success start---*/

     
.container-success {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      max-width: 650px;
      width: 90%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      text-align: center; 
      margin: 0 auto;
    }
    .success-icon {
      font-size: 70px;
      color: #28a745;
    }
     h1 {
      margin-top: 10px;
      color: #333;
      font-size: 25px; 
    }
   /* p {
      color: #555;
      font-size: 16px;
      line-height: 1.5;
    } */
    .details {
      margin-top: 20px;
      text-align: left;
      background: #f1f1f1;
      padding: 15px;
      border-radius: 8px;
    }
    .details p {
      margin: 5px 0;
      font-size: 15px;
    }
    .btn {
      margin-top: 25px;
      display: inline-block;
      padding: 12px 20px;
      background: #28a745;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      font-size: 16px;
    }
    .btn:hover {
      background: #ff6200;
      color: #fff;
    }
    @media (max-width: 480px) {
      .success-icon { font-size: 55px; }
      h1 { font-size: 22px; }
      p { font-size: 14px; }
    }


        .error-icon {
      font-size: 70px;
      color: #dc3545;
    }

      /*----payment success end---*/



      /*----contact us start----*/

      :root {
    --radius-lg: 16px;
    --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  }

  .contact-section {
    padding: 20px 10px;
    background: #f5f7fb;
  }

  .contact-container {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .details-card {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

    .details-card2 {
    background: #ffffff;
  }

  .badge {
    display: inline-block;
    background: #e6f3fb;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .detail-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1f2933;
  }

  .detail-text {
    font-size: 18px;
    white-space: pre-line;
    color: #1f2933;
    line-height: 1.5;
  }


    .detail-text .label {
    font-size: 20px;
    color: #1f2933;
    font-weight: 600;

  }

  .detail-text2 {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 18px;
}
.label2 {
    font-weight: 600;
    min-width: 70px; /* Adjust for alignment */
}


  .contact-line {
    margin-top: 10px;
    font-size: 0.95rem;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #1f2933;
  }

  .icon {
    width: 26px;
    height: 26px;
    background: #e6f3fb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .link {
    color: #1f2933;
    text-decoration: none;
  }

  .link:hover {
    text-decoration: underline;
  }


  /*----contact us end----*/



  /*----about us start----*/



  /*----about us end----*/


