@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css";
      /* ===== RESET & BASE ===== */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        background: #eef1f6;
        overflow-x: hidden;
      }

      .container,
      .container-flex,
      .td-container,
      .container-wj {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto;
      }

      /* ===== NAVBAR ===== */
      .top-header {
        position: fixed;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        max-width: 1400px;
        z-index: 9999;
        background-color: #0a568a;
        padding: 15px 30px;
        border-radius: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45),
          inset 0 1px 0 rgba(255, 255, 255, 0.18);
      }

      .top-header::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 60px;
        border: 1px solid rgba(255, 255, 255, 0.15);
      }

      .top-header .logo {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 19px;
        font-weight: 700;
        color: #fff;
      }

      .top-header .phone {
        color: #fff;
        font-weight: 600;
        font-size: 16px;
      }

      /* ===== HERO ===== */
      .hero {
        position: relative;
        min-height: 100vh;
        padding-top: 120px;
        background: linear-gradient(
            180deg,
            rgba(15, 15, 15, 0.444),
            rgba(15, 15, 15, 0.484)
          ),
          linear-gradient(
            135deg,
            rgba(238, 111, 26, 0.514),
            rgba(170, 71, 25, 0.636)
          ),
          url("https://itsengg.edu.in/public/upload/1746879536.png")
            center/cover no-repeat;
        display: flex;
        align-items: center;
        overflow: hidden;
      }

      .hero-container {
        width: 90%;
        max-width: 1400px;
        margin: auto;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
      }

      /* ===== HERO CONTENT ===== */
      .hero-content {
        position: relative;
        z-index: 3;
        color: #fff;
      }

      .hero-content h6 {
        font-size: 15px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        opacity: 0.9;
      }

      .hero-content h1 {
        font-size: 45px;
        font-weight: 900;
        line-height: 1.2;
        margin-top: 5px;
        text-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
        font-family: "PT Serif", serif;
      }

      .hero-content p {
        margin: 5px 0 18px;
        max-width: 520px;
        line-height: 1.9;
        font-size: 15.5px;
      }

      .hero-content hr {
        margin: 20px 0;
        border: none;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
        width: 100px;
      }

      .hero-content .btn {
        display: inline-block;
        padding: 16px 44px;
        border-radius: 40px;
        background: linear-gradient(135deg, #e63939, #b61f1f);
        color: #fff;
        font-weight: 600;
        text-decoration: none;
        margin-top: 20px;
        transition: all 0.3s ease;
      }

      .hero-content .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      }

      /* ===== HERO PERSON IMAGE ===== */
      .hero-person {
        position: absolute;
        bottom: -2%;
        left: 46%;
        transform: translateX(-50%);
        z-index: 100;
        pointer-events: none;
      }

      .hero-person img {
        max-height: 100vh;
        object-fit: contain;
        border: 1px solid transparent;
        margin-left: 100px;
      }

      /* ===== FORM CARD ===== */
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }

      /* Full width fields */
      .form-row.full {
        grid-template-columns: 1fr;
      }

      .form-card {
        position: relative;
        z-index: 3;
        background: linear-gradient(180deg, #ffffff, #f4f6fb);
        padding: 30px;
        width: 450px;
        max-width: 100%;
        border-radius: 5px;
        box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35),
          inset 0 1px 0 rgba(255, 255, 255, 0.9);
        margin-left: auto;
        margin-bottom: 70px;
      }

      .form-card h3 {
        text-align: center;
        font-size: 19px;
        letter-spacing: 1px;
        margin-bottom: 26px;
        color: #333;
      }

      .form-group {
        margin-bottom: 14px !important;
      }

      .form-group input,
      .form-group select {
        width: 100%;
        padding: 13px 15px !important;
        border-radius: 8px;
        border: 1px solid #d8dde6;
        font-size: 14px;
        height: 100%;
      }

      .form-group input:focus,
      .form-group select:focus {
        outline: none;
        border-color: #0b5c8f;
        box-shadow: 0 0 0 4px rgba(11, 92, 143, 0.15);
      }

      .submit-btn,
      #registerBtn,#loginBtn,
    #forgotBtn,#forgotOtpBtn{
        width: 100%;
        margin-top: 16px;
        padding: 14px;
        border-radius: 8px;
        background: linear-gradient(135deg, #0a568a, #0a568a) !important;
        color: #fff;
        font-weight: 600;
        border: none;
        cursor: pointer;
        box-shadow: 0 18px 40px rgba(11, 92, 143, 0.45);
        transition: all 0.3s ease;
      }

      .submit-btn:hover,
 #registerBtn:hover,#loginBtn:hover,
    #forgotBtn:hover,#forgotOtpBtn:hover{
        background: #0a568a
        transform: translateY(-3px);
        box-shadow: 0 20px 45px rgba(11, 92, 143, 0.5);
      color:#fff !important;
      }

      /* ===== CAMPUS STATS ===== */
      .campus-stats {
        background: #ffffff;
        padding: 35px 20px;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }

      .stat-box {
        background: #f9f9f9;
        border: 2px dashed #c51c22;
        border-radius: 0px;
        padding: 25px 10px;
        text-align: center;
        transition: all 0.3s ease;
      }

      .stat-box h2 {
        font-size: 28px;
        font-weight: 800;
        color: #c51c22;;
        margin-bottom: 6px;
      }

      .stat-box p {
        font-size: 14px;
        font-weight: 500;
        color: #555;
        margin: 0;
      }

      .stat-box:hover {
        background: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
      }

      /* ===== SPECIALIZATION SECTION ===== */
      .specialization-section {
        padding: 60px 20px;
        background: #0a568a;
      }

      .section-title {
        font-size: 32px;
        font-weight: 700;
        color: white;
        text-align: center;
        margin-bottom: 40px;
      }

      .section-title::after {
        content: "";
        width: 90px;
        height: 4px;
        background: white;
        display: block;
        margin: 10px auto 0;
        border-radius: 10px;
      }

      .cards-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
      }

      .specialization-section .card {
        background: #ffffff;
        border: 2px dotted #0a568a;
        border-radius: 0px;
        padding: 22px 18px;
        text-align: center;
        transition: 0.3s ease;
      }

      .specialization-section .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
        border-color: #b30000;
      }

      .icon-circle {
        width: 56px;
        height: 56px;
        margin: 0 auto 14px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        background: #b30000;
        color: #fff;
      }

      .specialization-section .card p {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        color: #333;
      }

      /* ===== ADMISSION STEPS ===== */
      .admission-steps-premium {
        padding: 70px 20px;
        text-align: center;
        background: #ffffff;
      }

      .admission-steps-premium .title {
        font-size: 32px;
        font-weight: 700;
        color:#c51c22;
        margin-bottom: 40px;
      }

      .steps-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
      }

      .step-box {
        background: #ffffff;
        border-radius: 0px;
        padding: 25px 15px;
        border: 2px dashed #c51c22;;
        text-align: center;
        transition: 0.35s ease;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      }

      .step-box:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
      }

      .icon-square {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
        background:#c51c22;;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        color: #fff;
        font-size: 30px;
        transition: 0.35s ease;
      }

      .step-box:hover .icon-square {
        transform: scale(1.1) rotate(5deg);
      }

      .step-box p {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
      }

      .step-number {
        display: block;
        font-size: 16px;
        font-weight: 700;
        color: #c51c22;
      }

      /* ===== PREMIUM SCHOLARSHIP SECTION ===== */
      .premium-section {
        padding: 60px 20px;
        background: #0a568a;
      }

      .container-flex {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .premium-card {
        background: #fff;
        flex: 1 1 450px;
        padding: 35px 25px;
        border-radius: 0px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        transition: 0.35s ease;
      }

      .premium-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
      }

      .premium-heading {
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 35px;
        color: #0a568a;
      }

      .premium-scholar-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 25px;
        text-align: center;
      }

      .scholar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        border-radius: 15px;
        background: #fff8f8;
        transition: 0.3s ease;
      }

      .scholar-item:hover {
        transform: translateY(-5px);
        background: #ffe8e8;
      }

      .num-circle {
        background: linear-gradient(135deg, #0a568a, #f55a30);
        color: #fff;
        font-weight: 700;
        padding: 12px;
        font-size: 18px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      .scholar-item p {
        font-size: 14px;
        color: #555;
        font-weight: 600;
        margin: 0;
      }

      .loan-desc {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
        text-align: justify;
      }

      .loan-contact {
        font-size: 15px;
        font-weight: 700;
        color: #0a568a;
      }

      /* ===== INCUBATION SECTION ===== */
      .incubation-sec {
        padding: 60px 20px;
        background: #f6f6f6;
        text-align: center;
      }

      .sec-title h2 {
        font-size: 32px;
        font-weight: 700;
        color: #c51c22;
      }

      .sec-line {
        width: 65px;
        height: 4px;
        background: #b33a3a;
        margin: 12px auto 40px;
        border-radius: 5px;
      }

      .incubation-card {
        background: #fff;
        padding: 20px 10px;
        border-radius: 0px;
        border: 2px dashed #c51c22;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transition: 0.3s ease;
      }



      .icon-box {
        width: 70px;
        height: 70px;
        margin: 0 auto 12px;
        border-radius: 50%;
        background: #b33a3a;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .icon-box i {
        font-size: 30px;
        color: #fff;
      }

      .incubation-card p {
        font-size: 14px;
        font-weight: 600;
        color: #222;
        margin: 0;
      }

      /* ===== ACCREDITATION SECTION ===== */
      .accredit-premium {
        padding: 70px 20px;
        background: linear-gradient(135deg, #0a568a, #0a568a);
        text-align: center;
      }

      .accredit-title {
        font-size: 34px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
      }

      .accredit-line {
        width: 70px;
        height: 3px;
        background: #fff;
        margin: 0 auto 40px;
        border-radius: 50px;
      }

      .accredit-card {
        background: #fff;
        border-radius: 0px;
        padding: 14px 12px 16px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        transition: 0.3s ease;
        text-align: center;
      }

      .accredit-card:hover {
        transform: translateY(-4px);
      }

      .accredit-card img {
        height: 90px;
        width: 100%;
        object-fit: contain;
        margin-bottom: 8px;
      }

      .accredit-card p {
        font-size: 14px;
        font-weight: 600;
        color: #222;
        margin: 0;
      }

      /* ===== AWARDS SECTION ===== */
      .accredit-static-sec {
        padding: 60px 20px;
        background: #f5f5f5;
        text-align: center;
      }

      .accredit-static-title {
        font-size: 32px;
        font-weight: 700;
        color: #c51c22;
      }

      .accredit-static-line {
        width: 60px;
        height: 3px;
        background:#c51c22;
        margin: 10px auto 35px;
        border-radius: 4px;
      }

      .accredit-static-card {
        background: #fff;
        padding: 12px;
        border: 1px solid #e5e5e5;
        transition: 0.3s ease;
      }

      .accredit-static-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
      }

      .award-img {
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .award-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }

      .accredit-static-card p {
        font-size: 14px;
        font-weight: 600;
        margin-top: 6px;
        color: #222;
      }

      /* ===== TRAINING & DEVELOPMENT ===== */
      #training-development-section {
        padding: 70px 20px;
        background: linear-gradient(135deg, #0a568a, #0a568a);
      }

      .td-title {
        text-align: center;
        font-size: 38px;
        font-weight: 700;
        color: white;
        margin-bottom: 12px;
      }

      .td-line {
        width: 70px;
        height: 4px;
        background: white;
        margin: 0 auto 35px;
        border-radius: 5px;
      }

      .td-text {
        font-size: 17px;
        line-height: 1.8;
        color: white;
        margin-bottom: 18px;
        text-align: left;
      }

      .td-list {
        margin-top: 20px;
        padding-left: 0;
      }

      .td-list li {
        list-style: none;
        font-size: 17px;
        color: white !important;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
      }

      .td-icon {
        color: white;
        font-weight: bold;
        margin-right: 10px;
        font-size: 16px;
      }

      /* ===== WHY JOIN ITS ===== */
      #why-join-its {
        padding: 80px 20px;
        background: #ffffff;
      }

      .wj-title {
        font-size: 38px;
        font-weight: 700;
        color: #c51c22;
        text-align: center;
      }

      .wj-line {
        width: 80px;
        height: 4px;
        background: #0a568a;
        margin: 15px auto 50px;
        border-radius: 10px;
      }

      .wj-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
      }

      .wj-card {
        background: #ffffff;
        padding: 30px 20px;
        border-radius: 12px;
        border: 1px solid #eee;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        text-align: center;
      }

      .wj-icon-wrap {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: #f7f7f7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .wj-icon-wrap img {
        width: 40px;
        height: 40px;
      }

      .wj-card h4 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
      }

      /* ===== FOOTER ===== */
      .its-footer {
        background: linear-gradient(135deg, #0a568a, #0a568a);
        color: white;
        padding-top: 60px;
      }

      .footer-top {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
        padding: 0 20px;
      }

      .footer-col h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 18px;
        color: white;
      }

      .footer-col a {
        display: block;
        color: white;
        margin-bottom: 10px;
        font-size: 15px;
        transition: 0.3s ease;
        text-decoration: none;
      }

      .footer-col a:hover {
        color: #ffffff;
        transform: translateX(5px);
      }

      .footer-col p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 5px;
        color: white;
      }

      .map-box {
        width: 100%;
        height: 160px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      }

      .footer-btn {
        display: inline-block;
        margin-top: 12px;
        background: white;
        color: #083b5a;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        transition: 0.3s ease;
        text-decoration: none;
      }

      .footer-btn:hover {
        background: #e6e6e6;
        transform: translateY(-3px);
      }

      .footer-bottom {
        text-align: center;
        padding: 18px;
        margin-top: 40px;
        background: rgba(0, 0, 0, 0.15);
        font-size: 14px;
        color: white !important;
        font-weight: 600;
      }

      /* ===== RESPONSIVE BREAKPOINTS ===== */

      /* Large Devices (1200px and up) - Desktop */
      @media (min-width: 1200px) {
        /* Keep desktop layout as is */
      }

      /* Medium Devices (992px to 1199px) */
      @media (max-width: 1199px) {
        .hero-container {
          grid-template-columns: 1.2fr 0.8fr;
          gap: 40px;
        }

        .hero-person img {
          margin-left: 50px;
        }

        .form-card {
          margin-left: auto;
          margin-right: 20px;
        }

        .cards-wrapper {
          grid-template-columns: repeat(3, 1fr);
        }

        .wj-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      /* Tablet Devices (768px to 991px) */
      @media (max-width: 991px) {
        .hero-container {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .hero-person {
          display: none;
        }

        .hero-content h1 {
          font-size: 38px;
        }

        .form-card {
          margin: 40px auto;
          width: 100%;
          max-width: 600px;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .cards-wrapper {
          grid-template-columns: repeat(2, 1fr);
        }

        .steps-grid {
          grid-template-columns: repeat(3, 1fr);
        }

        .wj-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .footer-top {
          grid-template-columns: repeat(3, 1fr);
        }

        .premium-scholar-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Small Devices (576px to 767px) */
      @media (max-width: 767px) {
        .top-header {
          padding: 12px 20px;
          border-radius: 50px;
        }

        .top-header .logo {
          font-size: 16px;
        }

        .top-header .phone {
          font-size: 14px;
        }

        .hero-content h1 {
          font-size: 32px;
        }

        .hero-content p {
          font-size: 14px;
        }

        .form-card {
          padding: 25px 20px;
          margin: 30px auto;
        }

        .form-row {
          grid-template-columns: 1fr;
        }

        .section-title {
          font-size: 28px;
        }

        .admission-steps-premium .title {
          font-size: 28px;
        }

        .steps-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .premium-heading {
          font-size: 24px;
        }

        .sec-title h2 {
          font-size: 28px;
        }

        .accredit-title {
          font-size: 28px;
        }

        .td-title {
          font-size: 30px;
        }

        .wj-title {
          font-size: 30px;
        }

        .footer-top {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Extra Small Devices (up to 575px) */
      @media (max-width: 575px) {
        .top-header {
          padding: 10px 15px;
          border-radius: 40px;
        }

        .top-header .logo {
          font-size: 14px;
          gap: 8px;
        }

        .top-header .logo img {
          height: 40px;
        }
        .ghgh {
          display: none !important;
        }

        .top-header .phone {
          font-size: 12px;
        }

        .hero {
          padding-top: 100px;
          min-height: auto;
          padding-bottom: 50px;
        }

        .hero-content h1 {
          font-size: 28px;
        }

        .hero-content .btn {
          padding: 14px 30px;
          font-size: 14px;
          margin-top: -40px !important;
        }

        .hero-content hr {
          display: none !important;
        }
        .stats-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .cards-wrapper {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .steps-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .step-box {
          padding: 20px 15px;
        }

        .icon-square {
          width: 70px;
          height: 70px;
          font-size: 25px;
        }

        .premium-scholar-grid {
          grid-template-columns: 1fr;
        }

        .premium-card {
          padding: 25px 15px;
        }

        .wj-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .wj-card {
          padding: 20px 15px;
        }

        .footer-top {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 30px;
        }

        .map-box {
          height: 200px;
        }

        .footer-bottom {
          font-size: 12px;
          padding: 15px;
        }

        .td-text,
        .td-list li {
          font-size: 16px;
        }

        .accredit-static-title {
          font-size: 26px;
        }

        .impact-number {
          font-size: 40px;
        }
      }

      /* Very Small Devices (up to 400px) */
      @media (max-width: 400px) {
        .hero-content h1 {
          font-size: 24px;
        }

        .section-title,
        .admission-steps-premium .title,
        .sec-title h2,
        .accredit-title,
        .td-title,
        .wj-title {
          font-size: 24px;
        }

        .form-card h3 {
          font-size: 16px;
        }

        .form-group input,
        .form-group select {
          padding: 10px 12px;
          font-size: 13px;
        }

        .submit-btn {
          padding: 12px;
          font-size: 14px;
        }

        .stat-box h2 {
          font-size: 24px;
        }

        .specialization-section .card p {
          font-size: 14px;
        }

        .step-box p {
          font-size: 14px;
        }

        .premium-heading {
          font-size: 22px;
        }
      }
      
          #why-join-its {
            padding: 70px 80px;
            background: linear-gradient(180deg, #f9fafc, #ffffff);
          }

          /* Container */
          .container-wj {
            width: 90%;
            max-width: 1300px;
            margin: auto;
          }

          /* Title */
          .wj-title {
            text-align: center;
            font-size: 34px;
            font-weight: 700;
            color: #c51c22;
            letter-spacing: 0.5px;
          }

          .wj-line {
            width: 70px;
            height: 3px;
            background: #c51c22;
            margin: 12px auto 45px;
            border-radius: 10px;
          }

          /* Swiper spacing */
          .whyjoinSwiper {
            padding-bottom: 45px;
          }

          .swiper-slide {
            height: auto;
          }

          /* CARD â€“ PREMIUM */
          .wj-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 26px 18px;
            text-align: center;
            border: 1px solid #eeeeee;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            transition: all 0.35s ease;
          }

          /* Hover */
          .wj-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
            border-color: #0a568a;
          }

          /* ICON CIRCLE */
          .wj-icon-wrap {
            width: 78px;
            height: 78px;
            margin: 0 auto 16px;
            background: #fff;
            border-radius: 50%;
            border: 2px solid #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease;
          }

          .wj-card:hover .wj-icon-wrap {
            border-color: #0a568a;
            transform: scale(1.05);
          }

          /* ICON */
          .wj-icon-wrap img {
            width: 42px;
            height: 42px;
            object-fit: contain;
          }

          /* TEXT */
          .wj-card h4 {
            font-size: 17px;
            font-weight: 600;
            color: #2b2b2b;
          }

          /* Pagination dots */
          .swiper-pagination-bullet {
            background: #0a568a;
            opacity: 0.4;
          }

          .swiper-pagination-bullet-active {
            opacity: 1;
          }

          /* Mobile */
          @media (max-width: 768px) {
            #why-join-its {
              padding: 60px 20px;
            }

            .wj-title {
              font-size: 28px;
            }
          }

.form-custom {
    max-height: 100%;
    overflow: auto;
    padding-right: 10px;
}
.dynamic_theme_block .panel-body{
  box-shadow:unset;
}
.dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select{
  padding: 13px 5px !important;
  border-radius: 8px;
  border: 1px solid #d8dde6;
  font-size: 14px;
}
.form-group.label-floating.Mobile.country_dial_code.reg_mobile_div{flex-grow:1;}
/** End Form position section **/
.form-card .fade {opacity:1 !important;}
.modal-title{color:#fff !important;font-size: 20px;}
.modal-dialog {
    margin-top: 106px;
}


.modal-header .close{order:2}
.form-group.label-floating.reg_name_div {
    width: 50%;
    display: inline-block;
    padding-right: 10px;
    vertical-align: top;
}

.form-group.label-floating.reg_email_div.Email_email {
    width: 50%;
    display: inline-block;
}
.widget_input{flex-wrap:nowrap;}


.form-group.label-floating.field-select.reg_specialization_id_div {
    width: 50%;
    display: inline-block;
}
.dynamic_theme_block .form-custom .merge_field_div {
    margin-bottom: 0px;
}
.dynamic_theme_block .npf_cpt_new img {
    width: 100%;
    height: 48px;
    float: left;
    padding-right: 10px;
}
input#Agree,
input#LoginAgree{
    display: inline-block;
    width: auto;
    margin-right: 7px;
    vertical-align: middle;
}
.panel-heading .nav-tabs {
    border-bottom:0px;
    padding-bottom:10px;
}
.panel-heading .nav-tabs li a.active{
    padding: 14px;
        border-radius: 8px;
        background: linear-gradient(135deg, #0a568a, #0a568a) !important;
        color: #fff;
        font-weight: 600;
}
.panel-heading .nav-tabs li a{
     padding: 14px;
        border-radius: 8px;
        color: #000;
        font-weight: 600;
}
.form-group.label-floating.field-select.reg_field_how_did_you_come_to_know_about_its_div {
    width: 50%;
    display: inline-block;
    padding-right: 10px;
}

.form-group.label-floating.field-select.reg_field_pcm_div {
    width: 50%;
    display: inline-block;
}
span#otpverifylink-textMobile {
    font-size: 12px;
}
span.help-block {
    font-size: 9px !important;
    color: #f44336;
}

span.agree-condition {
    font-size: 12px;
}