 @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap'); 
    * {
      margin: 0px;
      padding: 0px;
      box-sizing: border-box;
    }

    :root {
      --primary: #ff8006;
      --secondary: #00c3ff;

      --dark: #0a0a2a;
      --light: #f8f9ff;
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #141313;
      color: var(--light);
      overflow-x: hidden;
      /* background-image: url(../img/maac-body.webp); */
      position: relative;
    }

a {
  color: #ffc107;               /* Bootstrap warning yellow */
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  font-weight: 500;
}

a:hover, a:focus {
  color: #ffca2c;               /* Slightly lighter on hover */
  text-shadow: 0 0 5px rgba(255, 193, 7, 0.4);
  text-decoration: underline;
  outline: none;
}

    p {
      text-align: justify;
    }

    /* Animation Background Elements */
    .bg-element {
      position: absolute;
      z-index: -1;
      opacity: 0.7;
    }

    .bg-element.circle {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--accent), transparent);
      filter: blur(40px);
      top: 10%;
      left: 5%;
      animation: float 12s infinite ease-in-out;
    }

    /* .bg-element.triangle {
      width: 200px;
      height: 200px;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      top: 70%;
      right: 10%;
      animation: rotate 20s infinite linear;
      opacity: 0.3;
      filter: blur(30px);
    } */

    @keyframes float {

      0%,
      100% {
        transform: translate(0, 0);
      }

      50% {
        transform: translate(20px, -30px);
      }
    }

    @keyframes rotate {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    /* Header Styles */
    header {
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
      background: linear-gradient(258deg, #ec6a1f00, #ec6a1f);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo-icon {
      font-size: 2.5rem;
      color: var(--primary);
      animation: pulse 2s infinite;
    }

    .logo-text {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 1.8rem;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .logo-text span {
      display: block;
      font-size: 1rem;
      letter-spacing: 3px;
      color: var(--light);
    }

    nav ul {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    nav a {
      text-decoration: none;
      color: #f7ff00;
      font-weight: 500;
      font-size: 1.1rem;
      transition: var(--transition);
      position: relative;
    }

    nav a:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, var(--dark), #c8923c);
      transition: var(--transition);
    }

    nav a:hover {
      color: #fff;
    }

    nav a:hover:after {
      width: 100%;
    }

    .cta-button {
      background: #ff7b39;
      color: white;
      border: none;
      padding: 12px 28px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 
    8px 8px 15px rgba(0, 0, 0, 0.1),inset 
    -8px -8px 15px rgba(0, 0, 0, 0.7);
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 1px 1px 6px rgb(255 255 255);
    }

    @keyframes zoomInOut {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.1);
      }
    }

    .hero {
  background: linear-gradient(
      90deg,
      rgba(22, 18, 18, 0.7),
      rgba(7, 4, 4, 0.36)
    ),
    url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 5% 8rem;
  /*min-height: 90vh;*/
  position: relative;
  overflow: hidden;
  animation: zoomInOut 15s ease-in-out infinite;
  transform-origin: center;
}


    .hero-content {
      text-align: center;
      margin: 0px auto;
      max-width: 793px;
      padding: 90px 0px;

    }

    .hero h2.desktop-content.desktop-content {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      font-family: 'Rajdhani', sans-serif;
      text-transform: uppercase;
    }

    .hero h2.desktop-content.desktop-content span {
      background: #f28511;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

.mobile-content {
  font-family: 'Orbitron', sans-serif;
  line-height: 1.3;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 1.5rem 1rem;
  position: relative;
  text-shadow:
    0 0 6px rgba(242, 177, 17, 0.2),
    0 0 12px rgba(151, 31, 36, 0.3),
    1px 1px 3px rgba(0, 0, 0, 0.7);
   display:none;
}

.mobile-content span {
  background: yellow;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 5px rgba(242, 177, 17, 0.3),
    0 0 10px rgba(151, 31, 36, 0.3);
}
@media screen and (max-width:575px){
    .mobile-content{
     transform:translateY(150%);
}
.career .accordion-header{
    
}
.career .accordion-header {
    font-size:10px!important;
      padding: 10px;
      text-align:Center;
    }
.career .accordion-header::after {
      content: unset!important;
    }
.career .card-image {
      width: 100%;
      height: 150px!important;
      /* Fixed height for images */
      overflow: hidden;
      transition: height 0.3s ease;
      /* Smooth transition for height change */
    }
    .main-h1{
    top: 100%;
    left:0%;
    right:0%;
    position: absolute;
}
}

.mobile-content::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #f2b111;
  border-radius: 3px;
  opacity: 0.6;
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scaleX(1.3);
    opacity: 1;
  }
}


    .hero p {
      font-size: 1.2rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      color: rgba(255, 255, 255, 0.9);

    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 2rem;
    }

    .secondary-button {
      background: transparent;
      color: white;
      border: 2px solid #df7116;
      padding: 12px 28px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .secondary-button:hover {
      background: rgba(0, 195, 255, 0.1);
      transform: translateY(-3px);
    }

    .hero-visual {
      /* flex: 1;
            display: flex;
            justify-content: center;
            align-items: center; */
      position: relative;
      z-index: 1;
    }



    .animated-element {
      position: absolute;
      border-radius: 50%;
      animation: float 8s infinite ease-in-out;
      filter: blur(1px);
    }

    .element-1 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, #ff80067a, transparent 70%);
      top: -480px;
      left: -21px;
      animation-duration: 15s;
      opacity: 0.7;
      position: absolute;
    }

    .element-2 {
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, #212425, transparent 70%);
      bottom: -117px;
      right: 266px;
      animation-duration: 12s;
      animation-delay: 1s;
      opacity: 0.5;

    }

    .element-3 {
      width: 150px;
      height: 150px;

      background: radial-gradient(circle, #a0a4b3, transparent 70%);
      top: -321px;
      left: 82%;
      animation-duration: 10s;
      animation-delay: 2s;
      opacity: 0.6;
    }

    .floating-text {
      position: absolute;
      font-size: 1.5rem;
      font-weight: 700;
      animation: floatText 10s infinite linear;
      color: white;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
      opacity: 0.9;
    }

    .text-1 {
      top: -277px;
      left: 87%;
      animation-delay: 0s;
    }

    .text-2 {
      top: 236%;
      left: 71%;
      animation-delay: 2s;

    }

    .text-3 {
      top: 400px;
      left: 300px;
      animation-delay: 4s;
    }

    .text-4 {


      top: -342px;
      left: 55px;
      animation-delay: 6s;
    }

    .text-5 {
      top: -411px;
      left: 50px;
      animation-delay: 8s;
    }

    @keyframes floatText {
      0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
      }

      50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 1;
      }

      100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
      }
    }

    /* Banner Form */
    .banner-form {
      background: linear-gradient(135deg, #d17225, #0a0a2a);
      border-radius: 20px;
      padding: 40px;
      margin: -80px auto 80px;
      max-width: 1100px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
      position: relative;
      z-index: 10;
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
    }

    .banner-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,0 100,100" fill="rgba(156, 39, 176, 0.1)"/></svg>');
      background-size: cover;
      z-index: -1;
    }

    .form-container {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .form-content {
      flex: 1;
    }

    .form-content h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      font-family: 'Rajdhani', sans-serif;
      text-transform: uppercase;
    }

    .form-content h2 span {
      color: #000;
    }

    .form-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
    }

    .assurance-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .assurance-item {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .assurance-icon {
      border-radius: 50%;
      background: rgb(255 251 255);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 17px;
      color: #0e0c0c;
      padding: 12px 12px;
    }

    .assurance-text {
      font-weight: 500;
    }

    .form-wrapper {
      flex: 1;
      background: rgb(14 12 12);
      border-radius: 15px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-wrapper h3 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.5rem;
      color: #f2b111;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 14px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: #ffff;
      color: #7c7c7c;
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 2px rgba(255, 77, 148, 0.3);
    }

    .form-submit {
       background: linear-gradient(135deg, #a93b00, #e76a11);
      color: white;
      border: none;
      padding: 16px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1px;
      width: 100%;
      margin-top: 10px;
      box-shadow: 0 5px 15px rgba(255, 77, 148, 0.4);
    }

    .form-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 77, 148, 0.6);
    }



    /* Testimonials */


    .split-slider-section {
      padding: 2rem 5%;
      position: relative;
    }

    .section-header2 {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-header2 h2 {
      font-size: 2.5rem;
      color: white;
      margin-bottom: 1rem;
    }

    .section-header2 h2 span {
      color: #ffcc00;
    }

    .section-header2 p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.1rem;
      max-width: 700px;
      text-align: center;
      margin: 0 auto;
    }

    .split-slider-container {
      display: flex;
      gap: 30px;
      margin-top: 20px;
    }

    .slider-side {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    /* Testimonial Side Styles */
    .testimonial-side {

      border-radius: 20px;
      padding: 30px;
    }

    /* Employee Side Styles */
    .employee-side {

      border-radius: 20px;
      padding: 30px;
    }
.testimonialSwiper {
  width: 100%;
  height: 100%;
}



    /* Testimonial Card */
    .testimonial-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      padding: 20px;
      height: 250px;
      max-height:100%;
      border: 1px solid #e76a11;
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      border-color: #e76a11;
    }

    .testimonial-content {
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.9);
      position: relative;
      padding-left: 20px;
    }

    .testimonial-content:before {
      content: '"';
      position: absolute;
      left: 0;
      top: -10px;
      font-size: 3rem;
      color: var(--primary);
      opacity: 0.3;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-weight: bold;
      flex-shrink: 0;
    }

    .author-info h4 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: white;
    }

    .author-info p {
      color: var(--secondary);
      font-size: 0.9rem;
    }

    .rating {
      color: #ffcc00;
      font-size: 1rem;
      margin-top: 5px;
    }

    /* Employee Card */
    .employee-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: white;
      padding: 70px 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      height: 400px;
      border: 1px solid #8f1e22;
      transition: transform 0.3s ease;
    }

    .employee-card:hover {
      transform: translateY(-5px);
      border-color: #8f1e22;
    }

    .employee-image {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      border: 3px solid var(--primary);
      margin-bottom: 20px;
      object-fit: cover;
    }

    .employee-info h3 {
      font-size: 1.3rem;
      margin-bottom: 5px;
      color: #ffcc00;
    }

    .position {
      font-weight: 600;
      margin-bottom: 15px;
      font-size: 0.95rem;
      text-align: center;
    }

    .experience {
      font-size: 0.98rem;
      color: var(--light);
      margin-bottom: 15px;
      text-align: center;
    }

    .expertise {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .expertise span {
      background: rgba(255, 255, 255, 0.1);
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
    }

    /* Swiper Navigation */
    .swiper-button-next,
    .swiper-button-prev {
      color: #681a1d;
      background: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      backdrop-filter: blur(5px);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 1.2rem !important;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .split-slider-container {
        flex-direction: column;
        gap: 20px;
      }

      .slider-side {
        width: 100%;
      }

      .section-header h2 {
        font-size: 2rem;
      }
    }


    /* Assurance Section */
    .assurance-section {
      padding: 2rem 5%;

      position: relative;
      overflow: hidden;
    }

    .assurance-section .container {
      max-width: 1600px;
      margin: 0px auto;
    }

    .assurance-grid-full {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      text-align: center;
    }

    .assurance-card {
      padding: 30px;
      border-radius: 20px;
      background: linear-gradient(45deg, #e76a11e0, #e76a11cc);
      backdrop-filter: blur(10px);
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .assurance-card:hover {
      transform: translateY(-10px);
      /* background: rgba(255, 255, 255, 0.1); */
      border-color: #e7a811;
    }

    .assurance-card i {
      font-size: 3.5rem;
      color: #b62228;
      padding: 12px;
      border-radius: 12px;
      border: 1px solid #fff;
      background: #fffbff;
      margin-bottom: 20px;
    }


    .assurance-card h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      font-family: 'Rajdhani', sans-serif;
    }

    .assurance-card p {
      color: rgba(255, 255, 255, 0.8);
    }

    .cta-button1 {
      background: linear-gradient(45deg, #c98436, #921e23);
      color: #171111;
      border: none;
      padding: 12px 28px;
      border-radius: 30px;
      font-weight: 600;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 5px 15px rgb(255 255 255);
    }



    /* Video Showcase Styles */
    .video-showcase {
      margin-top: 60px;
      position: relative;
      z-index: 2;
    }

    .video-container {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .video-wrapper {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
      transition: var(--transition);
    }

    .video-wrapper:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    }

    .video-wrapper iframe {
      width: 100%;
      height: 280px;
      border: none;
      display: block;
    }

    .video-caption {
      background: linear-gradient(to right, var(--primary), var(--secondary));
      color: white;
      text-align: center;
      padding: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Responsive Videos */
    @media (max-width: 768px) {
      .video-container {
        flex-direction: column;
        align-items: center;
      }

      .video-wrapper {
        max-width: 100%;
      }

      .video-wrapper iframe {
        height: 220px;
      }
    }

    @media (max-width: 480px) {
      .video-wrapper iframe {
        height: 180px;
      }

      .video-caption {
        font-size: 0.9rem;
      }
    }



    /* CTA Section */
    .cta-section {
      padding: 2rem 5%;
      background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(0, 195, 255, 0.2));
      position: relative;
      overflow: hidden;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .cta-content h2 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      font-family: 'Rajdhani', sans-serif;
      text-transform: uppercase;
    }

    .cta-content h2 span {
      color: #681a1d;
    }

    .cta-content p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button-large {
      background: linear-gradient(45deg, #8d1e22, #bf824c);
      color: white;
      border: none;
      padding: 18px 45px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 1.0rem;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      box-shadow: 0 4px 9px rgb(3 5 6);
      display: inline-block;
    }

    .cta-button-large:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 9px rgb(3 5 6);
    }

    /* Footer */
    footer {
      padding: 4rem 5% 2rem;
      background: #000;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* exactly 2 columns */
      gap: 40px;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      /* optional: control total width */
      margin: 0 auto 3rem;
    }

    .footer-col h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #f2b111;
      font-family: 'Rajdhani', sans-serif;
    }

    .footer-col p,
    .footer-col li {
      line-height: 27px;
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      display: flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition);
    }

    .footer-col ul li:hover {
      color: #f6eef6;
      transform: translateX(5px);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #e76a11;
      color: white;
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: #891d21;
      transform: translateY(-5px);
    }

    .sub-footer {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .copyright {
      padding-top: 2rem;
      color: rgba(255, 255, 255, 0.5);

    }

    .condition {
      padding-top: 2rem;
    }



    .condition a {
      text-decoration: none;
      padding-right: 12px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* Popup Modal Styles */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      overflow-y: auto;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: linear-gradient(135deg, #b2111d, #bf7f17);
       border-radius: 15px; 
      /* padding: 30px; */
      width: 90%;
      max-width: 900px;
      position: relative;
      margin: 20px auto;
      max-height: 90vh;
      transform: translateY(50px);
      transition: transform 0.5s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    }

    .modal-overlay.active .modal-content {
      transform: translateY(0);
    }

    .modal-image {
        flex: 1 1 40%;
        /* display: flex; */
        align-items: center;
        justify-content: center;
        background: linear-gradient(45deg, #f06b0cfa, #bc5f38f5);
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }

    .modal-image img {
      max-width: 100%;
      border-radius: 0px;
      height:324px;
      object-fit:cover;
      border-top-left-radius: 15px;
    }

    .modal-form-container {
      flex: 1 1 55%;
      background-color: #000;
      padding: 20px 20px;
      border-radius: 0px 15px 15px 0px;
    }


    .modal-header p {
      margin-bottom: 20px;
      font-size: 14px;
      color: #666;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
    }

    .modal-body {
      display: flex;
      flex-wrap: wrap;
      gap: 0px;
    }

    .close-modal {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 1.5rem;
      color: white;
      background: transparent;
      border: none;
      cursor: pointer;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .close-modal:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: rotate(90deg);
    }

    .modal-header {
      margin-bottom: 15px;
    }

    .modal-contentt {
      text-align: center;
      padding: 17px;
    }

    .modal-contentt p {
      text-align: center;
      margin-bottom: -3px;
    }

    .modal-contentt h4 {
      color: #000;
      margin-top: 25px;
      text-align: center;
    }

    .modal-contentt span {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
      font-family: 'Rajdhani', sans-serif;
      text-transform: uppercase;
    }

    .modal-contentt ul li {
      list-style: none;
      position: relative;

    }

    .modal-contentt ul li:nth-child(2):after {
      content: '|';
      position: absolute;
      top: 0px;
      left: -8px;
      height: 6px;
      color: #fff;
    }

    .modal-contentt ul li:nth-child(3):after {
      content: '|';
      position: absolute;
      top: 0px;
      left: -8px;
      height: 6px;
      color: #fff;
    }

    .modal-contentt ul li:nth-child(4):after {
      content: '|';
      position: absolute;
      top: 0px;
      left: -8px;
      height: 6px;
      color: #fff;
    }

    .modal-contentt .icc {
      background: #fff;
      color: #000;
      padding: 7px;
      border-radius: 50%;
    }

    .modal-contentt a {
      color: #ffffff;
      text-decoration: none !important;

    }

    .modal-contentt ul {
      background-color: #4e0b0b;
      display: flex;
      gap: 12px;
      padding: 12px;
      justify-content: center;
      margin: 10px 23px;
      border-radius: 12px;
    }


    .modal-header h2 {
      font-size: 2rem;
      margin-bottom: 10px;
      font-family: 'Rajdhani', sans-serif;
      text-transform: uppercase;
      -webkit-background-clip: text;
      background-clip: text;
      color: #e76a11;
      text-align: center;
    }

    .modal-header p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
    }

    .modal-form .form-group {
      margin-bottom: 20px;
    }

    .modal-form .form-submit {
      margin-top: 0px;
      background: linear-gradient(135deg, #a93b00, #e76a11);
    }

    .form-submit {
      background: linear-gradient(135deg, #a93b00, #e76a11);
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .form-submit:hover {
       background: linear-gradient(135deg,  #e76a11,  #a93b00);
    }

    @media (max-width: 768px) {
      .modal-body {
        flex-direction: row;
        flex-wrap: nowrap;
      }

      .modal-image,
      .modal-form-container {
        flex: 1 1 100%;
      }


      .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 20px auto;
        overflow-y: auto;
      }
    }

    .assurance-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      padding: 12px 15px;
      border-radius: 8px;
      margin: 15px 0;
      font-size: 0.9rem;
    }

    .assurance-badge i {
      color: #fff;
      font-size: 1.2rem;
    }

    @media only screen and (min-width: 360px) and (max-width:480px) {
      .hero {
        background: linear-gradient(90deg, rgb(22 18 18 / 0%), rgb(7 4 4 / 36%)), url(../img/hero-bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 2rem 5% 8rem;
        /*min-height: 40vh;*/
        position: relative;
        overflow: hidden;
        animation: unset !important;

        transform-origin: center;
      }

      .headbtn {
        display: none !important;
      }

      .banner-form {
        /*background: linear-gradient(135deg, #e80e16, #0a0a2a);*/
        border-radius: 20px;
        padding: 10px;
        margin: 0px auto 10px;
        backdrop-filter:blur(10px);
      }

      .btn {
        margin-bottom: 12px;
      }

      .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        padding: 10px 12px;
        margin-right: auto;
      }

      .course-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #d49b14;
      }

      .close-modal i {
        color: #ffffff;
        background: #391111;
        padding: 7px;
        margin-left: 50px;
        margin-top: -50px;
      }

      .sub-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .copyright {
        padding-top: 1rem;
      }

      .condition {
        padding-top: 1rem;
      }



      .testimonial-side {
        border-radius: 20px;
        padding: 0px;
      }

      .assurance-card i {
        font-size: 2.1rem;
      }

      .employee-side {
        border-radius: 20px;
        padding: 0px;
      }

      .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 20px 20px;
        height: 250px;
        border: 1px solid #e76a11;
        transition: transform 0.3s ease;
      }

      .split-slider-section .swiper-button-next,
      .split-slider-section .swiper-button-prev {
        color: #e76a11;
        background: rgb(255 251 255);
        width: 20px;
        height: 20px;
        padding: 12px;
        border-radius: 50%;
        backdrop-filter: blur(5px);
      }

      .cta-float {
        bottom: 0px !important;
        width: 100%;
      }

      .modal-image img {
        display: none;
        max-width: 100%;
        border-radius: 0px;
      }

      .modal-body {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
      }

      .modal-contentt ul {
        display: none;
      }

      .modal-form .form-group {
        margin-bottom: 9px;
      }
      .modal-contentt span {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}
.modal-contentt h4 {
    color: #000;
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
}

      .modal-contentt {
        text-align: center;
        padding: 7px;
      }

      .modal-form-container {
        flex: 1 1 55%;
        background-color: #000;
        padding: 9px 20px;
      }

      .modal-content {
        padding: 0px 0px;
      }

      .mobile-fixed-buttons {
        z-index: 9;
      }

      .desktop-content {
        display: none;
      }

      .section-header h2 {
        font-size: 1.8rem !important;
        font-weight: 700;
      }


      .footer-heading h2 {
        text-align: center;
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.4rem;
      }


    }

    @media only screen and (min-width: 481px) and (max-width:767px) {

      .hero {
        background: linear-gradient(90deg, rgb(22 18 18 / 0%), rgb(7 4 4 / 36%)), url(../img/hero-bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 2rem 5% 8rem;
        /*min-height: 40vh;*/
        position: relative;
        overflow: hidden;
        animation: unset !important;
        ;
        transform-origin: center;
      }


      .headbtn {
        display: none !important;
      }

      .banner-form {
        background: linear-gradient(135deg, #e80e16, #0a0a2a);
        border-radius: 20px;
        padding: 20px;
        margin: -180px auto 20px;
      }

      .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 20px 20px;
        height: 250px;
        border: 1px solid #e76a11;
        transition: transform 0.3s ease;
      }

      .btn {
        margin-bottom: 12px;
      }

      .testimonial-side {
        border-radius: 20px;
        padding: 0px;
      }

      .employee-side {
        border-radius: 20px;
        padding: 0px;
      }

      .swiper-button-next,
      .swiper-button-prev {
        color: #d49b14;
        background: #ffffff52;
        width: 30px !important;
        height: 30px !important;
        border-radius: 50%;
        backdrop-filter: blur(5px);
      }

      .split-slider-section .swiper-button-next,
      .split-slider-section .swiper-button-prev {
        color: #681a1d;
        background: rgb(255 251 255);
        width: 20px;
        height: 20px;
        padding: 12px;
        border-radius: 50%;
        backdrop-filter: blur(5px);
      }

      .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        padding: 10px 12px;
        margin-right: auto;
      }

      .course-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #d49b14;
      }

      .sub-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }



      .copyright {
        padding-top: 1rem;
      }

      .condition {
        padding-top: 1rem;
      }

      .desktop-content {
        display: none;
      }

    }

    @media only screen and (min-width:300px) and (max-width:344px) {
      .desktop-content {
        display: none;
      }

      .headbtn {
        display: none !important;
      }

      .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 6px;
        height: 495px;
        border: 1px solid #e76a11;
        transition: transform 0.3s ease;
      }

      .btf {
        margin-bottom: 12px;
      }

      .assurance-card i {
        font-size: 2.1rem;
      }

      .banner-form {
        background: linear-gradient(135deg, #e80e16, #0a0a2a);
        border-radius: 20px;
        padding: 12px;
        margin: -172px auto 10px;
        max-width: 1100px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 10;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
      }

      .modal-image {
        display: none;
      }

      .sub-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .section-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
      }
    }

    @media only screen and (min-width: 500) and (max-width:540px) {
      .modal-image {
        display: none
      }

      .desktop-content {
        display: none;
      }
    }

    @media only screen and (min-width: 768px) and (max-width:991px) {
      .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 10px;
        height:100%;
      }


      .mobile-content {
        display: none;

      }

      .courses .swiper-button-next,
      .courses .swiper-button-prev {
        display: none !important;
      }

      .sub-footer {
        display: flex;
        gap: 70px;
        flex-wrap: nowrap;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .modal-body {
        flex-direction: row;
        flex-wrap: nowrap;
      }

      .modal-image,
      .modal-form-container {
        flex: 1 1 100%;
      }

      .btf {
        display: none !important;
      }

      nav ul {
        display: none;
      }

      .banner-form {
        padding: 30px 20px;
        margin: -153px 20px 20px;
      }

      .hero {
        background: linear-gradient(90deg, rgb(22 18 18 / 70%), rgb(7 4 4 / 36%)), url(../img/hero-bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 2rem 5% 8rem;
        /*min-height: 40vh;*/
        position: relative;
        overflow: hidden;
        animation: unset !important;
        ;
        transform-origin: center;
      }

      .course-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #d49b14;
      }


      .copyright {
        padding-top: 1rem;
      }

      .condition {
        padding-top: 1rem;
      }

    }

    @media only screen and (min-width: 992px) and (max-width:1024px) {
      .hero-content {
        text-align: center;
        margin: 0px auto;
        max-width: 793px;
        padding: 0px 0px;
      }

      .mobile-content {
        display: none;

      }

      .footer-col iframe {
        width: 270px;
      }

      .mobile-content {
        display: none;

      }

      .hero {
        background: linear-gradient(90deg, rgb(22 18 18 / 70%), rgb(7 4 4 / 36%)), url(../img/hero-bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 5rem 5% 8rem;
        /*min-height: 40vh;*/
        position: relative;
        overflow: hidden;
        animation: unset !important;
        ;
        transform-origin: center;
      }

      .course-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #d49b14;
      }

      .btf {
        display: none !important;
      }


    }

    @media only screen and (min-width: 1200px) and (max-width:1280px) {
      .hero {
        background: linear-gradient(90deg, rgb(22 18 18 / 70%), rgb(7 4 4 / 36%)), url(../img/hero-bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 5rem 5% 8rem;
        /*min-height: 90vh;*/
        position: relative;
        overflow: hidden;
        animation: unset !important;
        transform-origin: center;
      }

      .courses .courses-content {
        position: absolute;
        top: 43% !important;
        padding: 0px 19px;
        text-align: center
        width: 100%;
      }

      .courses #headerEnroll {
        margin-top: 46px;
      }

      .courses .cardalls-display-area {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(186px, 1fr)) !important;
        gap: 20px;
        width: 100%;
        padding-bottom: 0;
        position: static;
      }

      .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 20px;
        height: 330px;
        border: 1px solid #e76a11;
        transition: transform 0.3s ease;
      }
    }

    @media only screen and (min-width:1300px) {
      .mobile-content {
        display: none;
      }
    }

    @media only screen and (max-width: 767px) {
.mobile-content {
    display:block;
    font-size:1.5rem;
            background: #00000085;
}
      .speak .get-started-cta,
      .call a {
        padding: 15px 30px;
        font-size: 13px !important;
        font-weight: 600;
      }

      .hero-buttons,
      .hero-visual,
      .form-content p,
      .form-content .assurance-grid,
      .form-content h2,
      .hero-content p {
        display: none;
      }

      header {
        padding: 0.3rem 5%;
      }

      .hero {
        background: linear-gradient(90deg, rgb(22 18 18 / 0%), rgb(7 4 4 / 36%)), url(../img/hero-bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 2rem 5% 8rem;
        /*min-height: 40vh;*/
        position: relative;
        overflow: hidden;
        animation: unset !important;
        ;
        transform-origin: center;
      }

      .hero-content {
        text-align: center;
        margin: 0px auto;
        max-width: 793px;
        padding: 8px 0px;
      }

      .form-container {
        display: flex;
        gap: 0px;
        align-items: center;
      }

      .cta-float {
        bottom: 0px !important;
        width: 100%;
      }



      .cta-float-content h2 {
        font-size: 12px !important;
        margin-bottom: 10px;
      }


    }


    /* Responsive */
    @media (max-width: 992px) {


      .form-wrapper {
        flex: 1;
        background: rgb(14 12 12);
        border-radius: 15px;
        padding: 13px;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .hero-content {
        margin-bottom: 3rem;
        max-width: 100%;
        padding: 10px 0px;
      }

      .hero p {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero h2.desktop-content {
        font-size: 3rem;
      }

      .animation-container {
        width: 100%;
        max-width: 400px;
      }

      .form-container {
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto 3rem;
      }

      .hero h2.desktop-content {
        font-size: 2.3rem;
      }

      .section-header h2 {
        font-size: 2.2rem;
      }

      .cta-content h2 {
        font-size: 2.5rem;
      }


    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }

      100% {
        transform: scale(1);
      }
    }

    /*-----------------cta-float----------------------*/
    /*.cta-float {*/
    /*  position: fixed;*/
    /*  bottom: 20px;*/
    /*  left: 50%;*/
    /*  transform: translateX(-50%) translateY(100%);*/
    /*  background-color: #111;*/
    /*  color: #fff;*/
    /*  padding: 20px 40px;*/
    /*  border-radius: 12px;*/
    /*  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);*/
    /*  z-index: 99;*/
    /*  opacity: 0;*/
    /*  transition: transform 0.4s ease, opacity 0.4s ease;*/
    /*}*/
.cta-float {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background-color: rgba(255,255,255,0.3);
  color: #fff;
  backdrop-filter:blur(10px);
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-width: 90%;
  box-sizing: border-box;
}

.cta-float #closeCtaFloatSection {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  width: 28px;
  height: 28px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

    .cta-float.visible {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    .cta-float-content {
      text-align: center;
    }

    .cta-float-content h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .cta-float-content span {
      color: #fcb900;
    }


    .cta-float-btn #headerEnroll {
      position: relative;
      display: inline-block;
      padding: 8px 22px;
      font-size: 1.2rem;
    }

    .cta-float-btn {

      background-color: #fcb900;
      color: #000;
      padding: 10px 25px;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .cta-float-btn:hover {
      background-color: #e0a800;
    }

    /*-------------extra button------------------*/
    .buttonclass {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 2rem;
    }

    .speak .get-started-cta,
    .call a {
      padding: 15px 30px;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      display: inline-block;
      transition: all 0.4s ease;
      box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .speak .get-started-cta {
      background: linear-gradient(135deg, #a93b00, #a93b00);
      color: #fff;
    }

    .call a {
      background: linear-gradient(135deg, #e76a11, #ff9a44);
      color: #fff;
    }

    /*.speak .cta-button::before,*/
    /*.call a::before {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  top: 0;*/
    /*  left: -100%;*/
    /*  width: 100%;*/
    /*  height: 100%;*/
    /*  background: rgba(255, 255, 255, 0.2);*/
    /*  transform: skewX(-30deg);*/
    /*  transition: left 0.5s;*/
    /*  z-index: -1;*/
    /*}*/

    /*.speak .cta-button:hover::before,*/
    /*.call a:hover::before {*/
    /*  left: 100%;*/
    /*}*/

    /*.speak .cta-button:hover,*/
    /*.call a:hover {*/
    /*  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.4);*/
    /*  transform: scale(1.05);*/
    /*}*/

    /*----------------nav button------------*/
    #headerEnroll {
      position: relative;
      display: inline-block;
      padding: 14px 36px;
      font-size: 14px;
      font-weight: bold;
      color: #fff;
      /* background: linear-gradient(135deg, #231c1c, #000); */
      background: linear-gradient(135deg, #ff790f, #ef5603);
      border: 2px solid transparent;
      border-radius: 50px;
      cursor: pointer;
      animation: blinkGlow 1.2s infinite, borderPulse 2s infinite;
      /* box-shadow: 0 0 15px rgba(0, 0, 0, 0), 0 0 25px #eeeeee; */
      overflow: hidden;
      z-index: 1;
      transition: transform 0.3s ease;
      text-align: center;
      white-space: nowrap;
    }

    #headerEnroll::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 150%;
      height: 100%;
      /* background: linear-gradient(120deg,
          rgba(255, 255, 255, 0.1) 0%,
          rgba(255, 255, 255, 0.4) 50%,
          rgba(255, 255, 255, 0.1) 100%); */
      /* transform: skewX(-20deg); */
      /* animation: shine 2.5s infinite; */
      z-index: 0;
    }

    #headerEnroll:hover {
      transform: scale(1.05);
    }

    @keyframes blinkGlow {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.8;
      }
    }

    @keyframes borderPulse {

      0%,
      100% {
        border-color: rgba(255, 255, 255, 0.2);
      }

      50% {
        border-color: rgba(255, 255, 255, 0.8);
      }
    }

    @keyframes shine {
      0% {
        left: -75%;
      }

      100% {
        left: 100%;
      }
    }

    /* ✅ Mobile & Tablet Responsive */
    @media (max-width: 768px) {
      #headerEnroll {
        padding: 10px 24px;
        font-size: 1rem;
      }

      .floating-text {
        display: none;
      }
    }

    @media (max-width: 480px) {
      #headerEnroll {
        padding: 8px 18px;
        font-size: 0.95rem;
      }

      .floating-text {
        display: none;
      }
    }

    /* marqueeee */

    .marq {
      padding: 2rem 0rem;
    }

    .marquee-container:hover .marquee-track,
    .marquee-item:hover~.marquee-item,
    .marquee-item:hover {
      animation-play-state: paused !important;
    }

    /* White border effect on hover */
    .marquee-item:hover {
      text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 0px #ffffff;
    }

    .marquee-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.7);
      padding: 15px 0;
      border-top: 2px solid var(--primary);
      border-bottom: 2px solid var(--secondary);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: scroll 90s linear infinite;
      will-change: transform;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      white-space: nowrap;
      padding: 0 40px;
      font-size: 1.2rem;
      font-weight: 600;
      position: relative;
      color: transparent;
      background: linear-gradient(90deg, #ff4f4f, #ffcc00);
      -webkit-background-clip: text;
      background-clip: text;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .marquee-item:before {
      content: "★";
      color: var(--primary);
      margin-right: 10px;
      font-size: 1.5rem;
      animation: pulse 1.5s infinite;
    }

    .marquee-item:after {
      content: "★";
      color: var(--secondary);
      margin-left: 10px;
      font-size: 1.5rem;
      animation: pulse 1.5s infinite 0.5s;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.3);
        opacity: 0.7;
      }
    }

    /* Glow effect */
    .marquee-container:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center,
          rgba(255, 77, 148, 0.2) 0%,
          rgba(0, 195, 255, 0.1) 50%,
          transparent 70%);
      pointer-events: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .marquee-item {
        font-size: 1rem;
        padding: 0 25px;
      }

      .marquee-item:before,
      .marquee-item:after {
        font-size: 1.2rem;
      }

      .marquee-track {
        animation-duration: 20s;
      }
    }

    @media (max-width: 480px) {
      .marquee-item {
        font-size: 0.9rem;
        padding: 0 15px;
      }

      .marquee-item:before,
      .marquee-item:after {
        font-size: 1rem;
      }

      .marquee-track {
        animation-duration: 15s;
      }
    }

    /*----faq-----*/

    /* FAQ Section Styles */
    .faq-section {
      padding: 2rem 5%;
      position: relative;
      overflow: hidden;
    }

    .faq-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 30px;
    }

    .faq-column {
      flex: 1;
    }

    .faq-item {
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: var(--transition);
    }

    .faq-item:hover {
      border-color: var(--primary);
    }

    .faq-question {
      padding: 20px 25px;
      background: rgba(25, 30, 60, 0.7);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: var(--transition);
    }

    .faq-question h3 {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      margin: 0;
      flex: 1;
    }

    .faq-question i {
      color: #fff;
      transition: var(--transition);
      margin-left: 15px;
      flex-shrink: 0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      background: rgba(15, 20, 40, 0.7);
    }

    .faq-answer p {
      padding: 0 25px;
      margin: 0;
      line-height: 1.7;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
    }

    .faq-answer ul {
      padding-left: 20px;
      margin: 15px 0;

    }

    .faq-answer ul li {
      list-style: none;
      margin-bottom: 8px;
      position: relative;
      padding-left: 15px;
      font-size: 14px;
      border-bottom: none;
      display: list-item;
    }

    .faq-answer ul li:before {
      content: "•";
      color: var(--primary);
      position: absolute;
      left: 0;
    }

    /* Active state for FAQ items */
    .faq-item.active .faq-question {
      background: linear-gradient(45deg, #8c1e22, transparent);
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 20px 0;
    }

    .faq-cta {
      text-align: center;
      margin-top: 20px;
      grid-column: 1 / -1;
    }

    .faq-cta p {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Responsive FAQ */
    @media (max-width: 768px) {
      .faq-container {
        flex-direction: column;
        gap: 15px;
      }

      .faq-question h3 {
        font-size: 1.1rem;
      }

      .faq-question {
        padding: 15px 20px;
      }

      .faq-answer p,
      .faq-answer ul {
        padding-left: 20px;
        padding-right: 20px;
      }
    }

    .button1 {
      border: none;
      outline: none;
      background-color: #e2ff00;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: 700;
      color: #161313;
      border-radius: 5px;
      transition: all ease 0.1s;
      box-shadow: 0px 5px 0px 0px #876212;
    }

    .button1:hover {
      transform: translateY(5px);
      box-shadow: 0px 0px 0px 0px #a29bfe;
    }


    @media (max-width: 1024px) {
      /* .courses-grid {
        display: none;
      } */
      /* 
      .courses-mobile-slider {
        display: block;
      } */

      .swiper-slide {
        height: auto;
        /* Make all slides same height */
      }

      /* .course-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      } */
    }

    /* Swiper pagination styling */
    .swiper-pagination-bullet {
      background: white;
      opacity: 0.5;
      width: 10px;
      height: 10px;
    }

    .swiper-pagination-bullet-active {
      background: #d49b14;
      opacity: 1;
    }

    /* Navigation arrows */
    /* .courses .swiper-button-next,
    .courses .swiper-button-prev {
      color: #d49b14;
      background: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      backdrop-filter: blur(5px);
    } */

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 1.2rem;
      font-weight: bold;
    }

    /* Split CTA Section Styles */
    .cta-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 50px;
      padding: 40px 20px;
    }

    .cta-content {
      flex: 1;
      padding-right: 30px;
    }

    .cta-video {
      flex: 1;
      position: relative;
      min-width: 0;
      /* Prevent flex item overflow */
    }

    .video-wrapper {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .video-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    }

    /* Responsive video container */
    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
    }

    .video-container iframe,
    .video-container video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-caption {
      background: linear-gradient(to right, #891d21, #f2b111);
      color: white;
      text-align: center;
      padding: 15px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 1.1rem;
      margin-top: -5px;
      /* Connects with video wrapper */
    }

    .cta-features {
      margin: 30px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 1.1rem;
      line-height: 1.4;
    }

    .feature-item i {
      color: #f2b111;
      font-size: 1.3rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .cta-container {
        gap: 40px;
        padding: 30px 20px;
      }

      .cta-content {
        padding-right: 20px;
      }

      .hero-visual {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .cta-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
      }

      .cta-content {
        padding-right: 0;
        text-align: center;
        width: 100%;
      }

      .cta-video {
        width: 100%;
      }

      .video-wrapper {
        max-width: 560px;
        margin: 0 auto;
      }

      .cta-features {
        grid-template-columns: 1fr;
        gap: 15px;
        justify-items: center;
      }

      .feature-item {
        justify-content: center;
        text-align: center;
        /* max-width: 300px; */
      }
    }

    @media (max-width: 480px) {
      .cta-container {
        padding: 25px 10px;
        gap: 25px;
      }

      .video-caption {
        padding: 12px 10px;
        font-size: 1rem;
      }

      .feature-item {
        font-size: 1rem;
        gap: 8px;
      }

      .feature-item i {
        font-size: 1.1rem;
      }
    }

    .fixed-contact-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }

    .whatsapp-button,
    .call-button {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }

    .whatsapp-button {
      background-color: #25D366;
      /* WhatsApp green */
    }

    .call-button {
      background-color: #007bff;
      /* Blue */
    }

    .whatsapp-button:hover,
    .call-button:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      text-decoration: none;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .fixed-contact-buttons {
        bottom: 15px;
        right: 15px;
      }

      .whatsapp-button,
      .call-button {
        width: 45px;
        height: 45px;
        font-size: 22px;
      }
    }

    @media (max-width: 480px) {
      .fixed-contact-buttons {
        bottom: 10px;
        right: 10px;
      }

      .whatsapp-button,
      .call-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
    }


    /* Container for the entire slider */
    /* Container for the entire slider */
    .career .container {
      width: 100%;
      max-width: 1600px;
      /* Increased max-width to accommodate 4 slides comfortably */
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Swiper container styles */
    .career .swiper {
      width: 100%;
      height: 100%;
      padding: 30px 0px 90px;
      /* Padding for navigation/pagination if needed */
    }

    /* Swiper slide (card) styles */
    .career .swiper-slide {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      /* Stack image and content vertically */
    }

    .career .swiper-slide:hover {
      transform: translateY(-10px);
    }

    /* Card structure */
    .career .card {
      display: flex;
      flex-direction: column;
      height: 100%;
      /* Make card fill the slide height */
    }

    /* Card image styles */
    .career .card-image {
      width: 100%;
      height: 350px;
      overflow: hidden;
      transition: height 0.3s ease;
    }

    .career .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      background-color: #cccccc;
      color: #333333;
      display: block;
      transition:all 0.5s ease-in;
    }

    .career .swiper-slide:hover .card-image img {
      transform: scale(1.1);
      filter:grayscale(1);
    }

    /* Card content area */
    .career .card-content {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      background: linear-gradient(45deg, #57181b, var(--dark));
      position: absolute;
      width: 89%;
      top: 99%;
      left: 50%;
      transform: translate(-50%, -50%);
      /* margin: 00px 34px; */
      /* margin-top: -54px; */
      border-radius: 0 0 10px 10px;
      padding: 0;
      transition: margin-top 0.3s ease, height 0.3s ease;
      z-index: 1;
    }

    .career .card-content.expanded {
      margin-top: -50px;
      /* Move up when expanded, adjust value based on desired overlap */
      /* height: auto;  Allow height to be determined by content */
    }


    .career .card-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #333;
    }

    .career .card-text {
      font-size: 14px;
      color: #666;
      margin-bottom: 15px;
      line-height: 1.5;
    }

    /* Accordion styles */
    .career .accordion {
      margin-top: auto;
      /* Pushes accordion to the bottom of the card content */
    }

    /* Basic Accordion Styling */
    .accordion-item {
      border-bottom: 1px solid #eee;
    }

    .career .accordion-item:last-child {
      border-bottom: none;
    }

    .career .accordion-header {
      padding: 19px 19px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: #fff;
      transition: color 0.3s ease;
      z-index: 2;
      height: 70px;
    }

    .career .accordion-header:hover {
      color: #fff;
    }

    .career .accordion-header::after {
      content: '+';
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .career .accordion-header.active::after {
      content: '-';
    }

    .career .accordion-content p {
      color: #fff;
      font-size: 15px;
      ;
      /* Changed content color to white for contrast */
    }

    .career .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
      font-size: 13px;
      color: #666;
      line-height: 1.5;
      padding: 0 19px;
      /* Initial padding */
      opacity: 0;
      /* Start hidden */
    }

    .career .accordion-content.open {
      max-height: 1000px;
      padding-bottom: 19px;
      margin-top: 7px;
      opacity: 1;
      /* Fully visible */
    }

    /* When an accordion is open, reduce image height and expand content */
    .career .swiper-slide.accordion-open .card-image {
      height: 200px;
      /* Smaller height for image when accordion is open */
    }


    /* Other existing CSS for career section and swiper remains the same */
    /* Swiper navigation buttons */
    .career .swiper-button-next,
    .career .swiper-button-prev {
        display:none;
      background: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      color: #333;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .career .swiper-button-next:hover,
    .career .swiper-button-prev:hover {
      background: #007bff;
      /* Blue on hover */
      color: #fff;
    }

    .career .swiper-button-next::after,
    .career .swiper-button-prev::after {
      font-size: 18px;
      font-weight: bold;
    }

    /* Swiper pagination dots */
    .career .swiper-pagination-bullet {
      background: #999;
      opacity: 0.7;
      margin-top: 23px;
    }

    .career .swiper-pagination-bullet-active {
      background: #007bff;
      opacity: 1;
    }

    /* Responsive adjustments for navigation buttons */
    @media (max-width: 768px) {

      .career .swiper-button-next,
      .career .swiper-button-prev {
        display: none;
        /* Hide navigation buttons on small screens */
      }
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .section-header h2 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
      font-family: 'Rajdhani', sans-serif;
      text-transform: uppercase;
    }

    .section-header p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
    }

    /*------------courses----------------------*/
    .courses {

      margin: 0;
      padding: 20px;

      display: flex;
      justify-content: center;
      align-items: flex-start;

    }

    .courses .container {
      max-width: 1600px;
      width: 100%;
      padding: 30px;
      border-radius: 8px;

      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }



    /* --- DESKTOP (Default) Styles --- */
    /* This is our flexible grid container for desktop */
    .courses .cardalls-display-area {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      width: 100%;
      /* Ensure no extra padding for desktop view */
      padding-bottom: 0;
      /* Reset Swiper specific styles for desktop */
      position: static;
      padding-top: 10px;
    }

    /* On desktop, the swiper-wrapper and swiper-slide should blend into the grid */
    .courses .cardalls-display-area .swiper-wrapper {
      display: contents;
      /* Makes children (cardalls) participate directly in the grid layout */
    }

    /* Hide Swiper-specific navigation elements on desktop */
    .coursess .cardalls-display-area .swiper-pagination,
    .courses .cardalls-display-area .swiper-button-next,
    .courses .cardalls-display-area .swiper-button-prev {
      display: none;
    }

    /* cardall Styling (applies to both desktop and mobile as base) */
    .courses .cardall {
      background-color: #e0f7fa;
      border: 1px solid #b2ebf2;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.1s ease, box-shadow 0.1s ease;
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: auto;
      height: auto;
      box-sizing: border-box;
    }

    .courses .cardall:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .courses .cardall .courses-content h3 {
      color: #f2b111;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .courses .cardall .courses-content p {
      color: #fff;
      line-height: 1.5;
      height: 60px;
    }

    /* Initially hide cardalls beyond the first 4 for desktop */
    .courses .cardall:nth-child(n+5) {
      display: none;
    }

    /* Load Button Styling */
    .courses .load-button {
      background-color: transparent;
      color: #f2b111;
      padding: 12px 25px;
      border: 1px solid #efcc88;
      /* border: none; */
      border-radius: 12px;
      cursor: pointer;
      font-weight: 500;
      font-size: 21px;
      margin-top: 30px;
      transition: background-color 0.3s ease;
    }

    .courses .load-button:hover {
      background-color: #e76a11b5;
      color: #fff;
    }

    /* --- MOBILE & TABLET (Media Query) Styles --- */
    @media (max-width: 1024px) {

      /* Reconfigure the cardalls-display-area to be a Swiper container */
      .courses .cardalls-display-area {
        display: block;
        /* Swiper container needs to be block or flex */
        width: 100%;
        padding-bottom: 40px;
        /* Space for pagination */
        position: relative;
        /* Essential for Swiper navigation arrows */
        overflow: hidden;
        /* Prevent content from spilling outside */
      }

      /* Important: Revert swiper-wrapper to Swiper's default flex display */
      .courses .cardalls-display-area .swiper-wrapper {
        display: flex;
        box-sizing: content-box;
        /* Swiper's default */
      }

      /* Unhide all cardalls. Swiper will manage their visibility as slides. */
      .courses .cardall:nth-child(n+5) {
        display: block;
        /* Ensure all cardalls are visible for Swiper to handle */
      }

      /* Swiper slide specific adjustments */
      .swiper-slide {}

      /* Show Swiper navigation elements on smaller screens */
      .courses .cardalls-display-area .swiper-pagination,
      .courses .cardalls-display-area .swiper-button-next,
      .courses .cardalls-display-area .swiper-button-prev {
        display: block;
        /* Swiper typically sets this to flex or block */
      }

      /* Style Swiper pagination and navigation */
      .courses .swiper-pagination-bullet {
        background: #e76a11;
        opacity: 0.7;
      }

      .courses .swiper-pagination-bullet-active {
        background: #0056b3;
        opacity: 1;
      }

      .courses .swiper-button-next,
      .courses .swiper-button-prev {
        color: #007bff;
        /* Position arrows correctly */
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        /* Clear any default margin */
      }

      .courses .swiper-button-next:after,
      .courses .swiper-button-prev:after {
        font-size: 25px;
        /* Adjust arrow size */
      }

      /* Hide the Load More/Less button when Swiper is active */
      .courses .load-button {
        display: none;
      }
    }

    /* Further adjustments for very small mobile screens */
    @media (max-width: 600px) {
      .courses .container {
        padding: 15px;
      }
    }

    @media only screen and (max-width:768px) {

      .courses .swiper-button-next,
      .courses .swiper-button-prev {
        display: none !important;
      }
    }

    .courses .cardallsin img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 6px;
    }

    .courses .cardallsin {
      height: 100%;
      width: 100%;
      position: relative;
    }

.courses .cardallsin::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  border-radius: 10px;
  /* background: linear-gradient(to top, #4e0b0b, #4e0b0b63, transparent); */
  background: linear-gradient(to top, #e76a115e, #4e0b0b63, transparent);
  transition: height 0.6s ease, background 0.6s ease;
  /*z-index: 1;*/
}

.courses .cardallsin:hover::before {
  height: 100%;
  background: rgb(78 39 11 / 70%);
backdrop-filter: blur(20px);

}
    .courses .courses-content {
      position: absolute;
      top: 67%;
      padding: 0px 19px;
      text-align: center;
      width: 100%;
    }

    .courses #headerEnroll {
      position: relative;
      display: inline-block;
      padding: 10px 18px;
      font-size: 13px;
      font-weight: bold;
      color: #fffbff;
      background: linear-gradient(135deg, #040608, #050709);
      border: 3px solid #f2b111;
      border-radius: 50px;
      cursor: pointer;
      animation: blinkGlow 1.2s infinite, borderPulse 2s infinite;
      box-shadow: 0 0 15px rgba(255, 106, 0, 0.8), 0 0 25px rgba(255, 65, 108, 0.9);
      overflow: hidden;
      z-index: 1;
      transition: transform 0.3s ease;
      text-align: center;
      white-space: nowrap;
      margin-top: 15px;
    }
    
    
    
    /* new code start */
    
    /* Card hover overlay text */
.cardall {
  position: relative;
  overflow: hidden;
}

.card-hover-text {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14, 10, 40, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 10;
}

.cardall:hover .card-hover-text {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.cardall:hover .courses-content {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card-hover-text .hover-tag {
  font-size: 14px;
  color: #e76a11;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-hover-text h4 {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1.4;
}

.card-hover-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 14px;
}

.card-hover-text .cta-button {
  font-size: 12px;
  padding: 7px 20px;
}

    
    
    
    
    /* new code end*/
    
    
    
    

/* MOBILE FIXED BAR */
.mobile-fixed-buttons {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
  padding: 6px;
}

/* FLEX */
.mobile-fixed-buttons ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ITEMS */
.mobile-fixed-buttons li {
  flex: 1;
  text-align: center;
}

/* BUTTON RESET */
.mobile-fixed-buttons .fixed-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 0;
}

/* LINK FULL CLICKABLE */
.mobile-fixed-buttons .fixed-btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 11px;
  gap: 3px;
}

/* ICON */
.mobile-fixed-buttons .fixed-btn i {
  font-size: 20px;
}

/* CENTER CTA */
.mobile-fixed-buttons li:nth-child(2) .cta-button {
  background: linear-gradient(135deg, #e76a11, #ff8c42);
  color: #fff;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(231,106,17,0.4);
  transform: translateY(-12px);
}

/* HOVER / TAP */
.mobile-fixed-buttons .fixed-btn:active {
  transform: scale(0.92);
}

/* SHOW ONLY MOBILE */
@media (max-width: 768px) {
  .mobile-fixed-buttons {
    display: block;
  }

  .fixed-contact-buttons,
  .cta-float {
    display: none;
  }
}
      /* .bg-element.triangle {
        width: 200px;
        height: 200px;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        top: 70%;
        right: 12%;
        animation: rotate 20s infinite linear;
        opacity: 0.3;
        filter: blur(30px);
      } */
    

    .footer-grid {
      margin-top: 23px;
    }

    .footer-cta {
      color: #fff;
      padding: 18px 10px;
      max-width: 500px;
      border: 1px solid #f1c989;
      border-radius: 12px;
    }

    .footer-cta h2 {
      margin-left: 1rem;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #f2b111;
      font-family: 'Rajdhani', sans-serif;
    }

    .footer-cta form {
      padding: 17px 23px;
      /* max-width: 500px;
      margin: 0 auto; */
    }

    .footer-cta input,
    .footer-cta textarea {
      width: 100%;
      padding: 17px;
      margin-bottom: 26px;
      border: none;
      background: #e76a11e8;
      border-radius: 5px;
      font-size: 14px;
      color: #fff;
    }

    .footer-cta form input::placeholder {
      color: #fff;
    }

    .footer-cta input[type="submit"] {
      background-color: #f9c622;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .footer-cta input[type="submit"]:hover {
      background-color: #fff;
      color: #111;
    }

    .footer-cta button {
      background: linear-gradient(135deg, #e76a11, #ff7b00);
      color: #000;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .footer-cta button:hover {
      background: #fff;
      color: #222;
    }

    .footer-heading h2 {
      text-align: center;
      color: #fff;
      margin-bottom: 1rem;
    }

    .footer-heading h3 {
      text-align: center;
      color: #fff;
    }

    .gradient-text {
      font-size: 3rem;
      font-weight: bold;
      background: linear-gradient(45deg, #be2229, #f2b111);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .invalid-feedback {
    display: none;
    width: 100%;
    
    margin-bottom: 10px;
    font-size: 15px;
    font-weight:bold;
    color: #e84c3d!important;
 }
    
  .custom-form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
  }

  .custom-col-3 {
    flex: 0 0 25%;
  }

  .custom-col-7 {
    flex: 0 0 58.3333%;
  }

  .custom-col-2 {
    flex: 0 0 14.6667%;
    display: flex;
    justify-content: center;
  }

  .form-control {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: 4px;
  }

  .text-center {
    text-align: center;
  }

  .invalid-feedback {
    font-size: 0.875em;
    color: #dc3545;
    margin-top: 0.25rem;
  }

  .badge {
    display: inline-block;
    padding: 0.5em 0.75em;
    border-radius: 0.25rem;
    font-weight: 600;
  }

  .bg-light {
    background-color: #f8f9fa;
  }

  .text-dark {
    color: #212529;
  }

 
  



  

  /*
  new
  */

  /* Center menu */
.center-menu {
  display: flex;
  gap: 50px;
}

/* Menu links */
.center-menu a {
  text-decoration: none;
  color: #faece8;
  font-weight: 600;
  font-size: 18px; /* increase size */
  font-family: 'Montserrat', sans-serif;
}

/* Button group */
.button-all {
  display: flex;
  gap: 12px;
}

/* Hide menu on mobile */
@media (max-width: 768px) {
  .center-menu {
    display: none;
  }
}


.hz-hero *, .hz-hero *::before, .hz-hero *::after { box-sizing: border-box; }

/* ── Section wrapper ── */
.hz-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b1a;
  padding: 6rem 5% 10rem;
}

/* ── Animated background grid lines ── */
.hz-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,128,6,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,128,6,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: hz-gridScroll 20s linear infinite;
  z-index: 0;
}
@keyframes hz-gridScroll {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* ── Glowing orbs ── */
.hz-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.hz-hero__orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,128,6,0.25) 0%, transparent 70%);
  top: -120px; left: -80px;
  animation: hz-orbFloat 14s ease-in-out infinite;
}
.hz-hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,195,255,0.18) 0%, transparent 70%);
  bottom: -100px; right: -60px;
  animation: hz-orbFloat 18s ease-in-out infinite reverse;
}
.hz-hero__orb--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(242,133,17,0.15) 0%, transparent 70%);
  top: 40%; right: 25%;
  animation: hz-orbFloat 11s ease-in-out infinite 3s;
}
@keyframes hz-orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, -40px) scale(1.05); }
}

