      :root {
        --maroon-800: #a94456;
        --maroon-900: #8d2a3b;
        --yellow-400: #d4af37;
        --yellow-500: #c09c28;
        --gray-100: #f4f4f4;
        --gray-200: #e5e7eb;
        --gray-700: #374151;
        --gray-800: #1f2937;
        --text-default: #333;
        --white: #ffffff;
        --black: #000000;
      }

     
      .section-title {
        font-size: 1.875rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2.5rem;
        color: var(--maroon-800);
      }
      @media (min-width: 768px) {
        .section-title {
          font-size: 2.25rem;
        }
      }
      .section-title.text-white {
        color: var(--white);
      }
      .section-title::after {
        content: "";
        display: block;
        width: 0px;
        height: 3px;
        background-color: var(--yellow-400);
        margin: 10px auto 0;
        transition: width 0.6s ease-out;
      }
      .section-title.text-white::after {
        background-color: var(--white);
      }
      .animate-on-scroll.is-visible .section-title::after,
      .section-title.animate-on-scroll.is-visible::after {
        width: 60px;
      }

      .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
      }
      .bg-white {
        background-color: var(--white);
      }
      .bg-gray-100 {
        background-color: var(--gray-100);
      }
      .shadow-sm {
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      }

      .hero {
        position: relative;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 5rem;
        padding-bottom: 5rem;
        color: var(--white);
		margin-top:170px;
      }
      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
      }
      .hero .container {
        position: relative;
        z-index: 10;
      }
      .hero-content-wrapper {
        display: flex;
        justify-content: center;
        text-align: center;
      }
      .course-info {
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px) saturate(120%);
        -webkit-backdrop-filter: blur(10px) saturate(120%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        padding: 2rem;
        border-radius: 0.75rem;
        max-width: 56rem;
        width: 100%;
        text-align: left;
      }
      @media (min-width: 768px) {
        .course-info {
          padding: 2.5rem;
        }
		
      }
	 
      .course-info h1 {
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--white);
      }
      @media (min-width: 768px) {
        .course-info h1 {
          font-size: 2.25rem;
        }
      }
      .course-info .subtitle {
        font-size: 1.125rem;
        color: var(--yellow-400);
        font-style: italic;
        margin-bottom: 1.5rem;
      }
      @media (min-width: 768px) {
        .course-info .subtitle {
          font-size: 1.25rem;
        }
      }
      .course-details {
        color: var(--gray-200);
        margin-bottom: 2rem;
		margin-left:80px;
      }
	  
	   @media (max-width: 768px) 
	  {
	  .hero {margin-top:0px}
	  .course-details {
       
		margin-left:0px;
      }
	 }
	  
	  
      .course-details .detail {
        margin-bottom: 0.75rem;
      }
      .course-details .detail strong:first-child {
        color: var(--yellow-400);
        margin-right: 0.5rem;
      }
      .course-details .detail strong:not(:first-child) {
        font-weight: 700;
      }
      .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      @media (min-width: 768px) {
        .cta-buttons {
          flex-direction: row;
        }
      }
      .btn {
        padding: 0.75rem 2rem;
        border-radius: 0.375rem;
        font-weight: 600;
        transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
          border-color 0.3s ease-in-out;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        cursor: pointer;
        border: 1px solid transparent;
      }
      .btn-primary {
        background-color: var(--yellow-400);
        color: var(--gray-800);
      }
      .btn-primary:hover {
        background-color: var(--yellow-500);
      }
      .btn-secondary {
        background-color: transparent;
        border: 1px solid var(--white);
        color: var(--white);
      }
      .btn-secondary:hover {
        background-color: var(--white);
        color: var(--maroon-800);
      }

      .program-details .details-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
      }
      @media (min-width: 768px) {
        .program-details .details-container {
          flex-direction: row;
        }
      }
      .program-details .details-content {
        flex-grow: 1;
      }
      @media (min-width: 768px) {
        .program-details .details-content {
          width: 66.666667%;
        }
      }
      .program-details ul {
        list-style-type: disc;
        list-style-position: inside;
        color: var(--gray-700);
        margin-bottom: 2rem;
        padding-left: 0;
      }
      .program-details ul li {
        margin-bottom: 0.75rem;
      }

      .key-highlights ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem 2.5rem;
        list-style: none;
        color: var(--gray-700);
        margin-bottom: 2rem;
        padding-left: 0;
      }
      @media (min-width: 768px) {
        .key-highlights ul {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .key-highlights ul li {
        position: relative;
        padding-left: 2rem;
        line-height: 1.5;
      }
      .key-highlights ul li i {
        position: absolute;
        left: 0;
        top: -0.1em;
        color: var(--maroon-800);
        font-size: 1.25rem;
      }

      .career-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        color: var(--gray-700);
        margin-bottom: 2rem;
      }
      @media (min-width: 768px) {
        .career-list {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (min-width: 1024px) {
        .career-list {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      .career-list li {
        background-color: #f9f9f9;
        padding: 12px 20px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        transition: background-color 0.3s ease, transform 0.2s ease,
          box-shadow 0.2s ease;
        font-weight: 500;
        color: #444;
        display: flex;
        align-items: center;
      }
      .career-list li:hover {
        background-color: var(--yellow-400);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 3px 8px rgba(211, 175, 53, 0.2);
      }
      .career-list li .emoji {
        margin-right: 10px;
        font-size: 1.2em;
      }

      .carousel-container {
        position: relative;
        overflow: hidden;
      }
      .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
      }
      .testimonial {
        box-sizing: border-box;
        background-color: var(--white);
        padding: 2rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -1px rgba(0, 0, 0, 0.06);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: box-shadow 0.3s ease-in-out;
        flex-shrink: 0;
      }
      @media (min-width: 768px) {
        .testimonial {
          margin-left: 5px;
          margin-right: 5px;
        }
      }
      .testimonial:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
          0 4px 6px -2px rgba(0, 0, 0, 0.05);
      }
      .testimonial img {
        width: 5rem;
        height: 5rem;
        border-radius: 9999px;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid var(--yellow-400);
      }
      .testimonial h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--maroon-800);
        margin-bottom: 0.5rem;
      }
      .testimonial p {
        color: var(--gray-700);
        font-style: italic;
      }
      .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
        transition: background-color 0.3s ease;
      }
      .carousel-control:hover {
        background-color: rgba(0, 0, 0, 0.8);
      }
      .carousel-prev {
        left: 10px;
      }
      .carousel-next {
        right: 10px;
      }
      .carousel-control:disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }

      .top-recruiters .text-center {
        text-align: center;
      }
      .top-recruiters .text-gray-700 {
        color: var(--gray-700);
      }
      .top-recruiters .mb-10 {
        margin-bottom: 2.5rem;
      }
      .recruiters-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
        align-items: center;
      }
      .recruiter {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background-color: #d4af37;
        border-radius: 0.5rem;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
      }
      .recruiter:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -1px rgba(0, 0, 0, 0.06);
      }
      .recruiter img {
        max-height: 3rem;
        width: auto;
        filter: grayscale(1);
        opacity: 0.7;
        transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
      }
      .recruiter img:hover {
        filter: grayscale(0);
        opacity: 1;
      }

      .faqs .container {
        max-width: 56rem;
      }
      .faq {
        background-color: var(--white);
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -1px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        margin-bottom: 1rem;
      }
      .faq:last-child {
        margin-bottom: 0;
      }
      .faq h3 {
        padding: 1.25rem;
        cursor: pointer;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--gray-800);
        position: relative;
        transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
      }
      .faq h3:hover {
        background-color: #f9fafb;
        color: var(--maroon-800);
      }
      .faq h3 i {
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.4s ease-in-out;
        color: var(--maroon-800);
      }
      .faq.active h3 i {
        transform: translateY(-50%) rotate(180deg);
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
          padding 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }
      .faq-answer p {
        padding-top: 0;
        padding-bottom: 0;
        color: var(--gray-700);
        opacity: 0;
        transition: opacity 0.3s ease-in-out 0.2s,
          padding-top 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
          padding-bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      }
      .faq.active .faq-answer {
        max-height: 1000px;
      }
      .faq.active .faq-answer p {
        opacity: 1;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
      }

      .contact-cta {
        background-color: var(--yellow-500);
        color: var(--white);
        text-align: center;
      }
      .contact-cta p {
        max-width: 42rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.125rem;
        margin-bottom: 2rem;
      }
      .contact-cta .btn {
        background-color:var(--maroon-800);
        color: #fff;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        display: inline-block;
      }
      .contact-cta .btn:hover {
        background-color: var(--white);
        color: var(--maroon-800);
      }

      .syllabus-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
      }
      .syllabus-overlay.visible {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s, 0s;
      }
      .syllabus-overlay-content {
        background-color: var(--white);
        padding: 2rem;
        border-radius: 0.5rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
          0 10px 10px -5px rgba(0, 0, 0, 0.04);
        max-width: 42rem;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        transform: scale(0.95);
        opacity: 0;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
      }
      .syllabus-overlay.visible .syllabus-overlay-content {
        transform: scale(1);
        opacity: 1;
      }
      .close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: #6b7280;
        font-size: 1.875rem;
        cursor: pointer;
        transition: color 0.3s ease-in-out;
        line-height: 1;
      }
      .close-btn:hover {
        color: var(--gray-800);
      }
      .syllabus-overlay-content h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--maroon-800);
        text-align: center;
        margin-bottom: 1.5rem;
      }
      .syllabus-overlay-content p.intro {
        color: var(--gray-700);
        margin-bottom: 1.5rem;
      }
      .syllabus-overlay-content h4 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--gray-800);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: 0.5rem;
      }
      .syllabus-overlay-content ul {
        list-style: disc;
        list-style-position: inside;
        color: var(--gray-700);
        margin-bottom: 1.5rem;
        padding-left: 1rem;
      }
      .syllabus-overlay-content ul li {
        margin-bottom: 0.5rem;
      }

      .animate-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
      }
      .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
      }
      .animate-on-scroll.fade-in {
        transform: none;
      }
      .animate-on-scroll.scale-up {
        transform: scale(0.95);
      }
      .animate-on-scroll.scale-up.is-visible {
        opacity: 1;
        transform: scale(1);
      }
      .animate-on-scroll-children > * {
        opacity: 0;
        transform: translateY(20px);
      }