  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {

      font-family: 'Codec Cold Bold Trial', Arial, sans-serif;
      line-height: 1.6;
  }

  /* vertical scrollbar  */

  /* Chrome, Edge, Safari */
  ::-webkit-scrollbar {
      width: 10px;
      /* Scrollbar width */
  }

  ::-webkit-scrollbar-track {
      background: #f0f0f0;
      /* Background of scrollbar track */
      border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
      background: #0f2248;
      /* Scrollbar thumb (draggable part) */
      border-radius: 10px;
      transition: background 0.3s;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: #0f2248;
      /* Darker color on hover */
  }

  /* Firefox */
  * {
      scrollbar-width: thin;
      /* "auto" or "thin" */
      scrollbar-color: #0f2248 #f0f0f0;
      /* thumb color track color */
  }


  /*  */

  /* banner  */


  /* ===== Responsive Behavior ===== */
  @media (max-width: 992px) {
      .banner {
          flex-direction: column !important;
          text-align: center !important;
          gap: 30px !important;
      }

      .banner-content {
          width: 100% !important;
          margin-left: 0 !important;
      }

      .banner-content h2,
      .banner-content b {
          font-size: 2.4rem !important;
      }

      .banner-content p {
          font-size: 1.5rem !important;
      }

      .button-group {
          justify-content: center !important;
          margin-left: 0 !important;
      }

      .banner-image {
          width: 100% !important;
          height: auto !important;
      }
  }

  @media (max-width: 600px) {

      .banner-content h2,
      .banner-content b {
          font-size: 1.8rem !important;
      }

      .banner-content p {
          font-size: 1.2rem !important;
      }
  }

  /*  */
  /* Contact Us Floating Form */
  /* Contact Us Form on Right Side */
  .contact-us-container {
      display: flex;
      justify-content: flex-end;
      /* push form to the right */
      margin: 40px 0;
  }

  .contact-us {
      width: 300px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      padding: 20px;
  }

  .contact-us h3 {
      margin-top: 0;
      margin-bottom: 15px;
      color: #0f2248;
      font-size: 1.5rem;
  }

  .contact-us label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
      font-size: 0.9rem;
      color: #333;
  }

  .contact-us input,
  .contact-us textarea {
      width: 100%;
      padding: 8px 12px;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 0.95rem;
      resize: none;
  }

  .contact-us button {
      background-color: #4dae46;
      color: #fff;
      border: none;
      padding: 10px 15px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s ease;
  }

  .contact-us button:hover {
      background-color: #3b8b38;
  }

  /* Responsive for small screens */
  @media (max-width: 768px) {
      .contact-us-container {
          justify-content: center;
          /* center on mobile */
      }

      .contact-us {
          width: 90%;
      }
  }


  /*  */

  /* Common course container styles */
  .course-container {
      max-width: 800px;
      width: 100%;
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      animation: fadeIn 0.6s ease-in-out;
      margin: 20px auto;
  }

  /* Headings */
  .course-container h1 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #0f2248;
  }

  .course-container h2 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: #4dae46;
  }

  /* Paragraphs */
  .course-container p {
      margin-bottom: 20px;
      font-size: 1.1rem;
      color: #333;
  }

  /* List styles */
  .course-container ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
  }

  .course-container ul li {
      background: #f0fdf4;
      margin-bottom: 10px;
      padding: 12px 16px;
      border-left: 5px solid #4dae46;
      border-radius: 8px;
      font-size: 1rem;
      transition: transform 0.2s ease, background 0.2s ease;
      cursor: default;
  }

  .course-container ul li:hover {
      transform: translateX(5px);
      background: #dcfce7;
  }

  /* Fade-in animation */
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /*  */

  .course-info ul {
      list-style: none;
      padding-left: 0;
  }

  .course-info ul li {
      background: #f0fdf4;
      margin-bottom: 10px;
      padding: 12px 16px;
      border-left: 5px solid #4dae46;
      border-radius: 8px;
      font-size: 1rem;
      transition: transform 0.2s ease;
  }

  .course-info ul li:hover {
      transform: translateX(5px);
      background: #dcfce7;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(15px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }


  /* a[href="#home"] {
            border: solid black 0px;
            color: #4dae46 !important;
            transition: color 0.3s ease;
        } */


  /* color: #4dae46 !important; */

  /* a[href="#home"]:hover {
            color: #0f2248 !important;
        } */


  /* color: #0f2248 !important; */

  .carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
      min-height: 500px;
      /* border-radius: 16px; */
      /* padding-top: 160px; */
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      /* margin: 40px auto; */
      /* background: #111; */
      /* border: 1px solid black; */
  }

  .carousel-track {
      display: flex;
      transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
      height: 100%;
  }

  .slide {
      min-width: 100%;
      height: 100%;
      display: flex;
      flex-direction: row;
      /* force left-right */
      align-items: center;
      justify-content: space-between;
      /* padding: 40px 60px; */
      /* box-sizing: border-box; */
      /* color: white; */
      /* gap: 30px; */
  }

  .slide-content {
      /* border: solid black 1px; */
      flex: 1 1 100%;
      max-width: 100%;
  }

  .slide-content h2 {
      color: #000000;
      font-size: 2.2rem;
      margin-bottom: 15px;
      font-weight: 600;
      text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.3);
  }

  .slide-content p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: rgba(68, 68, 68, 0.9);
  }

  .slide-image {
      border: solid black 1px;
      flex: 1 1 50%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }

  .slide-image img {
      max-width: 100%;
      max-height: 500px;
      border-radius: 12px;
      /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); */
      transition: transform 0.4s ease;
  }

  .slide-image img:hover {
      transform: scale(1.05);
  }

  /* Buttons */
  .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      /* Set equal width and height */
      height: 40px;
      background: white;
      border: 0.5px solid #0f2248;
      color: #0f2248;
      /* Remove quotes from color */
      font-size: 1.5rem;
      cursor: pointer;
      border-radius: 50%;
      /* Makes it a circle */
      display: flex;
      /* Center icon inside */
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: background 0.3s, transform 0.2s, color 0.3s;
  }

  .carousel-btn:hover {
      background: #0f2248;
      color: white;
      /* transform: scale(1.1); */
      /* Optional pop effect */
  }

  .prev {
      left: 20px;
  }

  .next {
      right: 20px;
  }

  /* Dots */
  .carousel-dots {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      /* border: solid black 1px; */
  }

  .dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgb(162, 162, 162);
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
  }

  .dot.active {
      background: #0f2248;
      transform: scale(1.3);
  }

  .nav-link {
      border: solid black 0px;

      color: #0f2248 !important;
      transition: color 0.3s ease;
  }

  .nav-link a {
      font-size: 10px !important;
  }

  .nav-link:hover {
      color: #4dae46 !important;
  }

  /* font-family: Arial, Helvetica, sans-serif; */

  /* box-shadow: 0 5px 15px rgba(0, 186, 81, 0.3); */

  /* Special button link */
  .nav-link.special-btn {
      background-color: #4dae46;
      color: #ffffff !important;
      padding: 8px 16px;
      border-radius: 5px;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  /* Hover effect */
  .nav-link.special-btn:hover {
      background-color: #4dae46;
      box-shadow: 0 5px 15px rgba(0, 186, 81, 0.3);
      color: #ffffff !important;
      /* font-weight: bold; */
  }

  .header {
      padding-top: 5px;
      /* border: solid red 1px; */
      background: #ffffff;
      color: #333;
      /* padding: 5px 0; */
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      /* sborder-bottom: 0px solid #4dae46; */
  }

  .nav-container {

      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      gap: 10px;

      /* border: solid black 1px; */
      /* max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px; */
  }

  .logo-section {
      border: 0px solid black;
      flex: 1;
  }

  .logo {
      display: inline-block;
  }

  .logo img {
      border: solid red 0px;
      height: 60px;
      width: auto;
      max-width: 200px;
  }

  .nav-section {
      /* flex: 2;
      display: flex;
      justify-content: center; */
      /* border: solid black 0px; */
      /* background-color: #f0f0f0; */
      border-radius: 50px;
      flex: 2 1 600px;
      /* Allows shrinking and growing */
      display: flex;
      justify-content: center;
  }

  .nav-menu {
      border-radius: 50px;
      display: flex;
      list-style: none;
      gap: 30px;
      padding-left: 30px;
      padding-right: 30px;
      align-items: center;
      background-color: #f5f5f5;
  }

  .nav-menu>li {
      position: relative;
  }

  .nav-menu>li>a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      padding: 10px 0;
      transition: color 0.3s ease;
      position: relative;
      /* border: solid black 1px; */
  }

  .nav-menu>li>a:hover {
      color: #0f2248;
      /* color: #c39044; */
  }

  .nav-menu>li.current-menu-item>a {
      color: #0f2248;
  }

  .nav-menu>li.current-menu-item-special>a {
      margin-left: auto;
      color: #0f2248;
  }

  /* Dropdown Styles */
  /* .nav-menu li.has-dropdown>a::after { */
  /* content: ''; */
  /* content: '▼'; */
  /* font-size: 10px; */
  /* margin-left: 4px; */
  /* transition: transform 0.3s ease; */
  /* } */

  .nav-menu li.has-dropdown:hover>a::after {
      transform: rotate(180deg);
  }

  .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      min-width: 300px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      border-radius: 5px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1000;
  }

  .nav-menu li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown ul {
      list-style: none;
      /* padding: 10px 0; */
  }

  .dropdown li {
      position: relative;
  }

  .dropdown li a {
      background-color: #0f2248;
      color: white;
      text-decoration: none;
      padding: 12px 20px;
      display: block;
      font-size: 14px;
      transition: all 0.3s ease;
  }

  .dropdown li a:hover {
      background-color: #4dae46;
      /* background-color: #f8f9fa; */
      color: white;
      padding-left: 25px;
  }

  /* Sub-dropdown styles */
  .dropdown li.has-subdropdown>a::after {
      content: '→';
      float: right;
      font-size: 12px;
  }

  .sub-dropdown {
      position: absolute;
      top: -300px;
      left: 100%;
      background: #ffffff;
      min-width: 300px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      border-radius: 5px;
      opacity: 0;
      visibility: hidden;
      transform: translateX(-10px);
      transition: all 0.3s ease;
  }

  .dropdown li:hover .sub-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
  }

  .login-btn {
      background: #4dae46;
      color: white;
      padding: 25px;
      /* width: 100px; */
      border-radius: 5px;
      /* text-decoration: none; */
      font-weight: 600;
      font-size: 2px;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
  }

  .login-btn:hover {
      background: #4dae46;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 186, 81, 0.3);
  }

  .login-btn svg {
      color: white;
      width: 14px;
      height: 14px;
  }

  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #333;
      font-size: 24px;
      cursor: pointer;
      padding: 5px;
  }

  .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #ffffff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      /* border-top: 1px solid #e0e0e0; */
  }

  .mobile-menu.active {
      display: block;
      animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .mobile-menu ul {
      list-style: none;
      padding: 0;
  }

  .mobile-menu>ul>li {
      border-bottom: 1px solid #f0f0f0;
  }

  .mobile-menu ul li a {
      color: #333;
      text-decoration: none;
      padding: 15px 20px;
      display: block;
      font-weight: 500;
  }

  .mobile-menu ul li a:hover {
      background-color: #f8f9fa;
      color: #0f2248;
  }

  .mobile-menu .mobile-submenu {
      background-color: #f8f9fa;
      display: none;
  }

  .mobile-menu .mobile-submenu.active {
      display: block;
  }

  .mobile-menu .mobile-submenu a {
      padding-left: 40px;
      font-size: 14px;
  }

  .mobile-menu .has-dropdown>a::after {
      content: '+';
      float: right;
      font-size: 16px;
      transition: transform 0.3s ease;
  }

  .mobile-menu .has-dropdown.active>a::after {
      transform: rotate(45deg);
  }

  .mobile-login {
      margin: 20px;
  }

  /* Demo content */
  .demo-content {
      flex: 1;
      /* padding: 20px; */
      /* padding-top: 100px; */
      /* background-color: #f1f1f1; */
      /* border: solid black 1px; */
      /* margin-top: 100px; */
      /* padding: 40px 20px; */
      /* background-color: #ffffff; */
      /* background: linear-gradient(135deg, #e0ffdf 0%, #dbdbdb 100%); */
      /* background: linear-gradient(180deg, #e0ffdf 0%, #ffffff 100%); */
      min-height: 100vh;
  }

  /*  */
  footer {
      background: #0f2248;
      color: #eee;
      padding: 40px 20px;
  }

  .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
  }

  footer h3 {
      font-size: 1.1rem;
      margin-bottom: 15px;
      color: #fff;
  }

  footer p {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0 0 10px;
  }

  footer a {
      display: block;
      color: #ffffff;
      font-size: 0.9rem;
      text-decoration: none;
      margin: 5px 0;
      transition: 0.3s;
  }

  footer a:hover {
      color: #4dae46;
  }

  .social-links a {
      display: inline-block;
      margin-right: 10px;
      font-size: 1rem;
      color: #ffffff;
  }

  .social-links a:hover {
      color: #4dae46;
  }

  .footer-bottom {
      text-align: center;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #333;
      font-size: 0.85rem;
      color: #ffffff;
  }

  /*  */

  /* Scroll indicator */
  #scrollBar {
      /* position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: #f1c40f;
            width: 0%;
            z-index: 1001;
            transition: width 0.1s; */

      /* position: fixed; */
      /* top: 0; */
      /* left: 0; */
      height: 2px;
      /* thin */
      background: #4dae46;
      /* muted gold */
      width: 0%;
      /* z-index: 1001; */
      transition: width 0.2s ease-out;
  }

  /* get in touch button */


  .cta-section {
      display: flex;
      /* justify-content: flex-end; */
      align-items: center;
      flex: 1;
  }

  .get-in-touch-btn {
      position: relative;
      display: inline-block;
      background-color: #0f2248;
      color: #ffffff;
      padding: 10px 20px;
      /* border: 1px solid #4dae46; */
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      overflow: hidden;
      transition: transform 0.3s ease;
      z-index: 1;
      white-space: nowrap;
      /* ✅ prevents line break */
  }

  .get-in-touch-btn::before {
      content: "";
      position: absolute;
      color: white;
      left: 0;
      bottom: 0;
      height: 0%;
      width: 100%;
      background-color: #4dae46;
      /* border: 2px solid #0f2248; */
      z-index: -1;
      transition: height 0.3s ease;
      border-radius: 50px;
  }

  .get-in-touch-btn:hover {
      transform: scale(1.05);
      /* Slightly larger */
      color: white;
  }

  .get-in-touch-btn:hover::before {
      height: 100%;
  }


  .banner-view-btn {
      display: flex;
      flex-direction: row;
      border: solid black 0px;
      justify-content: space-evenly;
      align-items: center;
  }



  .banner-btn {
      position: relative;
      display: inline-block;
      background-color: #4dae46;
      color: #0f2248;
      padding: 10px 20px;
      /* margin: 20px; */
      border: 1px solid #4dae46;
      border-radius: 5px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      overflow: hidden;
      transition: transform 0.3s ease;
      z-index: 1;
      white-space: nowrap;
      /* ✅ prevents line break */
  }

  .banner-btn::before {
      content: "";
      position: absolute;
      color: white;
      left: 0;
      bottom: 0;
      height: 0%;
      width: 100%;
      background-color: #4dae46;
      /* border: 2px solid #0f2248; */
      z-index: -1;
      transition: height 0.3s ease;
      border-radius: 5px;
  }

  .banner-btn:hover {
      transform: scale(1.05);
      /* Slightly larger */
      color: white;
  }

  .banner-btn:hover::before {
      height: 100%;
  }

  .banner-btn-2 {
      position: relative;
      display: inline-block;
      background-color: #ffffff;
      color: #4dae46;
      padding: 10px 20px;
      border: 1px solid #0f2248;
      border-radius: 5px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      overflow: hidden;
      transition: transform 0.3s ease;
      z-index: 1;
      white-space: nowrap;
      /* ✅ prevents line break */
  }

  .banner-btn-2::before {
      content: "";
      position: absolute;
      color: white;
      left: 0;
      bottom: 0;
      height: 0%;
      width: 100%;
      background-color: #4dae46;
      /* border: 2px solid #0f2248; */
      z-index: -1;
      transition: height 0.3s ease;
      border-radius: 5px;
  }

  .banner-btn-2:hover {
      transform: scale(1.05);
      /* Slightly larger */
      color: white;
  }

  .banner-btn-2:hover::before {
      height: 100%;
  }
  


  /*  */

  /* FONTAWESOME BUTTON */

  /* Default chevron down */
  .dropdown-icon {
      margin-left: 6px;
      transition: transform 0.3s ease;
  }

  /* Rotate on hover (chevron down → up) */
  .nav-menu li.has-dropdown:hover .dropdown-icon {
      transform: rotate(180deg);
  }

  /*  */

  /* ROTATE BUTTON */

  .rotate-icon-btn {
      /* background-color: #4dae46; */
      color: white;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* Rotate the icon on hover */
  .rotate-icon-btn:hover .icon-chevron {
      transform: rotate(180deg);
  }

  /* Icon transition for smooth rotation */
  .icon-chevron {
      transition: transform 0.3s ease;
  }

  /*  */

  /*small hiring partners */


  .small-hiring-partners {
      border: solid black 0px;
      /* padding: 5px 0; */
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 80%;
      /* gap: 25px; */
  }

  .logo-row {
      /* border: solid black 1px; */
      overflow: hidden;
      position: relative;
      width: 80%;
      height: 50px;
  }

  .small-logo-track {
      display: flex;
      width: max-content;
  }

  .small-logo-track img {
      height: 30px;
      margin: 0 30px;
      object-fit: contain;
      flex-shrink: 0;
      /* filter: grayscale(100%); */
      transition: filter 0.3s ease;
  }

  .small-logo-track img:hover {
      /* filter: grayscale(0%); */
  }

  /* Scroll right → */
  .right-scroll .small-logo-track {
      animation: scroll-right 25s linear infinite;
  }

  /* Scroll left ← */
  .left-scroll .small-logo-track {
      animation: scroll-left 25s linear infinite;
  }

  /* Animations */
  @keyframes scroll-left {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-50%);
      }
  }

  @keyframes scroll-right {
      from {
          transform: translateX(-50%);
      }

      to {
          transform: translateX(0);
      }
  }

  /*big hiring partners */



  .logo-carousel {
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 100px;
  }

  .logo-track {
      display: flex;
      width: max-content;
      /* track grows based on content */
      animation: scroll-left 30s linear infinite;
      /* slower & smoother */
  }

  .logo-track img {
      height: 80px;
      margin: 0 30px;
      object-fit: contain;
      flex-shrink: 0;
  }

  @keyframes scroll-left {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
          /* shift by half, since logos are doubled */
      }
  }

  .logo-track:hover {
      /* animation-play-state: paused; */
  }

  /* course page  */




  /*couse Hero Section */
  /* .course-hero {
      background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='none' stroke='white' stroke-opacity='0.05'><rect width='40' height='40'/> <circle cx='20' cy='20' r='5'/>  </svg>") repeat;
      background-color: #1e3c72;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
  } */

  /* Enhanced Hero Section with Side Patterns */
  .course-hero {
      /* margin-top: 100px; */
      background: white;
      /* background: linear-gradient(180deg, #0f2248 50%, #0f2248 100%); */
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      /* position: relative; */
      /* overflow: hidden; */
      border: solid black 1px;
  }

  .course-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      /* spacing between dots */
      z-index: 0;
  }


  .course-hero .overlay {
      position: relative;
      z-index: 1;
  }

  .course-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
  }

  .course-hero p {
      font-size: 1.2rem;
      font-weight: 300;
  }

  /* Course Details */
  .course-details {
      padding: 50px 20px;
      max-width: 900px;
      margin: auto;
      text-align: left;
  }

  .course-details h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
      color: #333;
  }

  .course-details ul {
      list-style: none;
      padding: 0;
  }

  .course-details li {
      font-size: 1.1rem;
      margin: 10px 0;
      padding-left: 25px;
      position: relative;
  }

  .course-details li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: green;
      font-weight: bold;
  }


  /*  */











  .courses-section {
      padding: 50px 20px;
      text-align: center;
      background: #f9f9f9;
  }

  .courses-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
  }

  /* Horizontal container */
  .courses-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      /* wraps on smaller screens */
  }

  /* Each course box */
  .course-box {
      width: 250px;
      border: 1px solid #ddd;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
  }

  .course-box:hover {
      transform: translateY(-5px);
  }

  /* Course header with background */
  .course-header {
      background: #1e3c72;
      color: #fff;
      padding: 15px;
      font-weight: bold;
      font-size: 1.2rem;
      text-align: center;
  }

  .course-body {
      padding: 20px;
      font-size: 0.95rem;
      color: #555;
  }


  /* Responsive Design */
  @media (max-width: 1024px) {
      .nav-menu {
          gap: 20px;
      }

      .nav-menu>li>a {
          font-size: 15px;
      }
  }

  @media (max-width: 768px) {

      .nav-section {
          display: none;
      }

      .phone-btn {
          display: none;
      }

      /* fab phone-btn */

      .cta-section .login-btn {
          display: none;
      }

      .mobile-menu-btn {
          display: block;
      }

      .nav-container {
          padding: 0 15px;
      }

      .demo-content {
          padding-top: 150px;
      }

      .slide {
          flex-direction: column;
          text-align: center;
          /* padding: 20px; */
      }



      .left-side-ca {
          background-color: red;
          border: solid black 1px;
          width: 50%;
          flex: 1 1 100%;
      }

      .slide-content {
          background-color: red;
          border: solid black 1px;
          width: 50%;
          flex: 1 1 100%;
      }

      .slide-image {
          border: solid black 1px;
          max-width: 50%;
          flex: 1 1 100%;
      }

      .slide-image {
          justify-content: center;
      }
  }

  @media (max-width: 480px) {
      .logo img {
          height: 35px;
      }

      .demo-content {
          padding-top: 150px;
          margin-top: 150px;
          padding: 20px 15px;
      }
  }

  @font-face {
      font-family: 'Codec Cold Bold Trial';
      src: url('../fonts/CodecPro-Bold.ttf') format('truetype');
  }

  @keyframes scroll-left {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }