@font-face {
  font-family: "Aeonik";
  src: url("/assets/fonts/fonnts.com-Aeonik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("/assets/fonts/fonnts.com-Aeonik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "Aeonik";
  src: url("/assets/fonts/Aeonik-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} */

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Aeonik", sans-serif;
}

h1, h2 {
  font-family: "Aeonik", sans-serif;
  font-weight: 700;
}


/* Optional smoothness */
.course-card {
  transition: box-shadow 0.3s ease;
}
.course-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


    /* Fade-up animation replacement */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.5s ease-out;
    }
    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }


    
    /* Hide scrollbar */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }
    .no-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  

    /* Home-Map section Css */

    /* Tailwind + CSS keyframes for fade-in animation like framer-motion */
    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(3rem); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .animate-fadeIn { animation: fadeIn 0.8s ease-out forwards; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-400 { animation-delay: 0.4s; }


    /* Core Values Section css */

      @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .fade-up {
      animation: fadeUp 0.8s ease-out forwards;
    }

    .slide-in {
      animation: slideIn 0.8s ease-out forwards;
    }

    /* Infrastructure Section Css */

     .tab-btn {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 10px;
    transition: background 0.2s;
  }
  .tab-btn:hover {
    background: rgba(0,0,0,0.05);
  }
  .active-tab {
    background: #0558E2;
    color: white;
  }


  /* About Last Section Css */

   /* Fade-up animation (Framer Motion equivalent) */
    .fade-up {
      opacity: 0;
      transform: translateY(60px);
      animation: fadeUp 1s ease-out forwards;
    }

    .fade-up-delay {
      opacity: 0;
      transform: translateY(80px);
      animation: fadeUp 1.2s ease-out forwards;
      animation-delay: 0.2s;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Service Stats-Section */

      .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .fade-up.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger animation – SAFE */
  .stagger.show > div {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  }

  .stagger.show > div:nth-child(1) { animation-delay: 0s; }
  .stagger.show > div:nth-child(2) { animation-delay: 0.2s; }
  .stagger.show > div:nth-child(3) { animation-delay: 0.4s; }
  .stagger.show > div:nth-child(4) { animation-delay: 0.6s; }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Service carousel Css */

      @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-128px * 7 - 2rem * 7));
      }
    }

    .animate-scroll {
      animation: scroll 20s linear infinite;
    }

    @media (max-width: 768px) {
      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-96px * 7 - 2rem * 7));
        }
      }
    }

    @media (min-width: 769px)  {
      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-112px * 7 - 2rem * 7));
        }
      }
    }


    /* Upskill Acheivement Section Css */

      @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fade-up {
    animation: fadeUp 0.8s ease-out both;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .animate-marquee {
    animation: marquee 20s linear infinite;
  }


  /* Internship main section css */

   @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .animate-fade-up {
      animation: fadeUp 0.6s ease-out forwards;
    }