  /* --- General Section Styling --- */
    .Appointmentsecc {
        padding: 60px 0;
        background-color: #f9f9f9;
    }

    /* --- Card Container --- */
    .registration-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        overflow: hidden;
        padding: 30px;
    }

    /* --- Section Headers --- */
    .form-section-title {
        font-size: 18px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .form-section-title i {
        color: #0d6efd;
    }

    /* --- Input Fields --- */
    .form-group {
        margin-bottom: 20px;
    }
    .form-control-custom {
        width: 100%;
        height: 50px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 0 15px;
        font-size: 14px;
        background: #fdfdfd;
        transition: all 0.3s ease;
    }
    .form-control-custom:focus {
        border-color: #0d6efd;
        background: #fff;
        outline: none;
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    }
    select.form-control-custom {
        cursor: pointer;
    }

    /* --- Right Sidebar (Summary) --- */
    .summary-card {
        background: #f0f8ff;
        border: 1px solid #dbeafe;
        border-radius: 10px;
        padding: 25px;
        position: sticky;
        top: 20px;
    }

    /* --- Price Box --- */
    .price-display-wrapper {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px dashed #cadae9;
        display: none; /* Hidden initially */
    }
    .price-label {
        font-size: 14px;
        color: #666;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .price-value {
        font-size: 32px;
        font-weight: 800;
        color: #0d6efd;
    }

    /* --- Upload Box --- */
    .file-upload-wrapper {
        position: relative;
        margin-bottom: 20px;
        border: 2px dashed #ccc;
        border-radius: 8px;
        text-align: center;
        padding: 20px;
        background: #fff;
        transition: border-color 0.3s;
    }
    .file-upload-wrapper:hover {
        border-color: #0d6efd;
    }
    .file-upload-wrapper input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }
    .upload-icon {
        font-size: 24px;
        color: #0d6efd;
        margin-bottom: 5px;
    }

    /* --- Terms Box --- */
    .terms-box {
        font-size: 14px;
        color: #666;
        background: #fff;
        padding: 15px;
        border-radius: 6px;
        border: 1px solid #eee;
        /* max-height: 150px; */
        overflow-y: auto;
        margin-bottom: 15px;
    }
    .terms-box h6 {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .terms-box ul {
        padding-left: 20px;
        margin: 0;
    }
    .terms-box li {
        margin-bottom: 4px;
    }

    /* --- Submit Button --- */
    .submit-btn-wrapper button {
        width: 100%;
        padding: 15px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .submit-btn-wrapper button svg {
        width: 18px;
        fill: currentColor;
    }
    
    /* Utility */
    .text-theme { color: #0d6efd; }
    .mb-30 { margin-bottom: 30px; }



    /* =================== */
    /* COURSE DETAIL PAGE */
    /* ================== */


     /* --- General Utilities --- */
  :root {
    --primary-color: #0d6efd;
    --primary-dark: #003366;
    --accent-color: #ffc107;
    --text-dark: #2c3e50;
    --text-grey: #555;
    --bg-light: #f9f9f9;
  }

  .imgcolor {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  /* --- Hero Banner --- */
  .course-hero {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  /* --- Main Layout --- */
  .course-wrapper {
    padding: 60px 0;
    background-color: #fdfdfd;
  }

  .course-content-body {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  /* --- TOP SECTION: Image & Help Box --- */
  .course-banner-img {
    width: 100%;
    height: auto;
    /* Original height */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .help-box {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .help-box h5 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
  }

  .help-item,
  .help-item a {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.80rem;
    color: var(--text-grey);
  }
  
  @media(min-width:1200px){
    .help-item, .help-item a {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
        font-size: 0.98rem;
        color: var(--text-grey);
     }
  }

  .help-item i {
    width: 25px;
    color: var(--theme-color);
    font-size: 1.1rem;
  }

  .btn-contact-outline {
    display: inline-block;
    margin-top: 0px;
    padding: 8px 20px;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
  }

  .btn-contact-outline:hover {
    background-color: var(--theme-color);
    color: #fff;
  }

  /* --- EDITOR CONTENT STYLING --- */
  .editor-content {
    margin-top: 30px;
    /* Space between image section and text */
    color: var(--text-grey);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
  }

  .editor-content h3 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
  }

  .editor-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--theme-color);
  }

  .editor-content p {
    margin-bottom: 15px;
    font-size: 1rem;
  }

  .editor-content ul {
    padding-left: 0;
    margin-bottom: 25px;
    list-style: none;
  }

  .editor-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
  }

.editor-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    position: relative;
    left: 0;
    margin-right: 10px;
    top: 2px;
    color: var(--theme-color);
}

  .editor-content table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border: 1px solid #eee;
    table-layout:fixed;
      
  }

  .editor-content table th,
  .editor-content table td {
    padding: 12px 15px;
    border: 1px solid #eee;
  }
.editor-content table th, .editor-content table td {
    padding: 12px 15px;
    border: 1px solid #eee;
    vertical-align: text-top;
}


  .editor-content table th {
    background-color: var(--secondary-color);
    font-weight: 700;
  }

  /* --- Right Side: Sticky Form --- */
  .reg-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 10;
  }

  .reg-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #eee;
  }

  .reg-header {
    background: var(--theme-color);
    padding: 20px;
    text-align: center;
  }

  .reg-header h4 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .price-tag {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    display: block;
    /* margin-top: 10px; */
  }

  .price-tag span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
  }

  .reg-body {
    padding: 25px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 5px;
    display: block;
  }

  .form-control,
  .form-select {
    border-radius: 6px;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    width: 100%;
  }

  .form-control:focus,
  .form-select:focus {
    border-color:  var(--theme-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    outline: none;
  }

  .package-select {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    font-weight: 600;
    color:  var(--theme-color);
  }

  .btn-register {
    background-color:  var(--theme-color);
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 10px;
  }

  .btn-register:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
  }

  .secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .image-style-align-right{
    float:right;
    margin-left:1rem;
  }

    .image-style-align-left{
    float:left;
    margin-right:1rem;
  }
  
  .editor-content i{
      font-size:18px;
      position:relative;
      color:var(--theme-color);
  }
  
.editor-content i::after {
    content: '';
    position: absolute;
    top: 26px;
    /* margin-top: 10px; */
    left: 0;
    width: 30%;
    height: 3px;
    background-color: var(--theme-color2);
}

  /* Responsive */
  @media (max-width: 991px) {
    .reg-sidebar {
      position: relative;
      top: 0;
      margin-top: 40px;
    }

    .help-box {
      margin-top: 20px;
    }
  }
  
    figure img{  /* border-top: white; */
    border-radius: 13px;
    /* border: 3px solid var(--theme-color); */
    padding: 4px;
    box-shadow: 0px 0px 8px 7px #00aa9e1c;
}
  



