@charset "UTF-8";
/* CSS Document */

  /* Modern CSS Styles */
  .courses-section {
    padding: 3rem 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

/* General header styles */
.header-contacts {
  background: #2A4365;
  padding: 0.8rem 0;
  font-family: 'Inter', sans-serif;
  color: white;
}

/* Container */
.header-contacts .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}

/* Links wrapper */
.contact-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Individual links */
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  opacity: 0.8;
  color: #E8E8E8;
}

/* Icon */
.contact-link .icon {
  flex-shrink: 0;
}

/* Responsive design */
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3d469a;
    text-align: center;
    margin-bottom: 1rem;
  }

.trainer-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 15px;
        }
        
        /* Hero Section */
        .trainer-hero-section {
            background: linear-gradient(135deg, #1e88e5, #0d47a1);
            padding: 30px 20px;
            border-radius: 10px;
            color: white;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .trainer-hero-section h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .trainer-tagline {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .trainer-tagline div {
            background: rgba(255,255,255,0.15);
            padding: 8px 15px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
        }
        
        /* Trainer Cards */
        .trainers-section {
            margin-bottom: 30px;
        }
        
        .trainer-section-title {
            font-size: 1.7rem;
            color: #1e88e5;
            border-bottom: 3px solid #ff9800;
            display: inline-block;
            padding-bottom: 5px;
            margin-bottom: 20px;
        }
        
        .trainer-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #ff9800;
        }
        
        .trainer-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .trainer-number {
            background: #ff9800;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .trainer-name {
            font-size: 1.3rem;
            margin: 0;
            color: #1e88e5;
        }
        
        .trainer-details ul {
            padding-left: 18px;
            margin-top: 10px;
        }
        
        .trainer-details li {
            margin-bottom: 8px;
            display: flex;
            gap: 6px;
        }
        
        .trainer-details span {
            color: #ff9800;
        }
        
        /* Trainer-stats Section */
        .trainer-stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .trainer-stat-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border-top: 4px solid #1e88e5;
            text-align: center;
        }
        
        .trainer-stat-card:nth-child(2) {
            border-top-color: #ff9800;
        }
        
        .trainer-stat-icon {
            font-size: 2rem;
            color: #1e88e5;
            margin-bottom: 10px;
        }
        
        .trainer-stat-card:nth-child(2) .trainer-stat-icon {
            color: #ff9800;
        }
        
        .trainer-stat-title {
            font-size: 1.2rem;
            color: #1e88e5;
            margin-bottom: 10px;
        }
        
        .trainer-stat-card:nth-child(2) .trainer-stat-title {
            color: #ff9800;
        }
        
        .trainer-stat-list {
            list-style: none;
            padding-left: 0;
        }
        
        .trainer-stat-list li {
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .trainer-stat-list span {
            color: #1e88e5;
        }
        
        .trainer-stat-card:nth-child(2) .trainer-stat-list span {
            color: #ff9800;
        }
        
        /* CTA Section */
        .trainer-cta-section {
            background: linear-gradient(135deg, #ff9800, #f57c00);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            color: white;
            margin-bottom: 30px;
        }
        
        .trainer-cta-section h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .trainer-cta-section p {
            font-size: 1rem;
            margin-bottom: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .trainer-cta-buttons{
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .trainer-cta-btn {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 0.9rem;
        }
        
        .trainer-cta-btn.primary {
            background: white;
            color: #ff9800;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .trainer-cta-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
        }
        
        .trainer-cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .trainer-cta-btn.secondary:hover {
            background: rgba(255,255,255,0.2);
        }

  /* Audience Section Styles */
  .audience-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2.25rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    color: #4299e1;
    font-weight: 500;
  }
  
  .audience-tabs {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  .tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .about-tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .about-tab-btn:hover {
    color: #3d469a;
  }
  
  .about-tab-btn.active {
    color: #3d469a;
  }
  
  .about-tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #3d469a;
  }
  
  .tab-content {
    display: none;
    padding: 30px;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .audience-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }
  
  .audience-icon {
    font-size: 2.5rem;
    color: #3d469a;
    padding: 20px;
    background: #ebf8ff;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .audience-details {
    flex: 1;
  }
  
  .audience-details h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
  }
  
  .benefit-list {
    margin-bottom: 25px;
  }
  
  .benefit-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .benefit-list i {
    color: #3b8181;
    margin-top: 3px;
  }
  
  .program-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4299e1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .program-cta:hover {
    color: #3182ce;
    gap: 12px;
  }
  
  @media (max-width: 768px) {
   
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: #878aa2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }
  
  .tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  
  .tab-btn {
    background: white;
      color: #2D3748;
      border: 1px solid #E2E8F0;
      border-radius: 50px;
      padding: 3px 24px;
      font-weight: 500;
      transition: all 0.2s;
      cursor: pointer;
      font-size: 0.95rem;
  }
  
  .tab-btn:hover {
	  background: #1A365D;
      color: white;
      border-color: #1A365D;
  }
  
  .tab-btn.active {
	  background: #1A365D;
      color: white;
      border-color: #1A365D;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .course-image {
    position: relative;
    height: 180px;
    overflow: hidden;
  }
  
  .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .course-card:hover .course-image img {
    transform: scale(1.05);
  }
  
  .course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .course-card:hover .course-overlay {
    opacity: 1;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
	border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
  }
  
  .btn-outline:hover {
    background: white;
    color: #2d3748;
  }
  
  .btn-primary {
    background: #4299e1;
    border: 2px solid #4299e1;
    color: white;
  }
  
  .btn-primary:hover {
    background: #3182ce;
    border-color: #3182ce;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
  }
  
  .course-info {
    padding: 1.5rem;
  }
  
  .course-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e6e7f8;
    color: #3d469a;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .course-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
  }
  
  .course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #718096;
  }
  
  .course-meta i {
    margin-right: 0.25rem;
  }
  
  .course-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .stars {
    color: #f6ad55;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 2rem;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    position: relative;
    background-color: transparent;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 900px;
  }
  
  .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  @media (max-width: 768px) {
	  
	    .header-contacts .container {
    justify-content: space-around;
  }
  .contact-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
	
  }
	  
    .course-grid {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .tab-nav {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
    }
    
    .section-title {
      font-size: 2rem;
    }
	        .cta-content {
        padding: 2.5rem 2rem;
      }
      
      .cta-heading {
        font-size: 2rem;
      }
      
      .cta-subheading {
        font-size: 1.1rem;
      }
      
      .cta-secondary-options {
        flex-direction: column;
        gap: 1rem;
      }
      
      .btn-enroll,
      .btn-programs,
      .btn-consultation {
        width: 100%;
        justify-content: center;
      }
      
      .alumni-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
	  
	        .course-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
      }
      
      .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
      }
	  
	        .footer-container > div {
        grid-template-columns: 1fr 1fr;
      }
      .footer-brand {
        grid-column: span 2;
      }
       .job-meta {
                flex-direction: column;
                gap: 5px;
            }
            
            .application-form {
                padding: 20px;
            }
  }

    /* Base Styles */
    .academy-cta-section {
      --primary: #2A4365;
      --secondary: #F6AD55;
      --accent: #38B2AC;
      --dark: #3d469a;
      --light: #F8FAFC;
      --text-light: #FFFFFF;
      --text-dark: #1A365D;
      --gray: #718096;
      
      font-family: 'Inter', 'Open Sans', sans-serif;
      position: relative;
      margin: 5rem 0;
      color: var(--text-dark);
    }
    
    .cta-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    /* Background Elements */
    .cta-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    
    .bg-pattern {
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
      background-size: 20px 20px;
      opacity: 0.3;
    }
    
    .bg-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.95) 100%);
    }
    
    .bg-graphic-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    
    .graphic-circle {
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(56, 178, 172, 0.08);
    }
    
    .graphic-line {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    }
    
    /* Content Styling */
    .cta-content {
      position: relative;
      z-index: 1;
      padding: 4rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    .accreditation-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(246, 173, 85, 0.1);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--dark);
      width: fit-content;
      border: 1px solid rgba(246, 173, 85, 0.3);
    }
    
    .cta-heading {
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
      color: var(--dark);
    }
    
    .highlight {
      color: var(--secondary);
      position: relative;
      display: inline-block;
    }
    
    .highlight::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(246, 173, 85, 0.3);
      z-index: -1;
      transform: rotate(-1deg);
    }
    
    .cta-subheading {
      font-size: 1.25rem;
      color: #878aa2;
      max-width: 700px;
      margin: 0;
    }
    
    .cta-features {
      display: flex;
      flex-direction: row;
      gap: 0.75rem;
      margin: 1rem 0;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      color: var(--dark);
    }
    
    /* Action Area */
    .cta-action-area {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      margin-top: 1rem;
    }
    
    .btn-enroll {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      background: linear-gradient(135deg, var(--secondary) 0%, #ED8936 100%);
      color: var(--dark);
      font-weight: 600;
      padding: 1rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(246, 173, 85, 0.2);
      width: fit-content;
    }
    
    .btn-enroll:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(246, 173, 85, 0.3);
    }
    
    .cta-secondary-options {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    
    .btn-programs,
    .btn-consultation {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary);
      font-weight: 500;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      background: rgba(42, 67, 101, 0.05);
      border: 1px solid rgba(42, 67, 101, 0.1);
    }
    
    .btn-programs:hover,
    .btn-consultation:hover {
      background: rgba(42, 67, 101, 0.1);
      border-color: rgba(42, 67, 101, 0.2);
    }
    
    /* Alumni Proof Section */
    .alumni-proof {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    .alumni-images {
      display: flex;
    }
    
    .alumni-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      border: 3px solid white;
      margin-right: -10px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .alumni-text {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: #878aa2;
    }
    
    .company-logos {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }
    
    .company-logo {
      height: 24px;
      opacity: 0.8;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .cta-content {
        padding: 3rem;
      }
      
      .cta-heading {
        font-size: 2.4rem;
      }
    }
    
    @media (max-width: 480px) {
      .cta-content {
        padding: 2rem 1.5rem;
      }
      
      .cta-heading {
        font-size: 1.8rem;
      }
      
      .highlight::after {
        height: 6px;
        bottom: 3px;
      }
		.course-grid {
        grid-template-columns: 1fr;
      }
		      .footer-container > div {
        grid-template-columns: 1fr;
      }
      .footer-brand {
        grid-column: span 1;
      }
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .cta-content > * {
      animation: fadeIn 0.6s ease-out forwards;
    }
    
    .accreditation-badge { animation-delay: 0.1s; }
    .cta-heading { animation-delay: 0.2s; }
    .cta-subheading { animation-delay: 0.3s; }
    .cta-features { animation-delay: 0.4s; }
    .cta-action-area { animation-delay: 0.5s; }
    .alumni-proof { animation-delay: 0.6s; }

    .courses-section {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }
    
    .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #3d469a;
      text-align: center;
    }
    
    .category-buttons {
      display: flex;
      gap: 12px;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .category-btn {
      background: white;
      color: #2D3748;
      border: 1px solid #E2E8F0;
      border-radius: 50px;
      padding: 4px 24px;
      font-weight: 500;
      transition: all 0.2s;
      cursor: pointer;
      font-size: 0.95rem;
    }
    
    .category-btn:hover,
    .category-btn.active {
      background: #1A365D;
      color: white;
      border-color: #1A365D;
    }
    
    .course-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
    }
    
    .course-card {
      border: 1px solid #EDF2F7;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
      text-decoration: none;
      color: inherit;
    }
    
    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
    .card-image-container {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    
    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .course-card:hover .card-image {
      transform: scale(1.05);
    }
    
    .course-header {
      padding: 1.5rem;
    }
    
    .course-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #1A365D;
      line-height: 1.3;
    }
    
    .institution {
      font-size: 0.95rem;
      color: #4A5568;
      display: block;
    }
    
    .course-footer {
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .course-type {
      padding: 6px 12px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
    }
    
    .executive {
      background: #EBF8FF;
      color: #2B6CB0;
    }
    
    .certificate {
      background: #FAF5FF;
      color: #6B46C1;
    }
    
    .duration {
      font-size: 0.85rem;
      color: #718096;
    }
    .enterprise-cta a:first-child:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 30px rgba(246,173,85,0.5);
    }
    .enterprise-cta a:first-child:hover span:last-child {
      opacity: 1;
    }
    .enterprise-cta a:last-child:hover {
      transform: translateY(-3px);
      background: rgba(246,173,85,0.1);
      box-shadow: 0 0 0 2px #F6AD55;
    }
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    .enterprise-cta h2 span {
      animation: pulse 3s infinite;
    }

    .footer-links a:hover,
    .social-links a:hover,
    .footer-bottom a:hover {
      color: #F6AD55 !important;
    }
    @media (max-width: 768px) {

    }
    @media (max-width: 480px) {

    }

/*.course-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 50px 0;
            text-align: center;
        }

        .course-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .course-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
			color: #FFF;
        }*/

        .enroll-btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 10px;
        }

        .enroll-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
			color: var(--white);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .secondary-btn {
            background: transparent;
            border: 2px solid var(--white);
        }

        .secondary-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Course Details Grid */
        .course-details {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            padding: 60px 0;
        }

        /* Main Content */
        .course-content {
            background: var(--white);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .course-section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
        }

        .course-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }

        .course-overview p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        /* What You'll Learn */
        .learning-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }

        .learning-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 15px;
            background: rgba(67,97,238,0.05);
            border-radius: 8px;
        }

        .learning-item i {
            color: var(--primary);
            margin-top: 3px;
        }

        /* Course Curriculum */
        .curriculum-accordion {
            margin: 40px 0;
        }

        .accordion-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .accordion-header {
            background: var(--white);
            padding: 18px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            border-left: 4px solid var(--primary);
        }

        .accordion-header:hover {
            background: var(--light-gray);
        }

        .accordion-content {
            background: var(--white);
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content-inner {
            padding: 20px 0;
        }

        .module-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .module-item:last-child {
            border-bottom: none;
        }

        .module-duration {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Sidebar */
        .course-sidebar {
            position: sticky;
            top: 20px;
        }

        .sidebar-card {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .course-features li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .course-features li:last-child {
            border-bottom: none;
        }

        .feature-label {
            color: var(--gray);
        }

        .feature-value {
            font-weight: 600;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
            text-align: center;
        }

        .instructor-card {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-top: 20px;
        }

        .instructor-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .instructor-info h4 {
            margin-bottom: 5px;
        }

        .instructor-title {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 60px 0;
            background: var(--light-gray);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--gray);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h5 {
            margin-bottom: 5px;
        }

        .author-role {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* FAQ */
        .faq-section {
            padding: 60px 0;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .course-details {
                grid-template-columns: 1fr;
            }
            
            .course-sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .course-header {
                padding: 80px 0;
            }
            
            .course-header h1 {
                font-size: 2.2rem;
            }
            
            .course-content {
                padding: 30px;
            }
            
            .sidebar-card {
                padding: 25px;
            }
			.trainer-tagline {
                gap: 10px;
            }
            
            .trainer-tagline div {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            
            .trainer-hero-section h1 {
                font-size: 1.7rem;
            }
            
            .trainer-hero-section h2 {
                font-size: 1.3rem;
            }
            
            .trainer-section-title {
                font-size: 1.5rem;
            }
            
            .trainer-stats-section {
                grid-template-columns: 1fr;
            }
            
            .trainer-cta-buttons{
                flex-direction: column;
                align-items: center;
            }
            
            .trainer-cta-btn {
                width: 100%;
                max-width: 250px;
            }
			
			 .tab-buttons {
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: 10px;
    }
    
    .audience-card {
      flex-direction: column;
    }
    
    .audience-icon {
      align-self: center;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
    }
        }

        @media (max-width: 576px) {
            .course-header {
                padding: 60px 0;
            }
            
            .course-section-title {
                font-size: 1.5rem;
            }
            
            .learning-list {
                grid-template-columns: 1fr;
            }
        }


        /* Header */
        .career-header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .career-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        /* Job Listings */
        .job-listings {
            padding: 60px 0;
        }
        
        .job-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .job-card:hover {
            transform: translateY(-5px);
        }
        
        .job-title {
            color: #2c3e50;
            margin-top: 0;
        }
        
        .job-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            color: #7f8c8d;
        }
        
        .job-department {
            display: inline-block;
            background: #e3f2fd;
            color: #1976d2;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .apply-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 10px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .apply-btn:hover {
            background: #2980b9;
        }
        
        /* Benefits Section */
        .benefits-section {
            background: #f1f5f9;
            padding: 60px 0;
            text-align: center;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 15px;
        }
        
        /* Application Form */
        .application-section {
            padding: 60px 0;
        }
        
        .application-form {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        textarea.form-control {
            min-height: 150px;
        }
        
        .submit-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #2980b9;
        }
       

