 

 /* ...........................Banner Styling CSS Started Here...................... */
.banner {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire screen */
    z-index: -1; /* Places the video behind the content */
    filter: brightness(60%); /* Darkens the video for better text readability */
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff; /* Ensures text is readable over the video */
    text-align: center; /* Center-align text */
    padding: 0 20px; /* Add padding for smaller screens */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds shadow to the text */
    width: 100%;
    max-width: 1600px;
}

.banner-content h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.25rem;
    line-height: 1.5;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stats h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stats p {
    font-size: 1.1rem;
}

.text-white {
    color: #fff !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .stats {
        flex-direction: column;
        align-items: center; /* Center-align stats on smaller screens */
    }

    .stats h2 {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }

    .stats p {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .banner-content {
        padding: 0 10px; /* Increase padding for very small screens */
    }

    .banner-content h1 {
        font-size: 1.5rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .stats h2 {
        font-size: 1.2rem; /* Further adjust font size for very small screens */
    }

    .stats p {
        font-size: 0.9rem; /* Further adjust font size for very small screens */
    }
}

/* Scroll indicator styling */
.scroll-indicator {
  position: absolute;
  bottom: 20px; /* Distance from the bottom */
  left: 50%;
  transform: translateX(-50%); /* Centers the indicator horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2; /* Ensure it stays above other content */
}

.scroll-indicator::before {
  content: "";
  width: 2px; /* Thickness of the vertical line */
  height: 40px; /* Height of the line */
  background-color: #fff; /* White color for visibility */
  margin-bottom: 10px; /* Space between the line and the arrow */
}

.scroll-arrow {
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff; /* Arrow left part */
  border-bottom: 2px solid #fff; /* Arrow bottom part */
  transform: rotate(-45deg);
  margin-top: 5px;
  animation: bounce 1.5s ease-in-out infinite; /* Apply the bounce animation */
}

/* Bounce animation */
@keyframes bounce {
  0% {
    transform: translateY(0) rotate(-45deg); /* Starting position */
  }
  50% {
    transform: translateY(-10px) rotate(-45deg); /* Move up */
  }
  100% {
    transform: translateY(0) rotate(-45deg); /* Back to the starting position */
  }
}
/* ...........................Banner Styling CSS ENDED Here...................... */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
    position: relative;
    margin: 60px 0 0 60px;
  }
  
  .about .about-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    content: "";
    background: url("../images/Home/about-bg.png") top left;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  .about .about-img img {
    position: relative;
    z-index: 2;
  }
  
  @media (max-width: 575px) {
    .about .about-img {
      margin: 30px 0 0 30px;
    }
  
    .about .about-img:before {
      inset: -30px 0 0 -30px;
    }
  }
  
  .about h3 {
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    .about h3 {
      font-size: 28px;
    }
  }
  
  .about .nav-pills {
    border-bottom: 1px solid color-mix(in srgb, var(--primary-color), transparent 85%);
  }
  
  .about .nav-pills li+li {
    margin-left: 40px;
  }
  
  .about .nav-link {
    background: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
  }
  
  .about .nav-link.active {
    color: var(--primary-color);
    background: none;
    border-bottom: 3px solid var(--primary-color);
  }
  
  @media (max-width: 575px) {
    .about .nav-link {
      font-size: 16px;
    }
  }
  
  .about .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .about .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--primary-color);
  }
  /*--------------------------------------------------------------
# About Section Ended
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 20px;
  max-width: 100%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}
/*--------------------------------------------------------------
# Clients Section ENDED
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Call To Action Section Started
--------------------------------------------------------------*/
.call-to-action {
  padding: 0;
}

.call-to-action .container-fluid {
  /* padding: 80px; */
  background: color-mix(in srgb, var(--primary-color), transparent 96%);
  border-radius: 15px;
}

.call-to-action .container {
  padding: 80px;
  /* background: color-mix(in srgb, var(--primary-color), transparent 96%); */
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 60px;
  }
}

.call-to-action .content h3 {
  font-size: 3rem;
  font-weight: 700;
}
/* Media query for small screens */
@media (max-width: 1200px) {
  .call-to-action .content h3 {
    font-size: 2.5rem; /* Adjust size for tablets */
  }
}

@media (max-width: 576px) {
  .call-to-action .content h3 {
    font-size: 1.8rem; /* Further adjust size for mobile phones */
  }
}
.call-to-action .content h3 em {
  font-style: normal;
  position: relative;
  z-index: 1;
}

.call-to-action .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px; 
  /* background: color-mix(in srgb, var(--olive-green), transparent 30%); */
  z-index: -1;
}

.call-to-action .content p {
  /* color: color-mix(in srgb, var(--olive-green), transparent 20%); */
  font-weight: 400;
  font-size: 18px;
}

