   /* Custom font import for better visual match */
   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

   :root {
        --color-primary: #FFC72C;
        /* Bright Yellow */
        --color-dark: #1A1A1A;
        --color-light-gray: #f4f4f4;
   }

   body {
        font-family: 'Inter', sans-serif;
        background-color: #ffffff;
   }

   /* Custom CSS for the testimonial carousel */
   .testimonial-scroll-container::-webkit-scrollbar {
        display: none;
   }

   .testimonial-scroll-container {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
        scroll-snap-type: x mandatory;
   }

   .snap-start {
        scroll-snap-align: start;
   }

   /* Utility class for primary color text/border */
   .text-primary {
        color: var(--color-primary);
   }

   .bg-primary {
        background-color: var(--color-primary);
   }

   .border-primary {
        border-color: var(--color-primary);
   }

   /* Icon styling to match the image's small illustrations */
   .icon-illustration {
        width: 3rem;
        /* 48px */
        height: 3rem;
   }

   .hero-section {
        padding: 80px 0;
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
   }

   .container {
        max-width: 1100px;
        padding: 0 30px;
   }

   .hero-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #000;
   }

   .hero-subtext {
        font-size: 18px;
        max-width: 650px;
        color: #444;
        margin-bottom: 25px;
   }

   .hero-tabs span {
        margin-right: 25px;
        font-weight: 600;
        color: #222;
        cursor: pointer;
   }

   .search-box {
        display: flex;
        align-items: center;
        margin-top: 25px;
        max-width: 500px;
   }

   .search-box input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #ccc;
        border-radius: 8px 0 0 8px;
        font-size: 16px;
   }

   .search-box button {
        padding: 14px 25px;
        background: #f9b200;
        border: none;
        border-radius: 0 8px 8px 0;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
   }

   .why-aptech-card {
        width: 360px;
        background: #fff;
        padding: 25px;
        border-radius: 16px;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
   }

   .why-aptech-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
   }

   .desc {
        color: #555;
        line-height: 1.5;
        margin-bottom: 20px;
   }

   .career-title {
        margin-bottom: 6px;
        font-weight: 700;
        color: #222;
   }

   .skills {
        margin-bottom: 15px;
        color: #444;
   }

   .progress-bar {
        width: 100%;
        height: 6px;
        background: #eee;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 12px;
   }

   .progress-bar span {
        display: block;
        width: 80%;
        height: 100%;
        background: #f9b200;
   }

   .course-info small {
        color: #777;
        font-size: 14px;
   }