
    body {
      background: #fff;
      color: #222;
    }

    .prog-container {
      display: flex;
      flex-wrap: wrap;
      min-height: 70vh;
    }

    /* contact card */
/* Hover container */
.contact-hover {
  position: relative;
  display: inline-block;
}

/* Contact Card */
.contact-card {
  position: absolute;
  top: 55px;
  right: 0;
  width: 280px;
  padding: 20px;
  border-radius: 16px;
  background: rgb(253, 251, 251);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 100;
}

/* Show card on hover */
.contact-hover:hover .contact-card,
.contact-card:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Title */
.contact-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
  color: #38bdf8;
}

/* Info rows */
.contact-card p, a{
  font-size: 16px;
  color: #000;
}

.contact-card i {
  margin-right: 8px;
  color: #38bdf8;
}

/* Social icons */
.social-icons {
  margin-top: 16px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #38bdf8;
  transform: translateY(-4px);
}

/* Invisible hover buffer (prevents flicker) */
.contact-hover::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 20px;
}


    /* Left Section */
    .prog-left {
      flex: 1 1 50%;
      background: url('../images/shapes/bg-a.png') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px;
      color: #fff;
      text-align: left;
    }

    .prog-left h1 {
    color: var(--e-global-color-4f6465a);
    margin: 0px 0px 0px 0px;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
}


    /* Right Section */
    .prog-right {
      flex: 1 1 50%;
      background: url('../images/shapes/bg-prgress.jpg') center/cover no-repeat;
      color: white;
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .prog-right p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 600px;
    }

    /* prog Bars */
    .prog {
      margin-bottom: 30px;
    }

    .prog-label {
      display: flex;
      justify-content: space-between;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .prog-bar {
      background: #fff;
      height: 5px;
      border-radius: 5px;
      overflow: hidden;
      position: relative;
    }

    .prog-fill {
      background: #9dca24;
      height: 100%;
      width: 0;
      border-radius: 5px;
      transition: width 1.5s ease;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .prog-container {
        flex-direction: column;
      }

      .prog-left, .prog-right {
        flex: 1 1 100%;
        padding: 40px;
      }

      .prog-left h1 {
        font-size: 2.5rem;
        text-align: center;
      }

      .prog-right p {
        text-align: center;
      }
    }

    @media (max-width: 600px) {
      .prog-left h1 {
        font-size: 2rem;
      }

      .prog-right {
        padding: 40px 25px;
      }
    }



    /* billboard */

    .bilbrd-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding-top: 100px;
    }

    /* Left Side - Image */
    .left {
      flex: 1 1 45%;
    }

    .left img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* Right Side - Content */
    .right {
      flex: 1 1 45%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .right h2 {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #111;
    }

    .right p {
      font-size: 1rem;
      color: #666;
      margin-bottom: 30px;
      max-width: 500px;
    }

    /* Icon Row */
    .icon-row {
      display: flex;
      gap: 50px;
      flex-wrap: wrap;
    }

    .icon-box {
      text-align: center;
      color: #111;
    }

    .icon-box i {
      font-size: 2rem;
      color: #e5093d;
      margin-bottom: 10px;
      display: block;
    }

    .icon-box h4 {
      font-size: 0.95rem;
      font-weight: 600;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .bilbrd-section {
        flex-direction: column;
        text-align: center;
      }

      .right h2 {
        font-size: 1.8rem;
      }

      .icon-row {
        justify-content: center;
        gap: 30px;
      }
    }

    @media (max-width: 600px) {
      .right h2 {
        font-size: 1.5rem;
      }

      .icon-box i {
        font-size: 1.8rem;
      }
    }


    /* outdoor */
    
    .outdoor-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 50px;
      padding-top: 100px;
    }

    /* Left Side */
    .out-left {
      flex: 1 1 45%;
      padding-left: 80px;
    }

    .out-left h2 {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #111;
    }

    .out-left p {
      color: #777;
      font-size: 1rem;
      margin-bottom: 25px;
      max-width: 550px;
    }

    /* List Items */
    .check-list {
      list-style: none;
    }

    .check-list li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 1rem;
      color: #111;
    }

    .check-list li i {
      color: #e5093d;
      margin-right: 10px;
      font-size: 1.1rem;
    }

    /* Right Side */
    .out-right {
      flex: 1 1 45%;
    }

    .out-right img {
      width: 100%;
      object-fit: cover;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .outdoor-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 60px 5%;
      }

      .out-left h2 {
        font-size: 1.8rem;
      }

      .out-left p {
        margin: 0 auto 25px;
      }

      .check-list {
        display: inline-block;
        text-align: left;
      }

      .out-right img {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 600px) {
      .out-left h2 {
        font-size: 1.5rem;
      }
    }


    

  /* Link */
  .contact-link {
    font-size: 18px;
    color: #0066ff;
    cursor: pointer;
    text-decoration: underline;
  }


  /* Popup Box */
  .popup-box {
    display: block;
    position: relative;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    padding: 20px;
    text-align: center;
}


  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .popup-header {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .contact-item {
    font-size: 18px;
  }

   .contact-item a{
    font-size: 19px;
  }

  .contact-item { margin-bottom: 12px; }
  .contact-item strong { display: block; }

  /* Responsive */
  @media (max-width: 480px) {
    .popup-box {
      padding: 20px;
    }
  }

  .main-menu__main-menu-box .fab {
    margin-right: 10px;
    font-size:22px;
    font-weight: 550;
  }

  .main-menu__right .fab {
    font-size:30px;
    font-weight: 550;
  }

  .service-head{
      text-align: center;
      padding-bottom: 20px;
      color: #0095da;
  }
  .service-tagline{
    text-align: center;
    padding-bottom: 10px;
    color: #9dca24;
  }
  .service-para{
    text-align: center;
    padding-bottom: 60px;
  }

  .tab-paragraph {
    text-align: center;
    padding-bottom: 60px;
  }

  .title2{
      font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  margin-top: 23px;
  margin-bottom: 15px;
  }



.gallery {
  padding: 120px 20px;
  /* background: #f8f8f8; */
}

.container {
  margin: auto;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 300px;
  gap: 15px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* IMAGE FIX */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* KEY */
  transition: transform 0.5s ease;
}

/* ZOOM EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.gallery-item::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 40px;
  color: #fff;
  transition: 0.3s;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox.show {
  display: flex;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}