 /* Box Image Styling */
 .box-image {
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .common-box{
    border: 1px solid #eaeced;
    background-color: #EAECED;

  }
  .img-box{
    background-color: #fff;
    object-fit: none;
    width: 90%;
    margin: 10px 0 0 0;
  }
  /* Highlighted Text */
  .highlight {
    background-color: yellow;
    font-weight: bold;
  }

  /* Search Results */
  .search-results {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    display: none;
  }

  .search-results ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .search-results ul li {
    padding: 5px;
    border-bottom: 1px solid #ddd;
  }

  .search-results ul li:last-child {
    border-bottom: none;
  }

  /* Top Bar */
  .top-bar {
    background-color: #3468af; /* Blue background */
    color: white;
    padding: 5px 0;
    text-align: left;
    font-weight: 700;
  }

  .top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
  }

  /* Header */
  .main-header {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }

  .logo img {
    height: 60px;
  }

  /* Navbar Links */
  .nav-link {
    color: black !important;
    font-weight: 500;
    padding: 10px;
  }

  .talk-to-expert{
    border: 2px solid #0063e1;
    border-radius: 4px;
    margin-top: -3px;
  }

.quote-div{
  margin-top: 3em;
}
.btn-custom {
  background-color: #2EA3F2;   /* #0B5ED7 */
  border-color: #2EA3F2;
  color: #fff;
}
.btn-custom:hover {
  background-color: #285285 !important; /* Slightly darker for hover */
  border-color: #285285 !important;
  color: #fff !important;
}

  /* .talk-to-expert a{
    
    } */

  /* Language Flags */
  /* .language-flags img {
    height: 20px;
    margin-left: 10px;
  } */

  /* Talk to Expert Button */
  /* .talk-to-expert-btn {
    border: 1px solid #3468af;
    color: #3468af;
    font-weight: 500;
  }

  .talk-to-expert-btn:hover {
    background-color: #3468af;
    color: white;
  } */

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .search-results {
      max-height: 150px;
    }
    #btn-back-to-top {
      display: none !important;
    }
  }

  @media (max-width: 576px) {
    .nav-link {
      font-size: 14px;
      padding: 0 8px;
    }

    .box-name {
      font-size: 14px;
    }
    .logo img {
      height: 45px;
    }

    /* .talk-to-expert-btn {
      padding: 8px 12px;
    } */

    .row > div {
      margin-bottom: 15px;
    }
  }

  .form-control{
    width: 30% !important;
  }

  .link-text{
    color: #fff !important;
    text-decoration:none;
  }
  .my-btnsm {
    /* width: 80px; */
    border: 1px solid;
    /* display: inline-block; */
  }

  .heading-section{
    background-color: #2EA3F2;
    color: #fff;
    font-size: 1rem;
  }
  
  .text-underline-hover {
    text-decoration: none;
}

.text-underline-hover:hover {
    text-decoration: underline;
}

.custom-fsize{
  font-size: 14px;
}
.ul-color a{
  color: #2673cc;
}
.wavebps{
  margin-top: 55px;
}
.dropdown-item span {
  white-space: normal;
}

#btn-back-to-top {
  position: fixed;
  bottom: 75px;
  right: 20px;
  display: none;
  background-color: #3468af;
  color: #fff;
  border-radius: 0;
}

footer{
  background-color: #000; 
  color: white; 
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
}

.footer-area{
  padding: 100px 50px;
  background: black;
  color: #b5b5b5;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-menu a{
  text-decoration: none;
  color: #b5b5b5;
  font-size: 12px;
}

/* Section Padding */
.three-box {
  background: linear-gradient(rgba(41, 41, 41, 0.6), rgba(41, 41, 41, 0.6)), 
                url("../images/ics-bld.jpg"); /* Ensure correct path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; /* Center the background for better alignment */
    padding: 50px 0; /* Maintain padding */
    color: white; /* Ensure text remains readable */
    height: 500px;
}

/* Common Box Styling */
.three-common-box {
  background: rgba(255, 255, 255, 0.9); /* Slight opacity for better readability */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.three-common-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.img-box2 {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

/* Button Styling */
.btn-custom-primary {
  background-color: #0056b3; /* Darker blue for better contrast */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out;
}

.btn-custom-primary:hover {
  background-color: #003d80;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .three-box{
    height: auto;
  }
  .three-common-box {
      margin-bottom: 20px;
  }
}


/* Modal Enhancements */
.custom-modal .modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-modal .modal-header {
  background: #007bff;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.custom-modal .modal-footer {
  border-top: none;
}

.modal-image {
  max-width: 100%;
  /* height: auto; */
  height: 300px;
  display: block;
  margin: 0 auto 15px;
  border-radius: 8px;
}

/* Fade-in Animation */
.modal.fade .modal-dialog {
  transform: translate(0, -20px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
  opacity: 1;
}

/* List Styling */
.cablelist {
  /* padding-left: 20px; */
  font-size: 16px;
}
.cablelist li {
  color: #2EA3F2;
  font-weight: bold;
  margin-bottom: 10px;
}

.cablelist a {
  /* color: #007bff; */
  color: #2EA3F2;
  font-weight: bold;
  transition: color 0.2s;
}

.cablelist a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumb-area{
  background: #edeff0;
  color:#000
}

.breadcrumb {
  /* list-style: none;
  display: flex;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 5px; */
  margin: 0;
}
.breadcrumb li {
  margin-right: 10px;
}
.breadcrumb li:not(:last-child)::after {
  content: "»";
  margin-left: 10px;
}
.breadcrumb a {
  text-decoration: none;
  /* color: #007bff; */
  color: #000;
}
.breadcrumb a:hover {
  text-decoration: none;
}
/* .linkedin { background-color: #007bb6; }
.youtube { background-color: #a82400; }
.facebook { background-color: #3b5998; }
.twitter { background-color: #000; border: 1px solid #fff; }
.instagram { background-color: #ea2c59; }
.threads { background-color: #dd4b39; } */ 

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background-color: #000;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  text-decoration: none;
  color: white;
}

/* .linkedin { background-color: #0077B5; } */
.linkedin { background-color: #0a66c2; }
.youtube { background-color: #FF0000; }
.facebook { background-color: #1877F2; }
.twitter { background-color: #000000; color: white; border: 1px solid #fff;}
.instagram { background: linear-gradient(45deg, #833AB4, #E1306C, #FD1D1D, #F77737); }
.threads { background-color: #262626; }

.img-width{
  width: 400px;
  margin: 0 auto;
  display: block;
}

.nav-tabs .nav-link {
  color: #000;
  font-weight: bold;
  padding: 1rem;
}
.nav-tabs .nav-link.active {
  background-color: #2EA3F2;
  color: #fff;
}
.tab-content {
  border: 1px solid #ddd;
  padding: 15px;
  background: #fff;
}