.call-to-action .content .cta-btn {
  color: var(--cream);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  text-decoration: none;
  background: var(--primary-color);
}

.call-to-action .content .cta-btn:hover {
  background: color-mix(in srgb, var(--primary-color) 90%, black 15%);
}
/* 
.call-to-action .img {
  position: relative;
}

.call-to-action .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--primary-color), transparent 20%);
  border-radius: 15px;
  transform: rotate(6deg);
  z-index: 2;
}

.call-to-action .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--olive-green), transparent 60%);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 1;
}

.call-to-action .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  z-index: 3;
} */

.call-to-action .img img {
  /* position: relative; */
  /* z-index: 3; */
  border-radius: 15px;
  /* z-index: 3; */
}

/*--------------------------------------------------------------
# Call To Action Section Ended
--------------------------------------------------------------*/


/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--olive-green) 50%, color-mix(in srgb, var(--olive-green), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--olive-green), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--olive-green);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Onfocus Section Started
--------------------------------------------------------------*/
.onfocus {
  padding: 0;
}

.onfocus .video-play {
  min-height: 400px;
  background: linear-gradient(color-mix(in srgb, var(--olive-green), transparent 90%), color-mix(in srgb, var(--olive-green), transparent 95%)), url("../images/Home/onfocus-video-bg.jpg") center center;
  background-size: cover;
}

.onfocus .content {
  background: linear-gradient(color-mix(in srgb, var(--olive-green), transparent 90%), color-mix(in srgb, var(--olive-green), transparent 75%)), url("../images/Home/onfocus-content-bg.jpg") center center;
  background-size: cover;
  padding: 40px;
}

@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}

.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: #fff;
}

.onfocus .content ul {
  list-style: none;
  padding: 0;
}

.onfocus .content ul li {
  padding-bottom: 10px;
  color: #fff;
}

.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--olive-green);
}

.onfocus .content p:last-child {
  margin-bottom: 0;
}

.onfocus .content .read-more {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-color);
  background: var(--primary-color);
  text-decoration: none;
}
bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
  vertical-align: -.25em !important;
}
.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  margin-top: 12px;
  line-height: 0;
  transition: 0.3s;
}

.onfocus .content .read-more:hover {
  background: color-mix(in srgb, var(--olive-green) 90%, black 15%);
  padding-right: 19px;
}

.onfocus .content .read-more:hover i {
  margin-left: 10px;
}

.onfocus .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
/*--------------------------------------------------------------
# Onfocus Section Ended
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Featured Services Section Started
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--color-secondary);
  border: 0;
  padding: 25px 20px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.features .nav-link:hover {
  color: var(--olive-green);
}

.features .nav-link:hover,
.features .nav-link.active {
  transition: 0.3s;
  background: var(--olive-green);
  color: var(--surface-color) !important;
  border-color: var(--primary-color);
}

.features .nav-link:hover h4,
.features .nav-link.active h4 {
  color: var(--surface-color);
}

.features .nav-link:hover i,
.features .nav-link.active i {
  color: var(--surface-color) !important;
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 28px;
}
.features .tab-pane img {
 border-radius: 20px;
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--olive-green);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/* .carousel-control-prev-icon {
    background-color: var(--primary-color);
    border-radius: 40px;
}

.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 40px;
} */
/*--------------------------------------------------------------
# Featured Services Section Ended
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Faq Section Started
--------------------------------------------------------------*/
/* #faq{
  background: color-mix(in srgb, var(--primary-color), transparent 96%);

}
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--primary-color), transparent 30%);
  font-weight: 700;
  font-size: 20px;
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--olive-green);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--olive-green);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--olive-green);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--olive-green);
}

.faq .faq-container .faq-active h3 {
  color: var(--olive-green);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--olive-green);
} */
 /* Main container styling */
.faq.section {
  background-color: #f9f9f9; /* Light grey background for the section */
  padding: 60px 0;
}

/* Accordion header button styling */
.accordion-button {
  background-color: var(--primary-color); /* Blue background for buttons */
  color: #fff; /* White text */
  font-weight: bold;
  border: 1px solid #007BFF;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.accordion-button:focus {
  box-shadow: none; /* Remove focus outline */
}

.accordion-button:not(.collapsed) {
  background-color: #0056b3; /* Darker blue when expanded */
  color: #fff;
}

/* Accordion body content styling */
.accordion-body {
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #333; /* Dark text for readability */
}

/* Accordion hover effect */
.accordion-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Styling for FAQ section title */
.faq .content h3 {
  font-size: 32px;
  color: #fff;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq .content h3 span {
  color: #007BFF; /* Blue color for the first word */
}

.faq .accordion-item h2 button{
  letter-spacing: 6px;

}

.faq .content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Image styling */
.faq .col-lg-5 img {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .faq .content h3 {
      font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Faq Section Ended
--------------------------------------------------------------*/