/* ── Inner layout ── */
.hz-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── LEFT: Text content ── */
.hz-hero__left {}

.hz-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,128,6,0.12);
  border: 1px solid rgba(255,128,6,0.35);
  color: #ff9a40;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.8rem;
}
.hz-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff8006;
  animation: hz-pulse 1.5s ease-in-out infinite;
}
@keyframes hz-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

.hz-hero__title {
  font-family: 'Rajdhani', 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.hz-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #ff8006, #ffca2c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hz-hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.5rem;
  max-width: 520px;
  text-align: left;
}

/* ── Stats row ── */
.hz-hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.hz-hero__stat {}
.hz-hero__stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #ff8006;
  line-height: 1;
}
.hz-hero__stat-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ── CTA buttons — reuse .cta-button from your existing CSS ── */
.hz-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── RIGHT: Visual card stack ── */
.hz-hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

/* Main visual card */
.hz-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,128,6,0.2);
  border-radius: 20px;
  padding: 28px;
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hz-card--main {
  width: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255,128,6,0.4);
  z-index: 3;
}
.hz-card__icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,128,6,0.15);
  border: 1px solid rgba(255,128,6,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.hz-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hz-card__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Skill tags inside main card */
.hz-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.hz-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,128,6,0.3);
  color: #ff9a40;
  background: rgba(255,128,6,0.08);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Floating mini cards */
