/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .bg-background {
    background-color: #1a1a1a;
  }
  
  .bg-background-light {
    background-color: #2d2d2d;
  }
  
  .text-white {
    color: white;
  }
  
  .text-gray-300 {
    color: #d1d5db;
  }
  
  /* Hero Section */
  .hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #211111; /* Dark background for contrast */
    text-align: center; /* Centers text content */
    padding: 2rem; /* Ensures spacing on smaller screens */
    box-sizing: border-box;
  }

  /* Logo Styling */
  .logo {
    margin-bottom: 2rem;
  }

  .logo-img {
    max-width: 150px;
  }

  /* Hero Title */
  .hero-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2; /* Better readability */
  }

  /* Gradient Text */
  .gradient-text {
    background: linear-gradient(to right, #4a90e2, #2d2d2d);
    -webkit-background-clip: text;
    color: transparent;
  }

  /* Hero Description */
  .hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 3rem auto; /* Centered with spacing */
  }

  /* Button Container */
  .hero-buttons {
    display: flex;
    justify-content: center; /* Center buttons */
    gap: 1rem;
  }

  /* Button Styles */
  .btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .btn-primary {
    background-color: #4a90e2;
    color: white;
    border: none;
  }

  .btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
  }

  .btn-secondary {
    border: 2px solid #4a90e2;
    color: #4a90e2;
    background: transparent;
  }

  .btn-secondary:hover {
    background-color: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
  }
  
  /* Stats Section */
  .stats-section {
    padding: 4rem 0;
    background-color: #211111;
    border-top: 1px solid #211111;
    border-bottom: 1px solid #211111;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat h2 {
    font-size: 3.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .stat p {
    color: #FFFFFF;
  }

  p, h2 {
    color: #E0E0E0; /* Soft white text for readability */
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  p:hover, h2:hover {
      color: #FFFFFF; /* Brighten text */
      text-shadow: 0 0 30px #0FC7EF, 0 0 30px #0FC7EF; /* Glowing effect */
      cursor: pointer; /* Optional - enhances interactivity */
  }
  
  /* Services Section */
  .services-section {
    padding: 6rem 0;
    background-color: #211111;
    position: relative;
    overflow: hidden;
  }

  /* Section Heading */
  .services-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px #4a90e2; /* Neon glow effect */
  }

  /* Section Description */
  .services-section p {
    text-align: center;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.8;
  }

  /* Grid Layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  /* Service Card */
  .service-card {
    background: rgba(45, 45, 45, 0.8); /* Glassmorphism effect */
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2); 
    backdrop-filter: blur(10px); /* Frosted glass effect */
    transition: all 0.5s ease;

    display: flex;          /* Center content */
    flex-direction: column; /* Stack items vertically */
    align-items: center;    /* Align items horizontally at center */
    text-align: center;     /* Ensure text is also centered */
  }

  .service-card:hover {
    transform: translateY(-5px);
    border-color: #0FC7EF;
    box-shadow: 0 8px 24px rgba(15, 199, 239, 0.4); 
  }

  /* Icon Container */
  .icon-container {
    width: 4rem;
    height: 4rem;
    background-color: rgba(74, 144, 226, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.5); /* Icon glow */
  }

  /* Icons */
  .icon-container .icon {
    font-size: 2rem;
    color: #0FC7EF;
  }

  /* Service Card Titles */
  .service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #FFFFFF;
  }

  /* Service Card List */
  .service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .service-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0FC7EF;
    margin-bottom: 0.5rem;
  }

  .service-card ul li .icon {
    color: #4a90e2;
  }

  /* Hover Glow for Headings and Paragraphs */
  p:hover, h3:hover {
    color: #FFFFFF;
    text-shadow: 0 0 20px #0FC7EF, 0 0 40px #0FC7EF;
    cursor: pointer;
  }
  
  .link {
    color: #4a90e2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .link:hover {
    color: #357abd;
  }
  
  .link .icon {
    transition: transform 0.3s ease;
  }
  
  .link:hover .icon {
    transform: translateX(0.25rem);
  }

  /* ============================
   Training Section
============================ */
.training-section  {
    padding: 6rem 0;
    background-color: #211111;
    position: relative;
    overflow: hidden;
  }

/* Section Heading */
  .training-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px #4a90e2; /* Neon glow effect */
  }

  /* Section Description */
  .training-section p {
    text-align: center;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.8;
  }

/* Training Grid */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Training Cards */
.training-card {
    background: rgba(45, 45, 45, 0.8); /* Glassmorphism effect */
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2); 
    backdrop-filter: blur(10px); /* Frosted glass effect */
    transition: all 0.5s ease;

    display: flex;          /* Center content */
    flex-direction: column; /* Stack items vertically */
    align-items: center;    /* Align items horizontally at center */
    text-align: center;     /* Ensure text is also centered */
  }

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.training-card h3 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.training-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #0FC7EF;
}

