    /* ====== RESET & BASE STYLES ====== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      /* Color Variables */
      --color-primary: #2563eb;
      --color-primary-light: #3b82f6;
      --color-primary-dark: #1d4ed8;
      --color-secondary: #7c3aed;
      --color-secondary-light: #8b5cf6;
      --color-secondary-dark: #6d28d9;
      --color-accent: #f97316;
      --color-accent-light: #fb923c;
      --color-accent-dark: #ea580c;
      --color-success: #10b981;
      --color-warning: #f59e0b;
      --color-error: #ef4444;
      --color-dark: #111827;
      --color-gray-900: #1f2937;
      --color-gray-800: #374151;
      --color-gray-700: #4b5563;
      --color-gray-600: #6b7280;
      --color-gray-500: #9ca3af;
      --color-gray-400: #d1d5db;
      --color-gray-300: #e5e7eb;
      --color-gray-200: #f3f4f6;
      --color-gray-100: #f9fafb;
      --color-white: #ffffff;

      /* Typography */
      --font-heading: "Montserrat", sans-serif;
      --font-body: "Poppins", sans-serif;

      /* Spacing */
      --spacing-xs: 4px;
      --spacing-sm: 8px;
      --spacing-md: 16px;
      --spacing-lg: 24px;
      --spacing-xl: 32px;
      --spacing-2xl: 48px;
      --spacing-3xl: 64px;

      /* Border Radius */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-full: 9999px;

      /* Shadow */
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);

      /* Transitions */
      --transition-fast: 0.2s ease;
      --transition-normal: 0.3s ease;
      --transition-slow: 0.5s ease;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.5;
      color: var(--color-gray-800);
      background-color: var(--color-gray-100);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: var(--spacing-md);
      color: var(--color-gray-900);
    }

    p {
      margin-bottom: var(--spacing-md);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ul,
    ol {
      list-style: none;
    }

    /* Button Styles */
    .hero-btns a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 16px;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      transition: all var(--transition-normal);
      text-align: center;
    }

    .hero-btns a {
      background-color: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-submit {
      width: 100%;
      padding: 14px 28px;
      margin-top: var(--spacing-md);
      font-size: 16px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      background: #1e5c82;
      color: white;
      border-radius: 10px;
    }

    .btn-submit::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent);
      transition: left 0.7s ease;
      z-index: -1;
    }

    .btn-submit:hover::before {
      left: 100%;
    }

    .btn-submit i {
      margin-left: var(--spacing-sm);
      transition: transform var(--transition-normal);
    }

    .btn-submit:hover i {
      transform: translateX(4px);
    }

    /* Section Styles */
    section {
      position: relative;
    }

    .section-header {
      text-align: center;
      /*        margin-bottom: var(--spacing-2xl);*/
    }

    .section-header h2 {
      text-transform: capitalize !important;
      font-size: 32px;
      position: relative;
      display: inline-block;
      color: #1e5c82;
    }

    .section-header p {
      font-size: 1.1rem;
      color: black !important;
      max-width: 600px;
      margin-bottom: 30px !important;
    }

    /* ====== HERO BANNER STYLES ====== */
    .hero-banner {
      background: #0b5176;
      color: var(--color-white);
      /*        padding: 35px 0 100px;*/
      position: relative;
      overflow: hidden;
    }

    .hero-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("https://images.pexels.com/photos/7130560/pexels-photo-7130560.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1") center/cover no-repeat;
      opacity: 0.1;
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }

    .hero-text {
      flex: 1;
      max-width: 600px;
    }

    .hero-text h1 {
      font-size: 1.8rem;
      color: var(--color-accent-light);
      margin-bottom: var(--spacing-sm);
    }

    .hero-text h2 {
      text-transform: capitalize !important;
      font-size: 38px;
      font-weight: 700;
      margin-bottom: var(--spacing-md);
      color: var(--color-white);
    }

    .hero-text h2 span {
      color: var(--color-accent);
      position: relative;
      z-index: 1;
    }

    .hero-text h2 span::after {
      content: "";
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 10px;
      background-color: rgba(249, 115, 22, 0.3);
      z-index: -1;
    }

    .hero-text p {
      font-size: 1.1rem;
      margin-bottom: var(--spacing-lg);
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      padding-bottom: 20px;
    }

    .hero-btns {
      display: flex;
      gap: var(--spacing-md);
    }

    .hero-image {
      flex: 1;
      max-width: 500px;
      position: relative;
    }

    .image-container {
      position: relative;
      z-index: 2;
    }

    .image-container img {
      width: 100%;
      height: auto;
    }

    .floating-card {
      position: absolute;
      background-color: var(--color-white);
      border-radius: var(--radius-md);
      padding: var(--spacing-sm) var(--spacing-md);
      display: flex;
      align-items: center;
      gap: var(--spacing-sm);
      box-shadow: var(--shadow-lg);
      animation: float 6s ease-in-out infinite;
      z-index: 3;
    }

    .floating-card i {
      color: #235b7f;
      font-size: 1.2rem;
    }

    .floating-card span {
      font-weight: 600;
      color: var(--color-gray-800);
    }

    .card-1 {
      top: 22%;
      left: 5%;
      animation-delay: 0s;
    }

    .card-2 {
      bottom: 12%;
      left: 16%;
      animation-delay: 1s;
    }

    .card-3 {
      top: 45%;
      right: -4%;
      animation-delay: 2s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    .wave-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      line-height: 0;
      z-index: 1;
    }

      .wave-bottom svg {
      width: 100%;
      height: 70px;
      display: none !important;
    }
      section.hero-banner .container {
      padding-bottom: 0px !important;
    }

    /* ====== TESTIMONIAL STYLES ====== */
    .testimonials {
      background-color: var(--color-gray-100);
      overflow: hidden;
      height: auto !important;
    }

    .testimonial-item {
      height: auto !important;
    }

    .testimonial-slider {
      position: relative;
      max-width: 100%;
      margin: 0 auto;
      overflow: hidden;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .testimonial-item {
      width: 33.333%;
      flex-shrink: 0;
      padding: var(--spacing-md);
    }

    .testimonial-content {
      background-color: var(--color-white);
      border-radius: var(--radius-lg);
      padding: var(--spacing-xl);
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .quote-icon {
      position: absolute;
      top: var(--spacing-md);
      left: var(--spacing-md);
      font-size: 90px;
      color: #1e5c821c;
      z-index: 0;
    }

    .testimonial-content p {
      position: relative;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: var(--spacing-xl);
      color: var(--color-gray-700);
      z-index: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: var(--spacing-md);
    }

    .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #1e5c82;
    }

    .testimonial-author h4 {
      text-transform: capitalize !important;
      font-size: 1.1rem;
      margin-bottom: 2px;
    }

    .testimonial-author p {
      font-size: 0.9rem;
      color: var(--color-gray-600);
      margin-bottom: var(--spacing-xs);
    }

    .rating {
      display: flex;
      gap: 2px;
    }

    .rating i {
      color: var(--color-warning);
    }

    .testimonial-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: var(--spacing-xl);
      gap: var(--spacing-md);
    }

    .control-prev,
    .control-next {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--color-white);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1e5c82;
      cursor: pointer;
      transition: all var(--transition-normal);
      box-shadow: var(--shadow-sm);
    }

    .control-prev:hover,
    .control-next:hover {
      background-color: #1e5c82;
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .testimonial-dots {
      display: flex;
      gap: var(--spacing-sm);
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--color-gray-300);
      cursor: pointer;
      transition: all var(--transition-normal);
    }

    .dot:hover {
      background-color: var(--color-gray-500);
    }

    .dot.active {
      background-color: #1e5c82;
      width: 30px;
      border-radius: 10px;
    }

    /* ====== CONTACT SECTION STYLES ====== */
    .contact {
      background-color: var(--color-white);
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: var(--spacing-2xl);
      align-items: center;
    }

    .contact-info {
      padding-right: var(--spacing-xl);
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-lg);
    }

    .info-item i {
      width: 45px;
      height: 45px;
      background-color: rgba(37, 99, 235, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #1e5c82;
      flex-shrink: 0;
    }

    .info-item h4 {
      font-size: 1.1rem;
      margin-bottom: var(--spacing-xs);
    }

    .info-item p {
      color: var(--color-gray-600);
      margin-bottom: 0;
      line-height: 1.5;
    }

    .register-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-md);
      margin-top: var(--spacing-xl);
      border-top: 1px solid var(--color-gray-200);
      padding-top: var(--spacing-xl);
    }

    .stat-item {
      text-align: center;
    }

    .stat-item h3 {
      font-size: 2rem;
      color: var(--color-primary);
      margin-bottom: 0;
    }

    .stat-item p {
      font-size: 0.9rem;
      color: var(--color-gray-600);
      margin-bottom: 0;
    }

    .contact-form {
      background-color: var(--color-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
      padding: var(--spacing-xl);
      border: 1px solid var(--color-gray-200);
      position: relative;
      z-index: 2;
    }

    .form-header {
      display: flex;
      align-items: center;
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-lg);
      text-align: center;
      justify-content: center;
    }

    .form-icon {
      width: 45px;
      height: 45px;
      background: #1e648a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-icon i {
      color: var(--color-white);
      font-size: 1.2rem;
    }

    .form-header h3 {
      margin-bottom: 0;
      font-size: 20px;
    }

    .form-group {
      margin-bottom: var(--spacing-md);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-md);
    }

    label {
      display: block;
      margin-bottom: var(--spacing-xs);
      font-weight: 500;
      color: var(--color-gray-800);
      font-size: 14px;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid var(--color-gray-300);
      border-radius: var(--radius-md);
      font-family: var(--font-body);
      font-size: 14px;
      transition: all var(--transition-normal);
      background-color: var(--color-gray-100);
      color: var(--color-gray-800);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--color-primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

    textarea {
      min-height: 70px;
      resize: vertical;
    }

    .required {
      color: var(--color-error);
    }

    .checkbox-group {
      display: flex;
      align-items: center;
      gap: var(--spacing-sm);
    }

    .checkbox-group input {
      width: auto;
    }

    .checkbox-group label {
      margin-bottom: 0;
    }

    /* ====== ANIMATION CLASSES ====== */
    .reveal-up,
    .reveal-left,
    .reveal-right {
      opacity: 0;
      visibility: hidden;
      transition: all 0.6s ease;
    }

    .reveal-up {
      transform: translateY(30px);
      transition-delay: calc(var(--delay, 0) * 1ms);
    }

    .reveal-left {
      transform: translateX(-50px);
    }

    .reveal-right {
      transform: translateX(50px);
    }

    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
      opacity: 1;
      visibility: visible;
      transform: translate(0);
    }

    /* about css start */
    .about-section {
      background-color: #0b5176;
      color: #ffffff;
      padding: 14px 20px;
      padding-bottom: 0;
    }

    .about-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 70px;
      align-items: center;
    }

    .about-images {
      position: relative;
      flex: 1 1 400px;
    }

    .main-image {
      width: 100%;
      height: 100%;
      max-height: 400px;
      object-fit: contain;
    }

    .overlay-image {
      position: absolute;
      bottom: -30px;
      width: 55%;
      border: 6px solid white;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      right: 0;
    }

    .about-content {
      flex: 1 1 500px;
    }

    .section-label {
      text-transform: uppercase;
      color: #ffd700;
      font-weight: bold;
      font-size: 14px;
      margin-bottom: 10px;
      display: inline-block;
    }

    .main-heading {
      text-transform: capitalize !important;
      font-size: 32px;
      line-height: 1.4;
      margin-bottom: 20px;
      color: white;
    }

    .main-heading span {
      color: #ffd700;
    }

    .description {
      font-size: 16px;
      margin-bottom: 25px;
    }

    .about-section .features {
      list-style: none;
      margin-bottom: 30px;
      background: none;
      padding: 0;
      padding-block: 5px;
    }

    .about-section .features li {
      margin-bottom: 18px;
      font-size: 17px;
      line-height: 1.5;
      padding-bottom: 10px;
    }

    .about-section .features i {
      color: #ffd700;
      margin-right: 10px;
      font-size: 18px;
    }

    .about-section .features strong {
      display: inline-block;
      margin-bottom: 4px;
    }

    .about-section .btn-yellow {
      background-color: #ffc107;
      color: #000;
      padding: 12px 24px;
      text-decoration: none;
      font-weight: 600;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .about-section .btn-yellow:hover {
      background-color: #e0a800;
    }

    .b24-form-btn {
      background-color: #0f58d0;
      background-color: #095075 !important;
    }

    .b24-form-wrapper.b24-form-border-bottom {
      border-bottom: 5px solid rgb(9 80 117) !important;
    }

    /* training section css start */
    .training-section {
      background: linear-gradient(rgb(11 81 118 / 73%), rgb(10 66 96 / 57%)),
        url(https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      padding: 80px 20px;
      text-align: center;
    }

    .section-header h2 {
      font-size: 30px;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-header p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
      line-height: 1.6;
    }

    .stats-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .stat-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 40px 30px;
      width: 220px;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-box:hover {
      transform: translateY(-10px);
      background: rgba(78, 154, 241, 0.2);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .stat-number {
      font-size: 25px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 16px;
      opacity: 0.9;
      letter-spacing: 1px;
    }

    .plus-sign {
      vertical-align: super;
      font-size: 1.5rem;
    }

    /* benifit css start */

    .benefits-section {
      padding: 45px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
    }

    .section-header h2 {
      font-size: 30px;
      color: var(--dark-color);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-header p {
      color: #666;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .benefits-slider {
      position: relative;
    }

    .benefit-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      margin: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      text-align: center;
      height: 320px;
      display: flex !important;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
      width: 80px;
      height: 80px;
      background: #0b5176;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      color: white;
      font-size: 30px;
      box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
    }

    .benefit-card h3 {
      text-transform: capitalize !important;
      font-size: 20px;
      color: var(--dark-color);
      margin-bottom: 15px;
      position: relative;
    }

    .benefit-card p {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .benefit-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: #0b5176;
    }

    /* Slick slider custom styles */
    .slick-prev,
    .slick-next {
      width: 50px;
      height: 50px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
      z-index: 1;
      transition: all 0.3s ease;
    }

    .slick-prev:hover,
    .slick-next:hover {
      background: var(--primary-color);
      color: white;
    }

    .slick-prev {
      left: -25px;
    }

    .slick-next {
      right: -25px;
    }

    .slick-prev:before,
    .slick-next:before {
      color: #0b5176 !important;
      font-size: 24px;
      opacity: 1;
    }

    .slick-prev:hover:before,
    .slick-next:hover:before {
      color: white;
    }

    .slick-dots {
      bottom: -50px;
    }

    .slick-dots li button:before {
      font-size: 10px;
      color: var(--primary-color);
    }

    .slick-dots li.slick-active button:before {
      color: #0b5176;
    }

    .courses-section {
      padding: 25px 20px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
    }

    .section-header h2 {
      font-size: 34px;
      color: var(--dark-color);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
      font-weight: 700;
    }

    .courses-slider {
      position: relative;
      padding: 20px 0;
    }

    .slick-dots li button:before {
      font-size: 10px !important;
    }

    .slick-dots li.slick-active button:before {
      color: #095075 !important;
    }

    .course-card {
      height: 100%;
      max-height: 410px !important;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      /*        margin: 15px;*/
      /*        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);*/
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .course-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .main-headd-row h4 {
      font-size: 20px;
    }

    .main-headd-row h2 {
      font-size: 32px !important;
    }

    h3.course-title {
      font-size: 20px !important;
    }

    .course-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right,
          var(--primary-color),
          var(--accent-color));
    }

    .course-icon {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 50px;
      height: 50px;
      background: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      z-index: 2;
      color: #095075;
      font-size: 1.4rem;
    }

    .course-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .course-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .course-card:hover .course-img img {
      transform: scale(1.1);
    }

    .course-category {
      position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      color: black;
      padding: 6px 18px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 2;
    }

    .course-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    section#courses a {
    text-decoration: none !important;
}

    .course-content h3 {
      text-transform: capitalize !important;
      font-size: 21px;
      color: black !important;
      font-weight: 600;
      position: relative;
      padding-bottom: 10px;
    }

    .section-header.left-align {
      text-align: start;
      padding-bottom: 34px;
    }

    /* .course-content h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: var(--secondary-color);
      } */

    .course-content p {
      color: #666;
      margin-bottom: 25px;
      flex: 1;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .course-features {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .feature {
      display: flex;
      align-items: center;
      background: #0950751c;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      color: black;
    }

    .feature i {
      margin-right: 5px;
      font-size: 0.7rem;
    }

    .course-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }

    .course-icon i {
      display: flex;
      justify-content: center;
      align-items: center;
      line-height: 15px;
      text-align: center;
      font-size: 30px;
      color: black;
      background: none;
      border-radius: 1px;
      margin-bottom: 0px;
    }

    .course-price {
      font-weight: 700;
      font-size: 1.4rem;
    }

    .course-price span {
      font-size: 0.9rem;
      color: #999;
      text-decoration: line-through;
      margin-left: 5px;
      font-weight: 400;
    }

    .section-header h6 {
      font-size: 20px;
      color: #095075;
    }

    .enroll-btn {
      background: #095075;
      color: white;
      border: none;
      padding: 10px 25px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    }

    .enroll-btn i {
      margin-left: 8px;
      font-size: 0.9rem;
    }

    .enroll-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    }

    .slick-prev,
    .slick-next {
      width: 50px;
      height: 50px;
      z-index: 1;
      background: white;
      border-radius: 50%;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .slick-prev:hover,
    .slick-next:hover {
      background: #095075;
    }

    .slick-prev {
      left: -25px;
    }

    .slick-next {
      right: -25px;
    }

    .slick-prev:before,
    .slick-next:before {
      color: #095075;
      font-size: 22px;
      opacity: 1;
      transition: all 0.3s ease;
    }

    .slick-prev:hover:before,
    .slick-next:hover:before {
      color: white;
    }

    .slick-dots {
      bottom: -40px;
    }

    .slick-dots li button:before {
      font-size: 12px;
      color: var(--secondary-color);
      opacity: 0.5;
    }

    .slick-dots li.slick-active button:before {
      color: #095075;
      opacity: 1;
    }

    .main-headd-row h4 {
      color: #23597d !important;
    }

    .contact .container {
      padding-top: 20px !important;
      margin-top: 0px;
    }

    .main-headd-row h2 {
      color: black !important;
      text-transform: capitalize !important;
    }

    @media (max-width: 992px) {
      .section-header h2 {
        font-size: 2.4rem;
      }

      .course-img {
        height: 180px;
      }

      .course-content {
        padding: 25px;
      }

      .slick-prev {
        left: -15px;
      }

      .slick-next {
        right: -15px;
      }
    }

    @media (max-width: 768px) {
      .section-header h2 {
        font-size: 2rem;
      }

      .section-header p {
        font-size: 1rem;
      }

      .course-card {
        margin: 10px;
      }

      .course-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
      }

      .course-content h3 {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 576px) {
      .section-header h2 {
        font-size: 1.8rem;
      }

      .course-img {
        height: 160px;
      }

      .course-content {
        padding: 20px;
      }

      .slick-prev,
      .slick-next {
        width: 40px;
        height: 40px;
      }

      .slick-prev:before,
      .slick-next:before {
        font-size: 18px;
      }
    }

    @media (max-width: 768px) {
      .section-header h2 {
        font-size: 2rem;
      }

      .stats-container {
        gap: 20px;
      }

      .stat-box {
        width: 160px;
        padding: 30px 20px;
      }

      .stat-number {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 576px) {
      .training-section {
        padding: 60px 15px;
      }

      .stats-container {
        flex-direction: column;
        align-items: center;
      }

      .stat-box {
        width: 100% !important;
        max-width: 100% !important;
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-container {
        flex-direction: column;
        text-align: center;
      }

      .overlay-image {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        width: 80%;
      }

      .about-content {
        padding-top: 20px;
      }
    }

    /* ====== RESPONSIVE STYLES ====== */
    @media (max-width: 1042px) {
      .overlay-image {
        width: 36%;
      }

      .main-image {
        object-fit: contain;
        max-height: 600px;
      }

      .hero-text h2 {
        font-size: 28px;
      }

      .floating-card {
        transform: scale(0.9);
      }

      .card-1 {
        left: 10%;
      }

      .card-3 {
        right: 8%;
      }

      .contact-wrapper {
        gap: var(--spacing-xl);
      }
    }

    @media (max-width: 991px) {
      .hero-content {
        flex-direction: column;
        gap: var(--spacing-2xl);
        text-align: center;
      }

      .hero-text {
        max-width: 100%;
      }

      .hero-btns {
        justify-content: center;
      }

      .hero-image {
        max-width: 400px;
      }

      .contact-wrapper {
        grid-template-columns: 1fr;
      }

      .contact-info {
        padding-right: 0;
        order: 2;
      }

      .contact-form {
        order: 1;
      }

      .section-header.left-align {
        text-align: center;
      }

      .section-header.left-align p {
        margin: 0 auto;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
      }

      .footer-logo {
        text-align: center;
      }

      .social-links {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .main-image {
        object-fit: contain;
        height: auto;
      }

      .about-container {
        gap: 20px;
      }

      .about-section {
        padding-top: 30px !important;
        padding: 5px 20px;
      }

      .overlay-image {
        width: 100%;
      }

      .header-content {
        padding: var(--spacing-sm) 0;
      }

      .hero-text h1 {
        font-size: 1.5rem;
      }

      .hero-text p {
        font-size: 1rem;
      }

      .floating-card {
        display: none;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

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

      .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
      }
    }

    @media (max-width: 576px) {
      .slick-prev {
        left: -10px !important;
      }

      .slick-next {
        right: -12px !important;
      }

      .contact-form {
        padding: 0px;
      }

      .courses-section {
        padding: 0 20px;
      }

      .section-header h2 {
        font-size: 26px;
      }

      .hero-btns a {
        max-width: 100%;
        margin: 0 auto;
      }

      .main-heading {
        font-size: 26px;
      }

      .trainers {
        padding: 0;
        padding-top: 50px;
      }

      .overlay-image {
        width: 100%;
      }

      .hero-text h2 {
        font-size: 26px;
      }

      .hero-btns {
        flex-direction: column;
        gap: var(--spacing-md);
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      .courses-grid {
        grid-template-columns: 1fr;
      }

      .trainers-grid {
        grid-template-columns: 1fr;
      }

      .register-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
      }
    }

    /*   new css by issue    */
    .footer-inner h4 {
      color: white;
    }

    .testimonial-content {
    height: auto !important;
    min-height: 420px !important;
}

    .benefit-card {
      height: auto !important;
      min-height: 320px !important;
    }

    section.training-section p {
      color: white !important;
    }

.b24-form-inner-box {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: white !important;
}
.b24-form-btn.b24-form-btn-border {
    background-color: #095075 !important;
    color: white !important;
}
.b24-form-success-icon {
    filter: hue-rotate(45deg) !important;
}
.b24-form-state-container .b24-form-success {
    background-color: white !important;
    border-radius: 18px !important;
}
.b24-form-wrapper.b24-form-border-bottom .b24-form-state-container .b24-form-loader, .b24-form-wrapper.b24-form-border-bottom .b24-form-state-container .b24-form-state {
    bottom: 0px !important;
}
.testimonial-dots {
    display: none !important;
}
.main-headd-row h4 {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
}
.main-headd-row h2 {
    font-size: 28px;
    font-weight: 600;
}





  