.hz-card--mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  width: auto;
  white-space: nowrap;
}
.hz-card--mini-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hz-card--mini-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}
.hz-card--mini-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.hz-card--a {
  top: 30px; right: -20px;
  border-color: rgba(0,195,255,0.25);
  animation: hz-floatCard 6s ease-in-out infinite;
  z-index: 4;
}
.hz-card--b {
  bottom: 50px; left: -20px;
  border-color: rgba(255,128,6,0.25);
  animation: hz-floatCard 8s ease-in-out infinite 2s;
  z-index: 4;
}
.hz-card--c {
  bottom: 10px; right: 0;
  border-color: rgba(100,255,130,0.2);
  animation: hz-floatCard 7s ease-in-out infinite 1s;
  z-index: 4;
}
@keyframes hz-floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Orbit ring behind main card */
.hz-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(255,128,6,0.15);
  animation: hz-spin 25s linear infinite;
  z-index: 1;
}
.hz-orbit--2 {
  width: 440px; height: 440px;
  border-color: rgba(0,195,255,0.08);
  animation-duration: 35s;
  animation-direction: reverse;
}
@keyframes hz-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Scroll hint ── */
.hz-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.hz-hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hz-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,128,6,0.6), transparent);
  animation: hz-scrollLine 2s ease-in-out infinite;
}
@keyframes hz-scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(0.4); opacity: 0.2; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hz-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hz-hero__sub { max-width: 100%; text-align: center; margin-left: auto; margin-right: auto; }
  .hz-hero__stats { justify-content: center; }
  .hz-hero__ctas  { justify-content: center; }
  .hz-hero__right { height: 360px; margin-top: 1rem; }
  .hz-hero__badge { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .hz-hero { padding: 5rem 4% 8rem; min-height: auto; }
  .hz-hero__title { font-size: 2rem; }
  .hz-hero__right { display: none; }
  .hz-hero__stats { gap: 1.5rem; }
  .hz-hero__stat-num { font-size: 1.5rem; }
}




