/* style.css */

/* Typography and Base Setup */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #343a40;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/img2.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: #ffffff;
  }
  
  .hero-overlay {
    max-width: 960px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .hero-overlay h1 {
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .hero-overlay p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .hero-overlay a.btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    margin: 0 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .hero-overlay a.btn-primary {
    background-color: #0d6efd;
    border: none;
  }
  
  .hero-overlay a.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  
  .hero-overlay a.btn-outline-light:hover {
    background-color: #ffffff;
    color: #0d6efd;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Custom navbar */
    .navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
  }
  .navbar-custom .navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.75rem 1rem;
  }
  .navbar-custom .nav-link:hover,
  .navbar-custom .dropdown-menu a:hover {
    color: #0d6efd;
  }
  .navbar-custom .dropdown-menu {
    margin-top: 0;
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  /* Back to Top Button */
  #backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }
  
  #backToTop:hover {
    background-color: #0b5ed7;
  }
  
  /* Services */
  .service-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
  }


  
  /* Contact Form */
  #contact form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  #contact input,
  #contact textarea,
  #contact select {
    margin-bottom: 20px;
    border-radius: 6px;
    padding: 12px;
    font-size: 1rem;
  }
  
  #contact button {
    padding: 12px 24px;
    font-weight: 600;
  }
  
  /* Footer */
  .footer {
    font-family: 'Inter', sans-serif;
    background-color: #1c1f26;
    color: #ccc;
  }
  .footer h5,
  .footer h6 {
    font-size: 1.2rem;
    color: #fff;
  }
  .footer p,
  .footer a,
  .footer small {
    font-size: 0.95rem;
    color: #ccc;
  }
  .footer ul {
    padding-left: 0;
    list-style: none;
  }
  .footer ul li {
    margin-bottom: 0.5rem;
  }
  .footer a:hover {
    text-decoration: underline;
    color: #0d6efd;
  }
  .footer .d-flex a {
    transition: color 0.3s ease;
  }
  .footer .d-flex a:hover {
    color: #0d6efd;
  }
  .footer .text-secondary {
    color: #999 !important;
  }
  
  /* Navbar */
  .navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    color: #0d6efd !important;
  }
  
  .nav-link {
    font-weight: 500;
    color: #212529 !important;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .nav-link:hover {
    color: #0d6efd !important;
  }
  
  /* Show dropdown on hover for desktop only */
  @media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
      transition: all 0.3s ease-in-out;
    }
  }
  
  /* Add icons to each submenu item */
  .dropdown-item::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    display: inline-block;
  }
  
  .dropdown-item:nth-child(1)::before { content: "\f121"; } /* fa-code - Corporate Training */
  .dropdown-item:nth-child(2)::before { content: "\f3ed"; } /* fa-hard-hat - Site Training */
  .dropdown-item:nth-child(3)::before { content: "\f0c3"; } /* fa-cogs - Software Development */
  .dropdown-item:nth-child(4)::before { content: "\f02d"; } /* fa-book - Learning Content */
  
  