.serviceBox{
    color: #666;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.serviceBox .title{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 30px;
}
/* Default styles for the icon */
.serviceBox .service-icon {
    color: #3c3555;
    font-size: 50px;
    line-height: 130px;
    height: 130px;
    margin: 0 auto 30px;
    border-radius: 20px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3), -5px -5px 5px #fff;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Change color on click */
.icon-link:active .service-icon {
    color: #ff5722; /* Change this to your desired color */
}

.serviceBox .description{
    color: #777;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin: 0 10px;
}
@media only screen and (max-width: 990px){
    .serviceBox{ margin: 0 0 30px; }
	
}
@media only screen and (max-width: 767px) {
    .serviceBox {
        
    }
	.why1 {
	
	    }
}

@media (max-width: 768px) {
    .hidden-on-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .spaced-element1 {
        margin-top: 50px; 
    }
}

@media (max-width: 768px) {
    .spaced-element {
        margin-top: 100px; 
    }
}



.tab .nav-tabs{
    border-bottom:0 none;
    margin-top: 20px;
	
}
.tab .nav-tabs li a {
	display: list-item;
	font-size:14px;
	color:#fff;
	margin-right:0;
	padding:10px 45px;
	border-radius:0;
	overflow: hidden;
	background: #696969;
	text-transform:uppercase;
	box-shadow: 8px 12px 25px 2px rgba(0, 0, 0, 0.4);
	transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
}
.tab .nav-tabs li:first-child a{
    border-top-left-radius:8px;
}
.tab .nav-tabs li:last-child a{
    border-top-right-radius:8px;
}
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a:hover,
.tab .nav-tabs li.active a{
    background: #3c3555;
    color:#fff;
    margin-top: -19px;
    padding:20px 45px;
    border:1px solid #545f60;
}
.tab .tab-content{
    color:#fff;
    padding: 25px 20px;
    background: #545f6017;
    border-radius: 0 0 8px 8px;
    /* box-shadow: 8px 12px 25px 2px rgba(0, 0, 0, 0.4); */
}
@media only screen and (max-width: 650px){
    .tab .nav-tabs li{ width:100%; }
    .tab .nav-tabs li a{
        margin:0;
        padding:20px 45px;
        box-shadow: -2px -1px 25px 2px rgba(0, 0, 0, 0.4);
    }
    .tab .nav-tabs li:first-child a,
    .tab .nav-tabs li:last-child a{
        border-radius: 0;
    }
    .tab .nav-tabs li a:hover,
    .tab .nav-tabs li.active a:hover,
    .tab .nav-tabs li.active a{
        margin:0;
    }
}
.tab .nav-tabs li a:active {
    background-color: #3c3555; 
    color: #fff; 
}


.carousel-wrapper {
  --width: 100px;
  --gap: 0;
  --num-items: 10;
  --ani-offset: calc(var(--width) * var(--num-items) * -1);
  --ani-speed: 30s;
  
  width: 400px;
  overflow: hidden;
  position: relative;
  
  
}
.carousel-wrapper::before,
.carousel-wrapper::after{
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  z-index: 1;
  top: 0;
}
.carousel-wrapper::before{
  left: 0;
  background-image: linear-gradient(to right,var(--bg-clr) 0%,transparent 50%);
}
.carousel-wrapper::after{
  right: 0;
  background-image: linear-gradient(to left,var(--bg-clr) 0%,transparent 50%);
}

.carousel {
  display: flex;
  align-items: center;
  animation: slide var(--ani-speed) linear infinite;
}
.item{
  flex: 1 0 var(--width);
  text-align: center;
  padding:1rem;
}
.item:last-child{
  /*background: red;*/
}
.item > img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

@keyframes slide {
  100% {
    transform: translateX(var(--ani-offset));
  }
}

.why1 {
    font-size: 1.75rem; 
    font-weight: bold;  
}

.about-us-container {
    background-color: #f7f7f7;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px; /* Adjust width as needed */
    border-radius: 8px; /* Optional: Rounded corners */
}

.about-us-content {
    color: #000; /* Black text color */
}

.about-us-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-us-content p {
    margin-bottom: 15px;
    line-height: 1.6; /* Improved readability */
}

.about-us-content strong {
    color: #000; /* Ensure bold text matches the rest of the text color */
}


.faq-container {
    background-color: #f7f7f7;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px; /* Adjust width as needed */
    border-radius: 8px; /* Optional: Rounded corners */
}

.faq-content {
    color: #000; /* Black text color */
}

.faq-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6; /* Improved readability */
}
