:root {
      --primary-color: #1f1f2e;
      --secondary-color: #f9b50c;
      --text-color: #ffffff;
      --design-color: #2c2c3c;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background-color: var(--primary-color);
      color: var(--text-color);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ================= NAVBAR ================= */
    nav {
      width: 100%;
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--design-color);
      border: 1px solid var(--design-color) ;
      flex-wrap: wrap;
      
    }

    .logo {
      font-size: 1.4rem;
      font-weight: 700;
    }

    .nav-links-1 {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    .nav-links-1 li a {
      color: #bdbdbd;
      text-decoration: none;
      transition: 0.3s;
      font-weight: 500;
    }

    .nav-links-1 li a:hover,
    .nav-links-1 li.active a {
      color: var(--secondary-color);
    }

    .icons {
      display: flex;
      gap: 15px;
      color: var(--text-color);
      font-size: 1.2rem;
    }
      
     .nav-icons {
      color: var(--text-color);
      width: 15%;
      height: 3rem;
      justify-items: center;
      align-items: center;
      display: flex;
      padding: 0 20px;
      justify-content: center;
    }

.nav-icons  {
  color: var(--text-color);
  margin: 0 10px;
}


    .fa-bars {
      display: none;
      cursor: pointer;
    }
    /* NAV ICONS STYLING */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.3rem;
  color: var(--text-color);
}

.nav-icons i {
  cursor: pointer;
  transition: 0.3s;
}

.nav-icons i:hover {
  color: var(--secondary-color);
}
/* SOCIAL ICONS UNDER SERVICES */
.service-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 40px 0;
}

.service-socials a {
  color: var(--secondary-color);
  font-size: 1.8rem;
  transition: 0.3s;
}

.service-socials a:hover {
  color: #fff;
}


    /* ================= HERO SECTION ================= */
     
    .section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 40px;
      width: 90%;
      margin: 60px auto;
    }

    .box1,
    .box2,
    .box3 {
      flex: 1 1 300px;
      text-align: center;
    }

    .box1 h2 {
      color: var(--secondary-color);
      font-size: 2.5rem;
    }

    .box1 h3 {
      font-size: 2.5rem;
      color: #fff;
    }

    .box1 h1 {
      color: var(--secondary-color);
      font-size: 3rem;
      margin-top: 10px;
    }

    .box1 p {
      color: #bdbdbd;
      margin-top: 20px;
      line-height: 1.6;
    }

    .box2 img {
      width: 280px;
      height: 280px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 25px rgba(249, 181, 12, 0.6);
    }

    .box3 h2 {
      font-size: 2rem;
    }

    .box3 p {
      color: #bdbdbd;
      margin: 10px 0;
    }

    .apps {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .apps a {
      color: var(--secondary-color);
      font-size: 1.5rem;
      transition: 0.3s;
    }

    .apps a:hover {
      color: #fff;
    }

    /* ================= APPLICATION ================= */
    .application {
      width: 90%;
      margin: 50px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      background: var(--design-color);
      padding: 20px;
      border-radius: 12px;
    }

    .application div {
      background: #1f1f2e;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 8px;
    }

    .application img {
      width: 40px;
    }

    /* ================= SERVICES SECTION ================= */
    .services-section {
      width: 90%;
      margin: 50px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .services-left {
      flex: 1 1 350px;
    }

    .services-left h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .services-left p {
      color: #bdbdbd;
      line-height: 1.5;
    }

    .stats {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-top: 20px;
    }

    .stat-box h3 {
      color: var(--secondary-color);
      font-size: 1.5rem;
    }

    /* ================= SERVICE CARDS (RIGHT) ================= */
    .right {
      flex: 1 1 350px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      width: 100%;
    }

    
      
     .card-1 {
      display: flex;
      flex-direction: column;
      background-color: #2c2c3c;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
    }

    .card-1:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    }

    .card-1 img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .card-information {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
    }

    .card-text {
      flex: 1;
    }

    .card-information h4 {
      font-size: 1.2rem;
      margin: 0;
      color: #fff;
    }

    .card-information p {
      font-size: 0.9rem;
      margin: 4px 0 0;
      color: #bdbdbd;
    }

    .card-information i {
      color: #f9b50c;
      font-size: 1.3rem;
      margin-left: 10px;
    }



    /* ================= RESPONSIVE DESIGN ================= */
    @media (max-width: 992px) {
      .nav-links-1 {
        display: none;
      }

      .fa-bars {
        display: inline;
      }

      .section {
        flex-direction: column;
        text-align: center;
      }

      .box2 img {
        width: 220px;
        height: 220px;
      }

      .application {
        flex-direction: column;
        align-items: center;
      }

      .services-section {
        flex-direction: column;
        text-align: none;

      }

      .right {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .box1 h1 {
        font-size: 2.2rem;
      }

      .box1 h3,
      .box1 h2 {
        font-size: 2rem;
      }

      .card-1 img {
        height: 150px;
      }

      .application div {
        width: 100%;
        justify-content: center;
      }
      
    }
  