/* ── Highlight Tags Row (Placement · Studios · Guidance) ── */
.hz-hero__highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.8rem;
}

.hz-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hz-highlight-tag:hover {
  transform: translateY(-2px);
}

.hz-highlight-tag--placement {
  background: rgba(255, 128, 6, 0.12);
  border-color: rgba(255, 128, 6, 0.55);
  color: #ffaa44;
}

.hz-highlight-tag--placement:hover {
  box-shadow: 0 4px 16px rgba(255, 128, 6, 0.3);
}

.hz-highlight-tag--studios {
  background: rgba(0, 195, 255, 0.10);
  border-color: rgba(0, 195, 255, 0.4);
  color: #44d6ff;
}

.hz-highlight-tag--studios:hover {
  box-shadow: 0 4px 16px rgba(0, 195, 255, 0.25);
}

.hz-highlight-tag--guidance {
  background: rgba(100, 255, 130, 0.09);
  border-color: rgba(100, 255, 130, 0.35);
  color: #6adf8e;
}

.hz-highlight-tag--guidance:hover {
  box-shadow: 0 4px 16px rgba(100, 255, 130, 0.2);
}

.hz-highlight-tag--companies .tag-dot{
    background: #ffca2c;
}

.hz-highlight-tag--companies {
    background: rgba(100, 255, 130, 0.09);
    border-color: rgb(223 199 36 / 92%);
    color: #ffca2c;
}

