/* Corporate Training - Professional Futuristic Style
   Learning Hub - 2025
   Enhanced with modern UI elements and dynamic interactions
*/

:root {
    /* Matte color palette with more subdued green tones */
    --primary-color: #2d6a4f;  /* Matte deep green */
    --primary-light: #40916c;  /* Matte medium green */
    --primary-dark: #1b4332;   /* Matte dark green */
    --secondary-color: #52b788; /* Matte green accent */
    --accent-color: #74c69d;   /* Matte light green */
    --dark-color: #081c15;     /* Very dark green-black */
    --light-color: #f1f5f3;    /* Off-white with slight green tint */
    --text-color: #263d33;     /* Dark green-gray for text */
    --bg-light: #e9f0ed;       /* Background with green tint */
    
    /* Matte gradients */
    --accent-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --hover-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    --futuristic-gradient: linear-gradient(135deg, rgba(45, 106, 79, 0.9) 0%, rgba(82, 183, 136, 0.9) 100%);
    
    /* Removed neon effects for matte look */
    --glow-color: rgba(82, 183, 136, 0.2);
    
    /* Animation speeds */
    --transition-fast: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-medium: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    
    /* Spacing */
    --section-spacing: 120px;
    --card-spacing: 30px;
    
    /* Border radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
  }
  
  /* General Styles with enhanced futuristic feel */
  body {
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--bg-light);
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(26, 93, 58, 0.03) 0%, transparent 80%),
      radial-gradient(circle at 90% 80%, rgba(0, 230, 118, 0.03) 0%, transparent 80%);
    background-attachment: fixed;
  }
  
  /* Enhanced section styling */
  section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
  }
  
  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  
  /* Improved section headers with futuristic design */
  .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
  }
  
  .section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-color);
  }
  
  .section-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.3s;
  }
  
  .section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.5s;
    letter-spacing: -0.5px;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
  }
  
  .animated-bar {
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 0 auto;
    opacity: 0;
    transform: scaleX(0);
    animation: expandWidth 1s forwards;
    animation-delay: 0.8s;
    border-radius: 3px;
  }
  
  /* Remove animations */
  
  /* Futuristic Hero Section */
  .hero-banner {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(170deg, #f8faf9 0%, #e6f5ef 100%);
    padding: 120px 0 100px;
    overflow: hidden;
  }
  
  .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(0, 230, 118, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(26, 93, 58, 0.1) 0%, transparent 50%);
    z-index: 1;
  }
  
  .hero-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 20px;
  }
  
  .hero-banner h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  
  .hero-banner h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: var(--accent-gradient);
    transform: translateX(-50%);
    border-radius: 4px;
  }
  
  .hero-banner p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
  
  .hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 15px 38px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
  }
  
  .btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  /* Enhanced hero visual elements */
  /* Remove visual elements */
  
  @keyframes floatAnimation {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(40px, 40px);
    }
  }
  
  @keyframes pulseAnimation {
    0%, 100% {
      opacity: 0.04;
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      opacity: 0.1;
      transform: translate(-50%, -50%) scale(1.5);
    }
  }
  
  @keyframes particlesAnimation {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100px 100px;
    }
  }
  
  /* Introduction Section - with modern design */
  .intro-section {
    background-color: white;
    position: relative;
  }
  
  .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .intro-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #36454f;
    line-height: 1.7;
  }
  
  .intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  
  .feature-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(45, 106, 79, 0.05);
  }
  
  .feature-card {
    transform: translateY(0);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
  }
  
  .feature-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
  }
  
  /* Training Areas - simplified card design */
  .training-areas {
    background-color: var(--bg-light);
    position: relative;
  }
  
  .training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .training-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    border: 1px solid rgba(45, 106, 79, 0.05);
  }
  
  .training-card {
    transform: translateY(0);
  }
  
  .card-icon {
    flex: 0 0 90px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    position: relative;
    overflow: hidden;
  }
  
  .card-content {
    padding: 30px;
    flex: 1;
  }
  
  .card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 12px;
  }
  
  .card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-medium);
  }
  
  .card-content h3 {
    color: var(--dark-color);
  }
  
  .card-content h3::after {
    width: 40px;
    background: var(--primary-color);
  }
  
  .card-content p {
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.7;
  }
  
  /* Benefits Section - simplified design */
  .benefits-section {
    background-color: white;
    position: relative;
  }
  
  .benefits-content {
    display: block;
    margin-top: 30px;
  }
  
  .benefits-visual {
    display: none;
  }
  
  .visual-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .hexagon {
    position: absolute;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    background: var(--accent-gradient);
    opacity: 0;
    transform: scale(0.5);
    animation: fadeInScale 0.8s forwards;
    box-shadow: 0 10px 30px var(--glow-color);
    transition: var(--transition-medium);
  }
  
  .hexagon {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hex1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    animation-delay: 0.3s;
  }
  
  .hex2 {
    top: 35%;
    left: 15%;
    animation-delay: 0.5s;
  }
  
  .hex3 {
    top: 35%;
    right: 15%;
    animation-delay: 0.7s;
  }
  
  .hex4 {
    bottom: 0;
    left: 25%;
    animation-delay: 0.9s;
  }
  
  .hex5 {
    bottom: 0;
    right: 25%;
    animation-delay: 1.1s;
  }
  
  .connection-line {
    position: absolute;
    background: linear-gradient(to right, rgba(26, 93, 58, 0.3), rgba(0, 230, 118, 0.3));
    height: 3px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: expandWidth 0.8s forwards;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.2);
  }
  
  .line1 {
    top: 65px;
    left: calc(50% - 10px);
    width: 130px;
    transform-origin: right;
    animation-delay: 1.3s;
  }
  
  .line2 {
    top: 170px;
    left: calc(50% - 130px);
    width: 260px;
    animation-delay: 1.5s;
  }
  
  .line3 {
    bottom: 65px;
    left: calc(50% - 130px);
    width: 260px;
    animation-delay: 1.7s;
  }
  
  .line4 {
    top: 100px;
    left: 25%;
    height: 120px;
    width: 3px;
    transform: scaleY(0);
    transform-origin: top;
    animation: expandHeight 0.8s forwards;
    animation-delay: 1.9s;
    background: linear-gradient(to bottom, rgba(26, 93, 58, 0.3), rgba(0, 230, 118, 0.3));
  }
  
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes expandHeight {
    0% {
      transform: scaleY(0);
      opacity: 0;
    }
    100% {
      transform: scaleY(1);
      opacity: 1;
    }
  }
  
  .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .benefit-item {
    display: flex;
    gap: 25px;
    align-items: center;
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInLeft 0.8s forwards;
    border: 1px solid rgba(26, 93, 58, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-fast);
  }
  
  .benefit-item:nth-child(1) { animation-delay: 0.3s; }
  .benefit-item:nth-child(2) { animation-delay: 0.5s; }
  .benefit-item:nth-child(3) { animation-delay: 0.7s; }
  .benefit-item:nth-child(4) { animation-delay: 0.9s; }
  .benefit-item:nth-child(5) { animation-delay: 1.1s; }
  
  .benefit-item {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .benefit-icon {
    flex: 0 0 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-text h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
  }
  
  .benefit-text p {
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
  }
  
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Testimonials Section - simplified cards */
  .testimonials-section {
    background-color: var(--bg-light);
    position: relative;
  }
  
  .testimonial-slider {
    display: flex;
    overflow: hidden;
    margin: 0 auto;
    max-width: 850px;
    position: relative;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    padding: 25px;
    transition: var(--transition-medium);
  }
  
  .testimonial-content {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid rgba(26, 93, 58, 0.05);
    transition: var(--transition-medium);
    transform: translateY(0);
  }
  
  .testimonial-content {
    transform: translateY(0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  }
  
  .testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    line-height: 1;
    font-family: serif;
    color: rgba(26, 93, 58, 0.07);
  }
  
  .testimonial-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
  }
  
  .testimonial-content p {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    box-shadow: 0 5px 15px rgba(26, 93, 58, 0.2);
  }
  
  .client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .client-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--dark-color);
  }
  
  .client-details p {
    font-size: 14px;
    margin: 0;
    font-style: normal;
    color: #64748b;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
  }
  
  .control-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(26, 93, 58, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
  }
  
  .control-dot.active, .control-dot:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
  }
  
  /* Delivery Methods Section - simplified layout */
  .delivery-section {
    background-color: white;
    position: relative;
  }
  
  .delivery-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .delivery-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(45, 106, 79, 0.05);
  }
  
  .delivery-card {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .delivery-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 34px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .delivery-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
  }
  
  .delivery-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
  }
  
  /* Process Section - simplified timeline */
  .process-section {
    background-color: var(--bg-light);
    position: relative;
  }
  
  .process-timeline {
    margin: 40px auto;
    max-width: 850px;
    position: relative;
  }
  
  .timeline-progress {
    position: absolute;
    top: 45px;
    left: 30px;
    width: 3px;
    height: calc(100% - 90px);
    background: var(--primary-color);
    opacity: 0.3;
    border-radius: 3px;
  }
  
  .timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
  }
  
  .timeline-number {
    flex: 0 0 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 8px 20px var(--glow-color);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
  }
  
  .timeline-number::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    opacity: 0;
    transition: var(--transition-medium);
  }
  
  .timeline-number {
    transform: scale(1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-content {
    flex: 1;
    background: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-left: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(45, 106, 79, 0.05);
    position: relative;
  }
  
  .timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 24px;
    width: 24px;
    height: 24px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(45, 106, 79, 0.05);
    border-bottom: 1px solid rgba(45, 106, 79, 0.05);
  }
  
  .timeline-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
  }
  
  .timeline-content p {
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.7;
  }
  
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Contact section removed as requested */
  
  /* Media Queries for Responsive Design */
  @media screen and (max-width: 1024px) {
    .section-title {
      font-size: 32px;
    }
    
    .hero-banner h1 {
      font-size: 42px;
    }
    
    .intro-content,
    .benefits-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .training-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
  }
  
  @media screen and (max-width: 768px) {
    section {
      padding: 60px 5%;
      width: 90%;
    }
    
    .section-title {
      font-size: 28px;
    }
    
    .hero-banner {
      min-height: 400px;
      padding: 60px 0;
    }
    
    .hero-banner h1 {
      font-size: 36px;
    }
    
    .hero-cta {
      flex-direction: column;
      gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
    }
    
    .timeline-item {
      margin-bottom: 40px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .section-title {
      font-size: 24px;
    }
    
    .hero-banner h1 {
      font-size: 30px;
    }
  }
  
/* Responsive Enhancement for Corporate Training Styles
   Learning Hub - 2025
*/
/* Fix for Benefit Icons */
.benefit-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Ensure Font Awesome icons display properly */
  .benefit-icon i {
    display: inline-block;
    color: white;
    font-size: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    z-index: 2;
  }
  
  /* Add fallback for icons */
  .benefit-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    z-index: 1;
  }
  
  /* Specific icon fixes */
  .benefit-icon .fa-rocket,
  .benefit-icon .fa-user-tie,
  .benefit-icon .fa-cogs,
  .benefit-icon .fa-sync-alt,
  .benefit-icon .fa-users {
    font-weight: 900;
    text-align: center;
    line-height: 1;
  }
  
  /* Fix Font Awesome loading issues */
  @font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2") format("woff2");
  }
  
  /* Mobile optimization */
  @media screen and (max-width: 767px) {
    .benefit-icon {
      width: 60px;
      height: 60px;
    }
    
    .benefit-icon i {
      font-size: 24px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .benefit-icon {
      width: 50px;
      height: 50px;
    }
    
    .benefit-icon i {
      font-size: 20px;
    }
  }
/* Base responsive settings - retain your existing root variables */
  
  /* Enhanced responsive layout - applies to all screen sizes */
  body {
    overflow-x: hidden;
    min-width: 320px; /* Prevent layout breaking on very small screens */
  }
  
  section {
    width: 100%;
    padding: 80px 5%; /* Use percentage-based padding */
    box-sizing: border-box;
  }
  
  .section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  
  /* Fluid typography for better scaling */
  html {
    font-size: 16px; /* Base font size */
  }
  
  /* Responsive hero section */
  .hero-banner {
    min-height: auto;
    padding: 100px 5% 80px;
  }
  
  .hero-content {
    width: 90%;
    max-width: 800px;
  }
  
  /* Responsive grid layouts */
  .intro-content,
  .training-grid,
  .benefits-list,
  .delivery-methods {
    display: grid;
    gap: 30px;
  }
  
  .intro-content {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .training-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .benefits-list {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .delivery-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  /* Card adjustments for better responsiveness */
  .training-card,
  .benefit-item,
  .feature-card,
  .delivery-card {
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Timeline responsive adjustments */
  .process-timeline {
    width: 100%;
    max-width: 800px;
    padding: 0 10px;
    box-sizing: border-box;
  }
  
  /* Enhanced Media Queries */
  
  /* Large Desktops (1200px and up) */
  @media screen and (min-width: 1200px) {
    section {
      padding: 100px 0;
    }
    
    .hero-banner h1 {
      font-size: 48px;
    }
    
    .section-title {
      font-size: 38px;
    }
    
    .card-content h3 {
      font-size: 22px;
    }
  }
  
  /* Medium Desktops and Laptops (992px to 1199px) */
  @media screen and (min-width: 992px) and (max-width: 1199px) {
    section {
      padding: 80px 5%;
    }
    
    .hero-banner {
      min-height: 500px;
      padding: 80px 5%;
    }
    
    .hero-banner h1 {
      font-size: 42px;
    }
    
    .section-title {
      font-size: 34px;
    }
    
    .training-card .card-icon {
      flex: 0 0 80px;
    }
    
    .card-content {
      padding: 25px;
    }
    
    .card-content h3 {
      font-size: 20px;
    }
  }
  
  /* Tablets and Small Laptops (768px to 991px) */
  @media screen and (min-width: 768px) and (max-width: 991px) {
    section {
      padding: 70px 5%;
    }
    
    .section-title {
      font-size: 30px;
    }
    
    .section-subtitle {
      font-size: 14px;
    }
    
    .hero-banner {
      min-height: auto;
      padding: 70px 5%;
    }
    
    .hero-banner h1 {
      font-size: 38px;
    }
    
    .hero-banner p {
      font-size: 16px;
    }
    
    .intro-content {
      grid-template-columns: 1fr;
    }
    
    .intro-features {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
      font-size: 22px;
    }
    
    .card-content {
      padding: 20px;
    }
    
    .timeline-item {
      margin-bottom: 40px;
    }
  }
  
  /* Large Mobile Devices (576px to 767px) */
  @media screen and (min-width: 576px) and (max-width: 767px) {
    section {
      padding: 60px 5%;
    }
    
    .section-header {
      margin-bottom: 40px;
    }
    
    .section-title {
      font-size: 26px;
      margin-bottom: 15px;
    }
    
    .section-subtitle {
      font-size: 13px;
      letter-spacing: 2px;
    }
    
    .hero-banner {
      padding: 60px 5%;
    }
    
    .hero-banner h1 {
      font-size: 32px;
    }
    
    .hero-banner p {
      font-size: 15px;
      margin-bottom: 20px;
    }
    
    .hero-cta {
      flex-direction: column;
      gap: 15px;
      width: 100%;
      max-width: 300px;
      margin: 30px auto 0;
    }
    
    .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
      padding: 12px 20px;
    }
    
    .intro-content, 
    .benefits-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .training-card {
      flex-direction: row;
    }
    
    .card-icon {
      flex: 0 0 70px;
    }
    
    .delivery-icon {
      width: 70px;
      height: 70px;
      font-size: 26px;
    }
    
    .timeline-number {
      flex: 0 0 50px;
      height: 50px;
      font-size: 20px;
    }
    
    .timeline-content {
      padding: 20px;
    }
    
    .timeline-content h3 {
      font-size: 18px;
    }
  }
  
  /* Small Mobile Devices (575px and down) */
  @media screen and (max-width: 575px) {
    section {
      padding: 50px 5%;
    }
    
    .section-header {
      margin-bottom: 30px;
    }
    
    .section-title {
      font-size: 24px;
      margin-bottom: 10px;
    }
    
    .section-subtitle {
      font-size: 12px;
      letter-spacing: 1.5px;
      margin-bottom: 8px;
    }
    
    .animated-bar {
      width: 60px;
      height: 2px;
    }
    
    .hero-banner {
      padding: 50px 5%;
    }
    
    .hero-banner h1 {
      font-size: 28px;
    }
    
    .hero-banner h1::after {
      width: 60px;
      height: 2px;
    }
    
    .hero-banner p {
      font-size: 14px;
      margin-bottom: 20px;
    }
    
    .hero-cta {
      flex-direction: column;
      gap: 12px;
      margin-top: 25px;
    }
    
    .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
      padding: 10px 15px;
      font-size: 14px;
    }
    
    .training-card {
      flex-direction: column;
    }
    
    .card-icon {
      flex: 0 0 auto;
      height: 60px;
      width: 100%;
    }
    
    .card-content {
      padding: 20px 15px;
    }
    
    .card-content h3 {
      font-size: 18px;
      margin-bottom: 10px;
      padding-bottom: 8px;
    }
    
    .card-content p {
      font-size: 14px;
      line-height: 1.5;
    }
    
    .benefit-item {
      flex-direction: column;
      padding: 20px 15px;
      text-align: center;
      gap: 15px;
    }
    
    .benefit-icon {
      margin: 0 auto;
    }
    
    .benefit-text {
      text-align: center;
    }
    
    .delivery-card {
      padding: 25px 15px;
    }
    
    .delivery-icon {
      width: 60px;
      height: 60px;
      font-size: 22px;
      margin-bottom: 15px;
    }
    
    .delivery-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }
    
    .delivery-card p {
      font-size: 14px;
    }
    
    /* Process timeline mobile layout */
    .process-timeline {
      margin: 20px auto;
    }
    
    .timeline-progress {
      left: 25px;
    }
    
    .timeline-item {
      margin-bottom: 35px;
    }
    
    .timeline-number {
      flex: 0 0 45px;
      height: 45px;
      font-size: 18px;
    }
    
    .timeline-content {
      margin-left: 15px;
      padding: 15px;
    }
    
    .timeline-content::before {
      top: 18px;
      left: -8px;
      width: 16px;
      height: 16px;
    }
    
    .timeline-content h3 {
      font-size: 16px;
      margin-bottom: 8px;
    }
    
    .timeline-content p {
      font-size: 13px;
      line-height: 1.5;
    }
  }
  
  /* Mobile landscape orientation adjustments */
  @media screen and (max-width: 767px) and (orientation: landscape) {
    .hero-banner {
      padding: 40px 5%;
    }
    
    .hero-banner h1 {
      font-size: 32px;
    }
    
    .section {
      padding: 40px 5%;
    }
    
    .benefit-item {
      flex-direction: row;
      text-align: left;
      padding: 15px;
    }
    
    .benefit-text {
      text-align: left;
    }
  }
  
  /* Additional navigation responsiveness for mobile */
  @media screen and (max-width: 991px) {
    .nav__menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100%;
      background-color: var(--light-color);
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: right 0.3s;
      z-index: 100;
      padding: 80px 20px 20px;
      overflow-y: auto;
    }
    
    .nav__menu.show-menu {
      right: 0;
    }
    
    .nav__list {
      flex-direction: column;
      row-gap: 20px;
    }
    
    .nav__toggle {
      display: block;
      cursor: pointer;
      z-index: 101;
    }
    
    .dropdown__menu, 
    .dropdown__submenu {
      position: static;
      box-shadow: none;
      padding-left: 15px;
      width: 100%;
    }
  }
  
  /* Print styles for corporate materials */
  @media print {
    body {
      background: white;
      font-size: 12pt;
      color: black;
    }
    
    header, 
    footer,
    .hero-banner,
    .testimonials-section {
      display: none;
    }
    
    section {
      padding: 20px 0;
      page-break-inside: avoid;
    }
    
    .training-card,
    .benefit-item,
    .delivery-card {
      box-shadow: none;
      border: 1px solid #ddd;
      page-break-inside: avoid;
    }
    
    .card-icon,
    .benefit-icon,
    .delivery-icon {
      background: #eee;
      color: var(--primary-color);
      box-shadow: none;
    }
    
    a {
      color: black;
      text-decoration: none;
    }
    
    .animated-bar {
      display: none;
    }
  }