/* Modal overlay */
.solutions-hero{
  background:url('../images/service-bg.png');
  background-repeat:no-repeat;
  background-size:cover;
  height:600px;


}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal content */
.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  height:350px;
  width: 90%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Invalid input styling */
.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.344);
  z-index: 0;
}

.solutions-hero-content {
  position: relative;
  top:200px;
  padding-left:13%;
  max-width: 680px;
  z-index: 1;
}

.solutions-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  font-family: 'Inter', sans-serif;
}

.solutions-hero-content h1 .highlight {
  color: #f97316; /* orange highlight */
}

.solutions-hero-content p {
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 500px;
  color: white;
  font-family: 'Inter', sans-serif;
}

.btn-request-service {
  position:relative;
  top:33px;
  left:450px;
  width:250px;
  background-color: #ffcc00;
  color: #000;
  font-weight: 600;
  padding: 8px 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(255, 204, 0, 0.6);
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.btn-request-service:hover {
  background-color: #e6b800;
  color: #000;
}

.solutions-hero-form {
  position: absolute;
  top:-80px;
  left:185px;
  background: white;
  padding: 35px;
  margin-top: 20px;
  max-width:75%;
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 1;
  position: relative;
}

.solutions-hero-form input[type="text"],
.solutions-hero-form input[type="email"],
.solutions-hero-form input[type="tel"],
.solutions-hero-form input[type="date"] {
  flex: 1 1 20px;
  padding: 6px 20px;
  margin-left:10px;
  max-width:200px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.solutions-hero-form button {
  background-color: #f97316;
  color: white;
  font-weight: 600;
  margin-left:10px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  flex: 1 1 180px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.solutions-hero-form button:hover {
  background-color: #d65a0e;
}


/* Responsive */
@media (max-width: 990px) {
  .solutions-hero {
    display:none;
  }
  .hero-service-content{
    font-size: 1rem;
    padding:15px;
  }
 
  
  .solutions-hero-form button{
    display: none;
  }
  .solutions-hero-form{
    display: none;
  }
  
 
}

.get-started-section {
  position: relative;
  color: white;
  padding-top: 4rem;
  padding-bottom: 4rem;
  animation: zoomInOut 15s ease-in-out infinite;
  transform-origin: center center;
}

.get-started-section::before {
  content: '';
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 25, 81, 0.686);
  z-index: 1;
  pointer-events: none;
}

.get-started-label {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.get-started-heading {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.get-started-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.btn-get-started {
  background-color: white;
  color: #0b2e60;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-get-started:hover {
  background-color: #f68e49;
  color: white;
  text-decoration: none;
}

/* Quick Services Hover Effect */
.service-list-item {
  position: relative;
}

.service-hover-image {
  position: absolute;
  top: 0;
  right: -30px;
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.service-list-item:hover .service-hover-image {
  opacity: 1;
  pointer-events: auto;
}

.service-link {
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #ff6600 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .get-started-heading {
    font-size: 2rem;
  }

  .get-started-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Fix left column in document & detail section */
.document .container .row > .col-md-4 {
  position: sticky;
  top: 100px;
  height: calc(100vh - 120px);
  overflow-y: auto;
  z-index: 5;
  padding-top: 1rem;
  padding-bottom: 1rem;
}


.get-started-section .container {
  position: relative;
  z-index: 2;
}

.get-started-label {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.get-started-heading {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.get-started-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.btn-get-started {
  background-color: white;
  color: #0b2e60;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-get-started:hover {
  background-color: #f68e49;
  color: white;
  text-decoration: none;
}

.service-img{
  height:400px;
  width:100%;

}
.list {
  list-style-type:square;
  font-size:1.5rem;
  text-align: left;
}
.list-item{
  list-style: none ;
  list-style-type: none;
  color:black;
  text-decoration: none;
  border-bottom:2px solid orange;
}
.service-detail-hero{
position: relative; 
background-size: cover; 
background-position: center;
object-fit: contain;
 height: 600px; 
 display:flex; 
 align-items: center;

  justify-content: center; 
  color: white;
}
 .filter {
      background-color: #f8f9fa;
      border-radius: 12px;
      padding: 16px;
      text-align: center;
      transition: transform 0.2s;
      height: 100%;
    }
    .filter:hover {
      transform: translateY(-4px);
    }
    .filter img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      margin-bottom: 10px;
    }
    .service-title {
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none !important;
    }
 
   .horizontal-scroll-wrapper {
    position: relative;
    margin: 20px 0;
  }
  .horizontal-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    width: 100%;
  }
  /* Hide scrollbar for WebKit browsers */
  .horizontal-scroll-container::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for Firefox */
  .horizontal-scroll-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .scroll-card {
    flex: 0 0 450px;
    background: #f5f3f1;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    max-height: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .scroll-card .text-section {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .scroll-card .text-section h3 {
    margin: 0 0 10px 0;
    font-weight: 700;
    font-size: 1.2rem;
  }
  .scroll-card .text-section p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
  }
  .scroll-card .text-section button {
    align-self: flex-start;
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
  }
  .scroll-card .text-section button:hover {
    background-color: #333;
  }
  .scroll-card .image-section {
    flex: 1;
    overflow: hidden;
  }
  .scroll-card .image-section img {
    width:100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .bg-solution{
    background-color: #f68e498d;
  }
  .scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
  }
  .scroll-arrow:hover {
    background-color: #eee;
  }
  .scroll-arrow i {
    font-size: 20px;
    color: #333;
  }
  .scroll-arrow.prev {
    left: -20px;
    display: none;
  }
  .scroll-arrow.prev.active {
    display: flex;
  }
  .scroll-arrow.next {
    right: -20px;
  }
.service-filters {
    margin-bottom: 2rem;
}

/* New filter two-column layout */
.service-filters .row.align-items-center {
    gap: 2rem;
}

.filter-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.filter-column .filter-item {
    background-color: #f7f7f7;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.filter-btn{
 
    border-radius: 5px;
    border:2px solid #333;
}
.service-card{
  background-color: #00070ead;
  border: none !important;
  box-shadow: none;
  padding: 15px;
  width: 100%;
  min-height: 400px;
  margin: 10px 5px 10px 10px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.offer:hover{
  transition-delay: 3ms;
  transform: scale(1.03);
  cursor: pointer;
}
.service-card:hover {
  box-shadow: 0 12px 24px rgba(255, 102, 0, 0.4);
  transform: scale(1.05);
  cursor: pointer;
}

 .filter-item img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

.filter-column .filter-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.filter-column .filter-item.active,
.filter-column .filter-item:hover {
    background-color: #ff6600;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.filter-column .filter-item.active img,
.filter-column .filter-item:hover img {
    filter: brightness(0) invert(1);
}


.filter-image-text {
    text-align: left;
}

.filter-image-text img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.filter-text h3 {
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.filter-text p {
    font-size: 1rem;
    color: #555;
}


.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-cards-grid .service-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.card:hover{
   transform: translateY(-5px) !important;
   box-shadow: 0 8px 20px rgba(248, 244, 244, 0.15) !important;

    
}


.service-card .card {
    border: none;
    border-radius: 12px ;
    overflow: hidden;
   box-shadow: 0 8px 20px rgba(248, 244, 244, 0.15) !important;

}
.img-button{
  width:130px !important;
  height:50px !important;
}
.service-cards-grid .card-img-top {
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.service-cards-grid .card-body {
    padding: 1rem;
}

.service-cards-grid .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-cards-grid .card-text {
    font-size: 0.9rem;
    color: #666;
}
  #mainNavbar .navbar-nav .nav-link {
    
      font-weight: 800;
    }
  
.zoom-animation {
  animation: zoomInOut 15s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1.0);
  }
  50% {
    transform: scale(1.02);
  }
  100%{
    transform: scale(1.05);
  }
}
  

    /* Hero Section Styles */
    .custom-hero {
      position: relative;
      width: 100%;
      height: 500px;
      background-image: url('../images/service-bg.png');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      padding-left: 10%;
      box-sizing: border-box;
     
      
    }

    .custom-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(1, 2, 23, 0.705);
      z-index: 1;
    }

    .custom-hero-content {
      position: relative;
      z-index: 2;
      background: white;
      padding: 40px 50px;
      max-width: 450px;
      border-radius: 8px;
      color: #ff6600; /* red */
      font-weight: 700;
      font-size: 2.5rem;
      line-height: 1.2;
      font-family: 'Inter', sans-serif;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Call Us Box */
    .call-us-box {
      position: absolute;
      bottom: -40px;
      right: 10%;
      background-color: #ff6600;
      color: white;
      padding: 30px 40px;
      border-radius: 8px;
      max-width: 300px;
      text-align: center;
      font-family: 'Inter', sans-serif;
      z-index: 3;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .call-us-box h2 {
      margin-bottom: 20px;
      font-weight: 700;
      font-size: 1.8rem;
    }

    .phone-number {
      background: white;
      color: #f44348;
      padding: 8px 20px;
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      font-size: 1.1rem;
      font-weight: 500;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .phone-number i {
      margin-right: 10px;
      font-size: 1.4rem;
    }

/* Responsive */
@media (max-width: 768px) {
  .custom-hero {
    height: 400px;
    padding-left: 5%;
    justify-content: center;
  }
  .custom-hero-content {
    max-width: 90%;
    font-size: 1.8rem;
    padding: 30px 20px;
  }
  .call-us-box {
    position: static;
    margin: 20px auto 0;
    max-width: 90%;
    padding: 20px;
    width:300px;
  }
}

/* Android / small screen responsiveness */
@media (max-width: 600px) {
  .service-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .filter-buttons-container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .filter-btn {
    width: 100% !important;
    max-width: none !important;
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .service-card {
    min-height: auto;
    margin: 10px 0;
    padding: 10px;
  }

  .service-cards-grid .card-img-top {
    height: auto;
    max-height: 200px;
  }

  .scroll-card {
    flex: 0 0 100% !important;
    max-height: none !important;
  }

  .scroll-card .text-section h3 {
    font-size: 1rem;
  }

  .scroll-card .text-section p {
    font-size: 0.85rem;
  }

  .scroll-card .text-section button {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}


/* Added to display filter buttons inline in a row */
.filter-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* pop section */

  .pop-section {
      background: url('../images/pocket-bg.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      border-radius: 10px;
      overflow: hidden;
      padding: 60px 30px;
    }

    .pop-content {
      max-width: 500px;
    }

    .buy-btn {
      background-color: white;
      color: black;
      border: none;
      padding: 10px 20px;
      font-weight: 500;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .pop-section {
        background: url('../images/pocket-bg.jpg') no-repeat center center;
        background-size: cover;
        text-align: left;
        padding: 30px 20px;
      }

      .pop-content {
        max-width: 100%;
      }
    }
    .pop-section-1 {
      background: url('../images/MA1-bg.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      border-radius: 10px;
      overflow: hidden;
      padding: 60px 30px;
    }

    .pop-content-1 {
      max-width: 500px;
    }

    .buy-btn {
      background-color: white;
      color: black;
      border: none;
      padding: 10px 20px;
      font-weight: 500;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .pop-section-1 {
        background: url('../images/MA1-bg.jpg') no-repeat center center;
        background-size: cover;
        text-align: left;
        padding: 30px 20px;
      }

      .pop-content-1 {
        max-width: 100%;
      }
    }
    .pop-section-2 {
      background: url('../images/MTC2-bg.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      border-radius: 10px;
      overflow: hidden;
      padding: 60px 30px;
    }

    .pop-content-2 {
      max-width: 500px;
    }

    .buy-btn {
      background-color: white;
      color: black;
      border: none;
      padding: 10px 20px;
      font-weight: 500;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .pop-section-2 {
        background: url('../images/MTC2-bg.jpg') no-repeat center center;
        background-size: cover;
        text-align: left;
        padding: 30px 20px;
      }

      .pop-content-2 {
        max-width: 100%;
      }
    }
.custom-hero-new{
  display:none;
}
a .service-title{
text-decoration: none !important;
color:black;
}
     @media (max-width: 990px) {
.custom-hero{
  display:none;
}
.image-new{
  display: none;
}
.section-title {
  text-align:center;
}
      .custom-hero-new{
       position: relative;
       padding: 1rem;
       top:80px;
       width:auto;
        display:block;
      }
     }
     .search-container {
    position: relative;
}

.search-input {
    height: 50px;
    border-radius: 30px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
}
@media (max-width: 768px) {
  .get-started-heading {
    font-size: 2rem;
  }

  .get-started-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .get-started-heading {
    font-size: 2rem;
  }

  .get-started-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Make left column static on small screens for better usability */
  .document .container .row > .col-md-4 {
    position: static;
    height: auto;
    overflow-y: visible;
    padding-bottom: 0;
  }
}
@media(max-width:990px){
  .section-1{
    display:none;

  }
  .section-2{
    padding: 5px 35px;
    font-size:1rem;
  }
  .section-3{
  display: none;
  }
}