/* Icon Container */
.training-card .icon-container {
  font-size: 3rem;
  background: var(--primary-light, #eef4ff);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* Links */
.training-card .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.training-card .link:hover {
  color: var(--primary-dark, #10e116);
}

  /* Features Section */
  .features-section {
    padding: 6rem 0;
    background-color: #211111;
    position: relative;
    overflow: hidden;
  }
  
  .features-section h2 {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .features-section p {
    text-align: center;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 4rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .feature-card {
    background: rgba(45, 45, 45, 0.8); /* Glassmorphism effect */
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2); 
    backdrop-filter: blur(10px); /* Frosted glass effect */
    transition: all 0.5s ease;

    display: flex;          /* Center content */
    flex-direction: column; /* Stack items vertically */
    align-items: center;    /* Align items horizontally at center */
    text-align: center;     /* Ensure text is centered */
  }

  .feature-card:hover {
      transform: translateY(-5px);
      border-color: #0FC7EF;
      box-shadow: 0 8px 24px rgba(15, 199, 239, 0.4); 
  }

  /* Icon Container */
  .feature-card .icon-container {
      width: 4rem;
      height: 4rem;
      background-color: rgba(74, 144, 226, 0.15);
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      box-shadow: 0 0 15px rgba(74, 144, 226, 0.5); /* Icon glow */
  }

  /* Icons */
  .feature-card .icon-container .icon {
      font-size: 2rem;
      color: #0FC7EF;
  }

  /* Feature Card Titles */
  .feature-card h3 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #FFFFFF;
  }

  /* Feature Card List */
  .feature-card ul {
      list-style: none;
      padding: 0;
      margin-bottom: 1.5rem;
  }

  .feature-card ul li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #931E1E;
      margin-bottom: 0.5rem;
  }

  .feature-card ul li .icon {
      color: #4a90e2;
  }

  /* Hover Glow for Headings and Paragraphs */
  p:hover, h3:hover {
      color: #FFFFFF;
      text-shadow: 0 0 20px #0FC7EF, 0 0 40px #0FC7EF;
      cursor: pointer;
  }
  
  /* About Section */
  .about-section {
    padding: 6rem 0;
    background-color: #211111;
    position: relative;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    align-items: center;
  }
  
  .about-content h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    align-items: center;
  }
  
  .about-content p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    align-items: center;
    text-align: center;
  }
  .about-content {
    text-align: center; /* Centers all text and inline elements */
  }

  .about-content .btn-secondary {
      display: inline-block;  /* Ensures the button behaves like a block while staying inline */
      background-color: #4a90e2;
      color: #ffffff;
      padding: 1rem 2rem;
      border: 2px solid #4a90e2;
      border-radius: 0.5rem;
      font-size: 1.125rem;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1.5rem;     /* Adds spacing above the button */
  }

  .about-content .btn-secondary:hover {
      background-color: #357abd;
      transform: translateY(-2px); /* Subtle hover effect */
  }
  
  /* Contact Section */
  .contact-section {
    padding: 6rem 0;
    background-color: #211111;
    position: relative;
  }
  
  .contact-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #2d2d2d;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
  }
  
  .contact-card h2 {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
  }

  .contact-card {
    background: rgba(45, 45, 45, 0.8); 
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2); 
    backdrop-filter: blur(10px); 
    transition: all 0.5s ease;

    display: flex;          
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
  }
  .contact-grid {
    display: flex;
    gap: 2rem; /* Spacing between contact items */
    justify-content: center; /* Centers the grid horizontally */
    text-align: center; /* Ensures text is centered */
  }

  .contact-item {
      background-color: #2d2d2d;
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid rgba(74, 144, 226, 0.2);
      width: 250px; /* Set a fixed width for uniform size */
  }

  .icon-container {
      width: 60px;
      height: 60px;
      background-color: #4a90e2;
      border-radius: 50%;
      display: flex;
      justify-content: center; /* Horizontal centering */
      align-items: center;     /* Vertical centering */
      margin: 0 auto 1rem;     /* Center the icon-container itself */
  }

  .icon {
      font-size: 1.75rem;
      color: #fff; /* Ensures icon color stands out */
  }

  .contact-item h3 {
      margin-top: 0.5rem;
      font-size: 1.25rem;
      color: #ffffff;
  }

  .contact-item p {
      color: #d1d5db;
  }
  .logo {
    position: absolute;
    top: 20px;
    left: 160px;
    align-items: center;
  }
  
  .logo-img {
    max-width: 120px; /* Adjust this value for desired size */
    height: auto;
    align-items: center;
  }

  /* Footer Section */
  .footer {
    background-color: #1a1a1a;
    color: #d1d5db;
    padding: 4rem 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
  }

  .footer-item {
    padding: 1rem;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
  }

  .footer-item h4 {
    font-size: 1.25rem;
    color: #4a90e2;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .footer-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-item li {
    margin-bottom: 0.5rem;
  }

  .footer-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-item a:hover {
    color: #4a90e2; /* Highlight color */
  }

  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(209, 213, 219, 0.2);
    padding-top: 1rem;
    font-size: 0.875rem;
  }

  /* Navbar Styling */
  .navbar {
    position: fixed;          /* Fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;            /* Ensures it stays above other elements */
    background: rgba(0, 0, 0, 0.5); /* Blurred background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    display: flex;
    align-items: center;
    padding: 1rem 160px;      /* Spacing for logo and links */
    justify-content: space-between; /* Logo on left, links on right */
  }

  /* Logo Styling */
  .logo-img {
    width: 120px;
    height: auto;
  }

  /* Navbar Content */
  .navbar-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  /* Navigation Links */
  .nav-links {
    display: flex;
    gap: 2rem;                /* Space between links */
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;        /* Align links to the right */
    padding-right: 320px;    
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #4a90e2;           /* Highlight effect on hover */
  }

  /* Button Container */
  .button-container {
    display: flex;
    gap: 1rem;                /* Add spacing between buttons */
  }

  .btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .btn-primary {
    background-color: #4a90e2;
    color: #fff;
  }

  .btn-secondary {
    background-color: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    background-color: #357ABD;
    color: #fff;
  }
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
  }
/* Phones (up to ~600px wide) */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 10px;
  }

  .logo-img {
    width: 120px;
  }

  nav ul {
    flex-direction: column;  /* stack menu vertically */
  }
}

/* Tablets (600–900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .logo-img {
    width: 150px;
  }
}