.hz-highlight-tag--companies:hover {
  box-shadow: 0 4px 16px rgba(100, 255, 130, 0.2);
}

.hz-highlight-tag .tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hz-highlight-tag--placement .tag-dot {
  background: #ff8006;
}

.hz-highlight-tag--studios .tag-dot {
  background: #00c3ff;
}

.hz-highlight-tag--guidance .tag-dot {
  background: #64ff82;
}

/* ── Placement Orbit Card (left side) ── */
.hz-card--d {
  top: 50%;
  left: -30px;
  border-color: rgba(255, 128, 6, 0.35);
  background: rgba(255, 128, 6, 0.08);
  z-index: 4;
  animation: hz-floatCardD 9s ease-in-out infinite 0.5s;
}

@keyframes hz-floatCardD {
  0%, 100% {
    transform: translateY(calc(-50% + 0px));
  }
  50% {
    transform: translateY(calc(-50% - 12px));
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hz-hero__highlights {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hz-highlight-tag {
    font-size: 0.72rem;
    padding: 7px 14px;
  }
}








.ac-section {
  padding: 4rem 5%;
  position: relative;
  overflow: hidden;
}
.ac-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* header */
.ac-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.ac-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  margin-bottom: 0.5rem;
}
.ac-header h2 span { color: #e76a11; }
.ac-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* grid */
.ac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* card */
.ac-card {
  background: linear-gradient(145deg, #e76a11dd, #c04a00cc);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(231,106,17,0.3);
}

/* icon */
.ac-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ac-icon i {
  font-size: 1.8rem;
  color: #c04a00;
}

.ac-card h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

/* buttons row — reuse existing .buttonclass layout */
.ac-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── MOBILE: icon only, tiny cards in a row ── */
@media (max-width: 767px) {
  .ac-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .ac-card {
    padding: 16px 8px;
    border-radius: 14px;
    gap: 0;
  }
  .ac-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .ac-icon i { font-size: 1.4rem; }
  .ac-card h3 { display: none; }
}
@media (max-width: 400px) {
  .ac-grid { gap: 7px; }
  .ac-card { padding: 12px 6px; }
  .ac-icon { width: 42px; height: 42px; border-radius: 9px; }
  .ac-icon i { font-size: 1.2rem; }
}
.get-started-cta {
    background: #ff7b39;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), inset -8px -8px 15px rgba(0, 0, 0, 0.7);
}

.get-started-cta:hover {
    transform: translateY(-3px);
    box-shadow: 1px 1px 6px rgb(255 255 255);
    text-decoration: none;
}

