body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background-color: #353535;
}
.bg-image-layer {
  position: absolute;
  inset: 0;
  background-image: url('../images/home-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2; /* ✅ Set opacity here (0.1 to 1) */
  z-index: 1;
}

/* Content should be above image */
.hero-section .container {
  position: relative;
  z-index: 2;
}
a.nav-link {
    font-size: 17px;
    font-weight: 500;
}
.nav-link{
    color:#ffffff;
}
.hero-section .overlay-content {
  z-index: 2;
  position: relative;
}
.badges .badge-item {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 50px;
}
.badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
    border-radius: 1rem;
  }

  .rounded-4 {
    border-radius: 1rem;
  }

  .shadow-sm {
    transition: all 0.3s ease;
  }

  .shadow-sm:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
.search-box input {
  max-width: 600px;
  margin: 0 auto;
  padding: 12px 20px;
}

.call-button {
  font-size: 20px;
  z-index: 999;
}
.workspace-search select,
.workspace-search input {
  background-color: #f8f9fa;
  font-size: 14px;
  height: 38px;
}

.search-bar {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.search-bar::-webkit-scrollbar {
  display: none;
}

.badge-item {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 30px;
  margin: 5px;
  display: inline-flex;
  align-items: center;
}
.property-card {
  transition: transform 0.3s ease;
  background-color: #fff;
}

.property-card:hover {
  transform: translateY(-5px);
}

.enquire-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-card:hover .enquire-overlay {
  opacity: 1;
}

.enquire-overlay button {
  transform: translateY(50%);
}

/***************************************   Marquee section  **********************************/
 .marquee-container {
      overflow: hidden;
      position: relative;
      background: #f9f9f9;
      padding: 10px 0;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: scroll-left 30s linear infinite;
    }

    .marquee-item {
      flex: 0 0 auto;
      margin: 0 15px;
        border-radius: 10px;
      overflow: hidden;
      width: 150px;
      height: 100px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .marquee-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Optional: duplicate items for seamless loop */
    .marquee-track > * {
      min-width: 150px;
    }
/***********************************  ******************************************/
 .sco-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      transition: 0.3s;
    }
    .sco-card:hover {
      transform: scale(1.02);
    }
    .sco-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .sco-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: #fff;
      padding: 15px;
    }
    .sco-heading {
      font-size: 30px;
      font-weight: bold;
    }
    .sco-heading .red {
      color: #f7335b;
    }
    
    /*******************************************************************************/
    /* Show dropdown on hover */
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  /* Attractive dropdown box */
  .dropdown-menu {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
  }

  /* Dropdown items styling */
  .dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #dc3545; /* Bootstrap's danger color */
    padding-left: 25px;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  .navbar .dropdown-menu {
  min-width: 250px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  padding: 15px;
}

.navbar .dropdown-menu a {
    padding: 10px 10px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    display: block;
    color: #333;
    text-decoration: none;
}
.navbar .dropdown-menu a:last-child {
  border-bottom: none;
}

.navbar .dropdown-header {
  font-weight: bold;
  font-size: 15px;
  color: #000;
  padding: 5px 10px;
}

/* Hover to open */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
/****************************************************************************/

.modal-content {
  background: #fff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}
.modal-body {
  padding: 2rem;
}
.form-label {
  font-weight: 600;
  font-size: 0.95rem;
}
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
  border-color: #007bff;
}
a.text-dark:hover {
    color: #dc3545 !important;
}

