@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

    :root {
      --primary-text-color: #333;
      --secondary-text-color: #f7931e;
      --light-text-color: #fff;
      --dark-bg-color: #222;
      --light-bg-color: #f8f8f8;
      --card-bg-color: #fff;
      --border-color: #eee;
      font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.6;
      background-color: var(--light-bg-color);
      color: var(--primary-text-color);
    }

    /* ==== NAVBAR ==== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5%;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
    }

    .logo {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: 2px;
      color: orange;
      position: relative;
    }

    .logo span {
      color: #ebdb04;
    }
    a {
    color: var(--text-color);
    text-decoration: none;
}

ul {
    list-style: none;
}
  #main-menu {
  cursor: pointer;
  transition: background-color 0.3s ease;
}
    .main-menu ul {
     display: flex;
     gap: 70px; /* adjust spacing between links */
     }

 .main-menu li {
  margin-left: 0;    /* remove unnecessary extra spacing */
  padding-bottom: 55px; /* remove big bottom padding */
  }
    .main-menu a {
      font-size: 1.0rem;
      color: orange;
      position: relative;
      padding-bottom: 5px;
      transition: all 0.3s ease;
    }

    .main-menu a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      left: 0;
      bottom: 0;
      background-color: orange;
      transition: width 0.3s ease;
    }

    .main-menu a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      color: orange;
      cursor: pointer;
    }

    /* ==== HERO SECTION ==== */
    .hero-section {
      position: relative;
    height: 250px; /* Adjust height as needed */
    background: url('https://via.placeholder.com/1500x250/222222/ffffff?text=Background+Image') no-repeat center center/cover; /* Placeholder image */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text-color);
    text-align: center;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.973);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 3em;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .hero-content p {
      font-size: 1.1em;
      opacity: 0.9;
    }

    /* ==== CONTACT SECTION ==== */
    .contact-info-section {
      padding: 100px 0;
      background-color: var(--card-bg-color);
      text-align: center;
    }

    .section-title-small {
      font-size: 1em;
      color: var(--secondary-text-color);
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-title-large {
      font-size: 2.8em;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: 1px;
      color: var(--dark-bg-color);
    }

    .section-description {
      font-size: 1.1em;
      color: #666;
      margin-bottom: 50px;
    }

    .social-icons {
      margin-top: 10px;
    }

    .social-icons a {
      margin: 0 10px;
      color: #333;
      font-size: 24px;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: orange;
    }

    .contact-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 30px;
      margin-top: 40px;
    }

    .contact-card {
      background-color: var(--card-bg-color);
      padding: 30px;
      border-radius: 8px;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .contact-card:hover {
      transform: translateY(-5px);
    }

    .contact-card .icon {
      font-size: 2.5em;
      color: var(--secondary-text-color);
      margin-bottom: 20px;
    }

    .contact-card h3 {
      font-size: 1.2em;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--dark-bg-color);
      text-transform: uppercase;
    }

    .contact-card p {
      font-size: 1em;
      color: #000;
      word-break: break-word;
    }

    /* ==== FOOTER ==== */
      footer { 
      border-top: 1px solid #eef2f7;
       padding: 20px 5%;
       text-align: center; 
       color: var(--muted); 
      color: #0b0b0b;
      background-color: white;
      }

    /* ==== RESPONSIVE DESIGN ==== */
    @media (max-width: 992px) {
      .main-menu ul {
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .main-heading { font-size: 2.5rem; }
      .sub-text { font-size: 1.1rem; color: #f4e61b; }

      .menu-toggle { display: block; padding-bottom: 10px; }

      .main-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 50%;
        height: 100vh;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
      }

      .main-menu.active { right: 0; }

      .main-menu ul {
        flex-direction: column;
        gap: 30px;
        font-size:small;
      }

      .main-menu a { color:orange; font-size: 1.1rem; }
    

      .hero-content{
        padding-top: 80px;
      }
      
      .hero-content h1 {
        font-size: 2.2em;
       
      }

      .contact-cards {
        flex-direction: column;
        align-items: center;
      }

      .contact-card {
        max-width: 90%;
      }
    }

    @media (max-width: 480px) {
      .hero-section {
        height: 200px;
      }

      .hero-content h1 {
        font-size: 1.8em;
      }

      .section-title-large {
        font-size: 1.8em;
      }

      .section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
    }