/* -------------------------------------------------------
   RESET & GLOBAL STYLES
---------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
  }
  
  /* Utility Classes */
  .hidden {
    display: none;
  }
  .fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
  }
  .fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    animation-delay: 0.3s;
  }
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  /* -------------------------------------------------------
     NAVBAR
  ---------------------------------------------------------- */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d1117;
    padding: 1rem 2rem;
  }
  
  .logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 1.5rem;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-links a.active {
    color: #58a6ff;
    border-bottom: 2px solid #58a6ff;
  }
  
  .nav-links a:hover {
    color: #58a6ff;
  }
  
  /* -------------------------------------------------------
     HERO SECTION (Home Page)
  ---------------------------------------------------------- */
  .hero-section {
    position: relative;
    height: 80vh;
    background: linear-gradient(to bottom right, #1f6feb, #58a6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .hero-content {
    position: relative;
    max-width: 700px;
    z-index: 1;
  }
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .highlight-text {
    color: #ffdd57;  /* Accent color on a keyword */
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
  }
  
  /* -------------------------------------------------------
     BUTTONS
  ---------------------------------------------------------- */
  .btn-primary {
    background-color: #ffdd57;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #ffca2c;
    color: #000;
  }
  
  /* -------------------------------------------------------
     INTRO SECTION (Home Page)
  ---------------------------------------------------------- */
  .intro-section {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .intro-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  /* -------------------------------------------------------
     HIGHLIGHTS SECTION (Home Page)
  ---------------------------------------------------------- */
  .highlights-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .highlight-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .highlight-card:hover {
    transform: translateY(-5px);
  }
  
  .highlight-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .highlight-card h3 {
    margin: 1rem;
    font-size: 1.5rem;
    color: #222;
  }
  
  .highlight-card p {
    margin: 0 1rem 1.5rem 1rem;
  }
  
  /* -------------------------------------------------------
     CTA SECTION (Home / Services)
  ---------------------------------------------------------- */
  .cta-section {
    background: #1f6feb;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    margin-bottom: 2rem;
  }
  
  /* -------------------------------------------------------
     PAGE BANNER (About, Services, Contact)
  ---------------------------------------------------------- */
  .page-banner {
    background: linear-gradient(to right, #58a6ff, #1f6feb);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .page-banner h1 {
    font-size: 2.5rem;
  }
  
  /* -------------------------------------------------------
     ABOUT SECTION
  ---------------------------------------------------------- */
  .about-section {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f6feb;
  }
  
  .about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
  }
  
  .team-section {
    margin-top: 2rem;
  }
  
  .team-section h2 {
    color: #1f6feb;
    margin-bottom: 1.5rem;
  }
  
  .team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .team-card {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    padding: 1rem;
  }
  
  .team-card img {
    border-radius: 50%;
    width: 100%;
    max-width: 150px;
    margin: 0 auto 1rem auto;
    display: block;
  }
  
  /* -------------------------------------------------------
     SERVICES LIST
  ---------------------------------------------------------- */
  .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-3px);
  }
  
  .service-item h2 {
    margin-bottom: 1rem;
    color: #1f6feb;
  }
  
  /* -------------------------------------------------------
     CONTACT SECTION
  ---------------------------------------------------------- */
  .contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info {
    line-height: 1.8;
  }
  
  .contact-info h2 {
    margin-bottom: 1rem;
    color: #1f6feb;
  }
  
  .contact-info a {
    color: #1f6feb;
    text-decoration: none;
  }
  
  .contact-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #1f6feb;
  }
  
  /* -------------------------------------------------------
     FOOTER
  ---------------------------------------------------------- */
  .footer {
    background-color: #0d1117;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  /* -------------------------------------------------------
     RESPONSIVE STYLES
  ---------------------------------------------------------- */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
    .hero-subtitle {
      font-size: 1rem;
    }
    .contact-section {
      grid-template-columns: 1fr;
    }
  }
  