/***************************************************************************/
.faq-card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .faq-card:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .faq-button {
      background-color: #fff;
      color: #000;
      font-weight: 500;
      text-align: left;
      width: 100%;
      border: none;
      border-radius: 10px;
      padding: 0.5rem 1.5rem;
    }

    .faq-icon {
      background-color: #dc3545;
      color: #fff;
      border-radius: 50%;
      width: 27px;
      height: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq-body {
      padding: 0 1.5rem 1rem;
      background-color: #fff;
    }
    
    /*****************************  review section **********************************/
    .review-card {
  background-color: #ffa3ac29;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 10px;
}
.review-card p {
  font-style: italic;
  color: #444;
}
.review-card h6 {
  font-weight: 600;
  color: #222;
}
.review-card small {
  color: #777;
}
/******************************   card section  *******************************/
.property-card {
      color: #000;
      padding: 20px;
      min-height: 180px;
      border-radius: 4px;
      position: relative;
      transition: all 0.3s ease-in-out;
    }

    .property-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .property-link {
      display: inline-block;
      margin-top: 20px;
      font-weight: 500;
      text-decoration: none;
    }

   .property-icon {
    position: absolute;
    bottom: 0;
    left: auto;
    font-size: 50px;
    opacity: 0.3;
    right: 10px;
}

    .bg-deepblue { background-color: #0039a6; color: white; }
    .bg-maroon { background-color: #a33852; color: white; }
    .bg-yellow { background-color: #f3d46d; }
    .bg-bluegreen { background-color: #49959e; color: white; }
    
    /***************************************  Cities Section  *******************************/
    
    .city-card {
      text-align: center;
      margin-bottom: 30px;
    }
    .city-card .img-circle {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 10px;
      transition: transform 0.3s ease;
    }
    .city-card .img-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .city-card:hover .img-circle img {
      transform: scale(1.1);
    }
    .city-card h6 {
      font-weight: 600;
      margin-bottom: 5px;
    }
    .city-card p {
      margin: 0;
      font-size: 14px;
      color: #777;
    }
    .section-title {
      text-align: center;
      margin-bottom: 40px;
      font-size: 24px;
    }
    .section-title span {
      color: #b22222; /* dark red */
    }
    .view-btn {
      display: inline-block;
      border: 1px solid #0d6efd;
      padding: 6px 16px;
      border-radius: 20px;
      color: #0d6efd;
      font-size: 14px;
      transition: 0.3s;
    }
    .view-btn:hover {
      background-color: #0d6efd;
      color: white;
    }
    
  .active>.page-link, .page-link.active {
    z-index: 3;
    color: #dc3545;
    background-color: #dc3545;
    border-color: #dc3545;
}
    .tabs-section {
      padding: 60px 20px;
    }

    .nav-pills .nav-link {
      background: #fff;
      color: #333;
      border: 1px solid #ddd;
      margin-right: 10px;
      font-weight: 500;
    }

    .nav-pills .nav-link.active {
      background: #dc3545;
      color: #fff;
    }

    .tab-content .service-box {
      background: #fff;
      padding: 10px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .service-box i {
      font-size: 32px;
      color: #dc3545;
      margin-bottom: 10px;
    }

    .service-box h6 {
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .service-box p {
      font-size: 0.9rem;
      color: #666;
    }
    .border-2{
        border:1px solid #dc3545;
    }
 
 
 
 .service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  justify-content: space-between;
}

.service-box {
  width: 19%; /* 100 / 5 = 20, thoda gap ke liye 19% */
  background-color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
  .service-box {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .service-box {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .service-box {
    width: 100%;
  }
}

     /***********************  About Us  ****************************************/
    
     .about-us {
      padding: 80px 20px;
      background: linear-gradient(to right, #ffffff, #f3f3f3);
    }

    .about-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .about-title h2 {
      font-size: 3rem;
      font-weight: bold;
      color: #333;
    }

    .about-card {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .about-icon {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 15px;
    }

    .about-text h4 {
      font-weight: 600;
      color: #222;
    }

    .about-text p {
      color: #555;
    }

    .fade-in {
      opacity: 1;
      transform: translateY(20px);
      transition: all 0.6s ease-in-out;
    }


    .about-section {
      padding: 50px 20px;
     
    }

    .image-stack {
      position: relative;
      width: 360px;
      height: 360px;
      margin: auto;
    }

    .image-stack img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
      border: 5px solid #fff;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease;
    }

    .image-stack .img1 { z-index: 1; transform: translateX(-110px) scale(0.9); filter: brightness(0.85); }
    .image-stack .img2 { z-index: 2; }
    .image-stack .img3 { z-index: 1; transform: translateX(110px) scale(0.9); filter: brightness(0.85); }

    .image-stack img:hover {
      transform: scale(1.05);
      z-index: 3;
    }

    .about-content h2 {
      font-size: 2.5rem;
      color: #111;
      font-weight: bold;
      border-left: 5px solid #dc3545;
      padding-left: 15px;
      margin-bottom: 20px;
    }

    .about-content p {
      color: #555;
      margin-bottom: 25px;
    }

    .about-content ul {
      list-style: none;
      padding-left: 0;
    }

    .about-content ul li {
      margin-bottom: 12px;
      font-size: 1.05rem;
      color: #333;
    }

    .about-content ul li::before {
      content: '\f26e';
      font-family: "Bootstrap-icons";
      color: #dc3545;
      margin-right: 10px;
      font-weight: bold;
    }

   
    @media (max-width: 768px) {
      .image-stack {
        width: 280px;
        height: 180px;
        margin-bottom: 30px;
      }
    }
    
    /****************************  Contact Us  *************************************/
    
     .section-title {
      text-align: center;
      padding: 40px 0 20px;
    }

    .section-title h2 {
      font-weight: bold;
      color: #dc3545;
    }

    .contact-details {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    }

    .contact-details i {
      font-size: 24px;
      color: #dc3545;
      margin-right: 10px;
    }

    .contact-form {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    }

    .workflow-section {
      padding: 40px 20px;
      background: linear-gradient(to right, #ffffff, #f0f0f0);
    }

    .workflow-tree {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      position: relative;
    }

    .workflow-block {
      background: white;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      width: 200px;
      margin: 5px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .workflow-block i {
      font-size: 28px;
      color: #dc3545;
      margin-bottom: 10px;
    }

    .workflow-block h6 {
      font-weight: bold;
      color: #222;
    }

    .workflow-line {
      content: '';
      position: absolute;
      top: 50%;
      left: 90%;
      height: 2px;
      width: 40px;
      background-color: #dc3545;
      z-index: -1;
    }

    .workflow-block:last-child .workflow-line {
      display: none;
    }

    @media (max-width: 768px) {
      .workflow-line {
        display: none;
      }
    }
    
    
    /************************************  Privacy Policy **************************************/
    
     .privacy-container {
      background: white;
      padding: 40px;
      border-radius: 10px;
      margin-top: 50px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

    .section-title {
      color: #dc3545;
      margin-top: 40px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      font-size: 1.5rem;
    }

    .section-title i {
      margin-right: 10px;
      font-size: 1.4rem;
    }

    p {
      line-height: 1.7;
      color: #444;
    }

    ul {
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 10px;
    }
    
    /******************************  Services **********************************************/
    .nav-pills .nav-link1 {
      background: #fff;
      color: #333;
      border: 1px solid #ddd;
      margin-right: 10px;
      font-weight: 500;
    }

    .nav-pills .nav-link1.active {
      background: #dc3545;
      color: #fff;
    }

    .tab-content .service-box {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: 0.3s ease;
    }

    .service-box1:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .service-box1 i {
      font-size: 32px;
      color: #dc3545;
      margin-bottom: 10px;
    }

    .service-box1 h6 {
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .service-box1 p {
      font-size: 0.9rem;
      color: #666;
    }
    
    /*********************************************************************************/
     .privacy-container {
      background: white;
      padding: 40px;
      border-radius: 10px;
      margin-top: 50px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

    .section-title {
      color: #dc3545;
      margin-top: 40px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      font-size: 1.5rem;
    }

    .section-title i {
      margin-right: 10px;
      font-size: 1.4rem;
    }

    p {
      line-height: 1.7;
      color: #444;
    }

    ul {
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 10px;
    }
    /**********************************************************************************/
    .carousel-item img { width: 100%; height: 500px; object-fit: cover; }
    .info-bar { background: #fff; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .info-bar span { font-weight: bold; margin-right: 25px; }
    .overview, .amenities, .description, .services, .floor-plan, .video-tour, .similar-properties { background: #fff; padding: 30px; margin-top: 20px; border-radius: 8px; }
    .overview .item { font-size: 0.95rem; }
    .amenities .item, .services .item { text-align: center; padding: 15px; border: 1px solid #eee; border-radius: 6px; transition: 0.3s; }
    .amenities .item:hover { background: #fde2e2; }
    .services .item i { font-size: 1.8rem; color: #dc3545; margin-bottom: 8px; }
    .score-badge { display: inline-block; background: #ffdfdf; padding: 8px 12px; border-radius: 20px; font-size: 0.9rem; margin-right: 10px; margin-bottom: 10px; }
    .highlight-flow { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; }
    .highlight-flow .flow-item { flex:1; background:#fff; padding:15px; border-radius:6px; text-align:center; font-size:0.9rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .right-sidebar { position: relative; }
    .sticky-enquiry { position: sticky; top: 100px; background: white; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-radius: 8px; z-index: 10; }
      .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
  }

  .overview-grid li {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }

  .overview-grid li i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #dc3545;
  }
       .amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
  }

  .amenities-list li {
    background: #ffe9ec;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }

  .amenities-list li i {
    margin-right: 10px;
    color: #6c757d;
    font-size: 1.2rem;
  }
      .services-section h4 {
    font-weight: bold;
  }
  .service-box12 {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .service-box img {
    max-width: 100%;
  }
  
  /********************************  PROPERTY Details  *****************************************/
  
    .sticky-enquiry-form {
    background-color: #fff1f4;
    border-radius: 16px;
    position: sticky;
    top: 100px;
  }

  .form-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #dc3545;
    font-size: 1.1rem;
  }

  .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
  }

  .form-check-input:checked {
    background-color: #dc3545;
    border-color: #dc3545;
  }

  .form-check-label a:hover {
    color: #000;
  }
  .quick-menu{
      display: flex;
  }
  .quick-menu li{
      padding:0 10px;
      list-style-type: none;
      
  }
  .quick-menu li a{
      text-decoration:none;
      color:#fff;
      line-height:40px;
  }
  .quicklinks {
    position: sticky;
    top: 80px;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}
 .carousel-item img { width: 100%; height: 500px; object-fit: cover; }
    .info-bar { background: #fff; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .info-bar span { font-weight: bold; margin-right: 25px; }
    .overview, .amenities, .description, .services, .floor-plan, .video-tour, .similar-properties { background: #fff; padding: 30px; margin-top: 20px; border-radius: 8px; }
    .overview .item { font-size: 0.95rem; }
    .amenities .item, .services .item { text-align: center; padding: 15px; border: 1px solid #eee; border-radius: 6px; transition: 0.3s; }
    .amenities .item:hover { background: #fde2e2; }
    .services .item i { font-size: 1.8rem; color: #dc3545; margin-bottom: 8px; }
    .score-badge { display: inline-block; background: #ffdfdf; padding: 8px 12px; border-radius: 20px; font-size: 0.9rem; margin-right: 10px; margin-bottom: 10px; }
    .highlight-flow { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; }
    .highlight-flow .flow-item { flex:1; background:#fff; padding:15px; border-radius:6px; text-align:center; font-size:0.9rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .right-sidebar { position: relative; }
    .sticky-enquiry { position: sticky; top: 100px; background: white; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-radius: 8px; z-index: 10; }
      .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
  }

  .overview-grid li {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }

  .overview-grid li i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #dc3545;
  }
       .amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
  }

  .amenities-list12 li {
    background: #ffe9ec;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }

  .amenities-list12 li i {
    margin-right: 10px;
    color: #6c757d;
    font-size: 1.2rem;
  }
      .services-section h4 {
    font-weight: bold;
  }
  .service-box12 {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .service-box12 img {
    max-width: 100%;
  }
    .lightbox-thumb {
    cursor: pointer; /* Hand cursor */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 6px;
  }

  .lightbox-thumb:hover {
    transform: scale(1.05); /* Slight zoom */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Optional lift effect */
  }
  #mainNavbar {
    background-color: #6b6b6b;
}