    :root {
      --primary: #f5b135;
      --secondary: #1E40AF;
      --accent: #D4AF37;
      --dark: #1F2937;
      --light: #F9FAFB;
      --gray-100: #F3F4F6;
      --gray-200: #E5E7EB;
      --gray-300: #D1D5DB;
      --gray-400: #9CA3AF;
      --gray-500: #6B7280;
      --gray-600: #4B5563;
      --gray-700: #374151;
      --gray-800: #1F2937;
      --gray-900: #111827;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--dark);
      background-color: var(--light);
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    
    ul {
      list-style: none;
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section-padding {
      padding: 6rem 0 4rem;
    }
    
    .text-center {
      text-align: center;
    }
    
    .max-w-3xl {
      max-width: 48rem;
      margin-left: auto;
      margin-right: auto;
    }
    
    .font-bold {
      font-weight: bold;
    }
    
    .text-2xl {
      font-size: 2rem;
    }
    
    .text-xl {
      font-size: 1.5rem;
    }
    
    .text-lg {
      font-size: 1.125rem;
    }
    
    .text-sm {
      font-size: 0.875rem;
    }
    
    .mb-4 {
      margin-bottom: 1rem;
    }
    
    .mb-6 {
      margin-bottom: 1.5rem;
    }
    
    .mb-8 {
      margin-bottom: 2rem;
    }
    
    .mb-10 {
      margin-bottom: 2.5rem;
    }
    
    .mb-12 {
      margin-bottom: 3rem;
    }
    
    .flex {
      display: flex;
    }
    
    .flex-col {
      flex-direction: column;
    }
    
    .items-center {
      align-items: center;
    }
    
    .justify-center {
      justify-content: center;
    }
    
    .grid {
      display: grid;
    }
    
    .gap-6 {
      gap: 1.5rem;
    }
    
    .gap-8 {
      gap: 2rem;
    }
    
    .rounded-lg {
      border-radius: 0.5rem;
    }
    
    .rounded-xl {
      border-radius: 1rem;
    }
    
    .rounded-2xl {
      border-radius: 1.5rem;
    }
    
    .shadow-md {
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    
    .shadow-lg {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .shadow-xl {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    
    .text-primary {
      color: var(--primary);
    }
    
    .text-accent {
      color: var(--accent);
    }
    
    .text-gray-400 {
      color: var(--gray-400);
    }
    
    .text-gray-600 {
      color: var(--gray-600);
    }
    
    .bg-primary {
      background-color: var(--primary);
    }
    
    .bg-secondary {
      background-color: var(--secondary);
    }
    
    .bg-accent {
      background-color: var(--accent);
    }
    
    .bg-white {
      background-color: #fff;
    }
    
    .bg-gray-50 {
      background-color: #f9fafb;
    }
    
    .border {
      border: 1px solid var(--gray-200);
    }
    
    .border-gold {
      border-color: rgba(212, 175, 55, 0.2);
    }
    
    .border-b {
      border-bottom: 1px solid var(--gray-200);
    }
    
    .w-full {
      width: 100%;
    }
    
    .py-3 {
      padding: 0.75rem 0;
    }
    
    .px-6 {
      padding: 0 1.5rem;
    }
    
    .transition {
      transition: all 0.3s ease;
    }
    
    .hover-bg-primary:hover {
      background-color: var(--primary);
    }
    
    .hover-text-accent:hover {
      color: var(--accent);
    }
    
    .hover-border-accent:hover {
      border-color: rgba(212, 175, 55, 0.3);
    }
    
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(5px);
      border-bottom: 1px solid var(--gray-200);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 60px;
      max-height: 80px;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo-icon {
      width: 40px;
      height: 40px;
      background-color: var(--primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .logo-text {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary);
    }
    
    .nav-links {
      display: flex;
      gap: 1.5rem;
    }
    
    .nav-links a {
      position: relative;
      font-weight: 500;
      color: var(--gray-700);
      padding-bottom: 4px;
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--accent);
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }
    
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      color: var(--gray-700);
      cursor: pointer;
    }
    
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      padding: 1rem 0;
      border-top: 1px solid var(--gray-200);
    }
    
    .mobile-menu a {
      padding-left: 15px;
      border-left: 3px solid transparent;
      font-weight: 500;
    }
    
    .mobile-menu a:hover {
      border-left-color: var(--accent);
      color: var(--primary);
    }
    
    .hero {
      padding: 10rem 0 6rem;
      background: linear-gradient(to bottom right, rgba(10, 36, 99, 0.05), rgba(30, 64, 175, 0.05));
    }
    
    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    
    .hero-text h1 {
      font-size: 3rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    .hero-text h1 span {
      color: var(--primary);
      border-bottom: 2px solid var(--accent);
      padding-bottom: 5px;
    }
    
    .hero-text p {
      font-size: 1.125rem;
      color: var(--gray-600);
      margin-bottom: 2rem;
      max-width: 90%;
    }
    
    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-weight: 500;
      transition: all 0.3s ease;
      border: 1px solid transparent;
    }
    
    .btn-primary {
      background-color: var(--primary);
      color: white;
      box-shadow: 0 4px 6px -1px rgba(10, 36, 99, 0.2);
    }
    
    .btn-primary:hover {
      background-color: #091f4d;
      box-shadow: 0 10px 15px -3px rgba(10, 36, 99, 0.3);
    }
    
    .btn-outline {
      background-color: white;
      color: var(--primary);
      border-color: rgba(10, 36, 99, 0.2);
    }
    
    .btn-outline:hover {
      background-color: #f3f4f6;
      border-color: rgba(10, 36, 99, 0.3);
    }
    
    .hero-metrics {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    
    .hero-avatar-group {
      display: flex;
      gap: -10px;
    }
    
    .hero-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid white;
      object-fit: cover;
    }
    
    .hero-metrics-text {
      font-size: 0.875rem;
      color: var(--gray-600);
    }
    
    .hero-metrics-text strong {
      color: var(--primary);
      font-weight: bold;
    }
    
    .hero-image {
      position: relative;
    }
    
    .hero-image img {
      border-radius: 1.5rem;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 1;
    }
    
    .hero-image::before,
    .hero-image::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      z-index: 0;
    }
    
    .hero-image::before {
      top: -15px;
      right: -15px;
      width: 100px;
      height: 100px;
      background-color: rgba(212, 175, 55, 0.1);
      filter: blur(30px);
    }
    
    .hero-image::after {
      bottom: -20px;
      left: -20px;
      width: 120px;
      height: 120px;
      background-color: rgba(10, 36, 99, 0.1);
      filter: blur(40px);
    }
    
    .hero-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(31, 41, 55, 0.7), transparent);
      border-radius: 0 0 1.5rem 1.5rem;
      color: white;
    }
    
    .hero-image-overlay h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }
    
    .hero-image-overlay p {
      font-size: 0.875rem;
      opacity: 0.9;
    }
    
    /* .section-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    } */
    
    .section-subtitle {
      font-size: 1.125rem;
      color: var(--gray-600);
      max-width: 70%;
      margin: 0 auto 3rem;
    }
    
    .industry-background {
      background-color: white;
    }
    
    .background-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
    }
    
    .background-card {
      padding: 2rem;
      background-color: white;
      border-radius: 1rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .background-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      border-color: rgba(212, 175, 55, 0.2);
    }
    
    .background-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--gray-800);
      position: relative;
      padding-bottom: 0.75rem;
    }
    
    .background-card h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--accent);
    }
    
    .background-card p {
      color: var(--gray-600);
      line-height: 1.7;
    }
    
    .project-features {
      background-color: var(--gray-50);
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .feature-card {
      background-color: white;
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--border-gold);
      transition: all 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      border-color: var(--accent);
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
      background-color: rgba(10, 36, 99, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }
    
    .feature-card h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    
    .feature-card p {
      color: var(--gray-600);
      font-size: 0.9rem;
    }
    
    .course-structure {
      background-color: white;
    }
    
    .structure-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .structure-card {
      background-color: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--border-gold);
    }
    
    .structure-card-image {
      height: 180px;
      overflow: hidden;
    }
    
    .structure-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .structure-card:hover .structure-card-image img {
      transform: scale(1.05);
    }
    
    .structure-card-content {
      padding: 1.5rem;
    }
    
    .structure-card h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    
    .structure-card p {
      color: var(--gray-600);
      font-size: 0.9rem;
      line-height: 1.6;
    }
    
    .course-content {
      background-color: var(--gray-50);
    }
    
    .course-table {
      width: 70%;
      border-collapse: collapse;
      margin-top: 2rem;
      overflow: hidden;
      border-radius: 1rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .course-table td{
      line-height: 2.5em;
      padding: 0 10px;
    }
    .hmp_list{
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .hmp_item{
      width: 40%;
    }

    .teacher-item{
      height: 224px;
    }

    .certification-section {
      background-color: white;
    }
    
    .certification-content {
      display: flex;
      align-items: center;
      justify-content: space-around;
      text-align: left;
    }
    
    .certificate-image {
      max-width: 40%;
      margin: 3rem 0;
      border-radius: 1rem;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--border-gold);
    }
    
    .certificate-details {
      max-width: 600px;
      margin-top: 2rem;
    }
    
    .certificate-details h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    
    .certificate-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .certificate-item {
      background-color: white;
      padding: 1.5rem;
      border-radius: 0.75rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      border-left: 3px solid var(--accent);
    }
    
    .certificate-item h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }
    
    .certificate-item p {
      color: var(--gray-600);
      font-size: 0.9rem;
    }
    
    .apply-section {
      background-color: var(--primary);
      color: white;
    }
    
    .apply-content {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
    
    .apply-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }
    
    .apply-content p {
      opacity: 0.9;
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }
    
    .apply-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
    }
    
    .form-group label {
      margin-bottom: 0.5rem;
      font-weight: 500;
      opacity: 0.9;
    }
    
    .form-group input,
    .form-group textarea {
      padding: 1rem 1.5rem;
      border-radius: 0.5rem;
      border: none;
      background-color: rgba(255, 255, 255, 0.1);
      color: white;
      outline: none;
      transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      background-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    }
    
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .apply-btn {
      background-color: var(--accent);
      color: var(--primary);
      font-weight: 600;
      font-size: 1.1rem;
      border: none;
      cursor: pointer;
    }
    
    .apply-btn:hover {
      background-color: #b8972f;
    }
    
    /* footer {
      background-color: var(--gray-900);
      color: white;
      padding: 6rem 0 2rem;
    } */
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.5rem;
    }
    
    .footer-logo .logo-icon {
      background-color: white;
      color: var(--primary);
    }
    
    .footer-logo .logo-text {
      color: white;
    }
    
    .footer-desc {
      color: var(--gray-400);
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
    }
    
    .social-links a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-400);
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background-color: var(--accent);
      color: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-title {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.75rem;
    }
    
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--accent);
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-links a {
      color: var(--gray-400);
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--accent);
      padding-left: 5px;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: var(--gray-400);
      font-size: 0.9rem;
    }
    
    .contact-item i {
      margin-top: 3px;
      color: var(--accent);
    }
    
    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid var(--gray-800);
      text-align: center;
      color: var(--gray-500);
      font-size: 0.85rem;
    }
    
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px -1px rgba(10, 36, 99, 0.2);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 99;
      border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top i {
      color: var(--accent);
    }
    
    @media (max-width: 992px) {
      .hero-content {
        grid-template-columns: 1fr;
      }
      
      .about-content,
      .background-content {
        grid-template-columns: 1fr;
      }
      
      .hero-text h1 {
        font-size: 2.5rem;
      }
      .certification-content{
        flex-direction: column;
      }
      .certificate-image{
        max-width: 100%;
      }
    }
    
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .mobile-menu {
        display: flex;
      }
      
      .section-padding {
        padding: 4rem 0 3rem;
      }
      
      .hero {
        padding: 8rem 0 4rem;
      }
      
      .hero-text h1 {
        font-size: 2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .section-subtitle {
        max-width: 100%;
      }
      .certification-content{
        flex-direction: column; 
      }
      .certificate-image{
        max-width: 100%;
      }
    }
    
    @media (max-width: 576px) {
      .hero-metrics {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .course-table th,
      .course-table td {
        padding: 1rem;
        font-size: 0.9rem;
      }
      .certification-content{
        flex-direction: column;
      }
      .certificate-image{
        max-width: 100%;
      }
    }