section.video-page-main img {
    width: 100%;
    border-radius: 10px;
}
      /* ====== RESET & BASE STYLES ====== */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        /* 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);
      }

      a {
        text-decoration: none;
        color: var(--color-primary);
        transition: color var(--transition-normal);
      }

      a:hover {
        color: var(--color-primary-dark);
      }

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

      ul,
      ol {
        list-style: none;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
      }

      /* 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.training-section p {
        color: white;
      }
      .section-header {
        text-align: center;
        margin-bottom: var(--spacing-2xl);
      }

      .section-header h2 {
        font-size: 32px;
        margin-bottom: var(--spacing-sm);
        position: relative;
        display: inline-block;
        color: #1e5c82;
      }

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

      /* ====== HERO BANNER STYLES ====== */
     .hero-banner {
    background: #0b5176;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
/*    margin-top: -20px !important;*/
}

      .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 {
        color: white !important;
        text-transform: capitalize !important;
        font-size: 34px;
        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: 590px;
        position: relative;
      }

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

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

      .floating-card {
        position: absolute;
        background-color: white !important;
        border-radius: var(--radius-md);
        padding: var(--spacing-sm) var(--spacing-md);
        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: black;
        font-size: 14px;
      }
      ul.sub-points {
        margin-top: 5px;
      }
      .card-1 {
        top: 34%;
        left: 18%;
        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;
      }
      .sub-points li {
        color: black !important;
        margin: 0;
        font-size: 13px;
        padding-bottom: 4px;
        font-weight: 500;
      }


/*  blog page css start    */
h4.blog-list-title {
    text-transform: capitalize !important;
}
.blog-list-link a {
    text-transform: capitalize !important;
}
h2.heading-2 {
    text-transform: capitalize !important;
}
h4.main-sub-headingg {
text-transform: capitalize !important;
}
.blog-single-content h2 {
text-transform: capitalize !important;
}
.blog-single-content h3 {
text-transform: capitalize !important;
}
.blog-list-image-inner {
    padding-bottom: 50% !important;
}
.btn.btn-text {
    font-size: 18px !important;
    text-decoration: underline;
}
.blog-list-image-inner img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    height: 100% !important;
}









      /* ====== RESPONSIVE STYLES ====== */
      @media (max-width: 1042px) {
        .card-3 {
          right: 2%;
        }
        .hero-text h2 {
          font-size: 28px;
        }

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

      @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;
        }

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

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

      @media (max-width: 768px) {
        .hero-text h1 {
          font-size: 1.5rem;
        }

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

        .floating-card {
          display: none;
        }
      }

      @media (max-width: 576px) {
        .hero-btns a {
          max-width: 100%;
          margin: 0 auto;
        }

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

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

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