.video-slider {
  max-width: calc(100% - 50px);
  margin: auto;
  padding: 20px 0;
}

.video-box {
  padding: 10px;
}

.video-text-container {
  background-color: #dcb91c;
  text-align: center;
  padding: 10px;
}

.video-text {
  color: white;
  margin: 0;
  text-align: left;
}

.partner-logo {
    max-width: 120px; /* Ensures the logo doesn’t exceed this width */
    max-height: 120px; /* Ensures the logo doesn’t exceed this height */
    display: block; /* Ensures it behaves like a block element */
}

/*Logo slider styles*/
.logo-slider-box {
  display: flex; /* Flexbox to align in a row */
  justify-content: space-between; /* Spacing between the logos */
  flex-wrap: wrap; /* Ensures logos wrap if there isn't enough space */
  margin-top: 20px; /* Add spacing above the logos */
}

.logo-box {
  max-height: 100px;
  text-align: center; /* Center the logos */
}

.partner-logo {
  max-height: 100px;
  height: auto;
}


.about-2-content-area {
  text-align: center; /* Centering the text */
}
  
#aboutdetails {
  display: flex;                /* Use flexbox layout */
  justify-content: center;      /* Center items horizontally */
  align-items: center;          /* Center items vertically */
  flex-direction: column;       /* Stack items vertically (if needed) */
  text-align: center;           /* Center the text inside the columns */
}


.custom-list {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
}

.custom-list > .custom-list-item {
  margin: 10px 0; /* Add spacing between top-level items */
}

.custom-list .custom-sublist {
  padding-left: 20px; /* Indent second-level lists */
  list-style-type: disc; /* Add bullet points for second level */
}

.custom-list .custom-sublist .custom-sublist-item {
  padding-left: 20px; /* Indent third-level lists */
  list-style-type: circle; /* Change bullet points for third level */
}

.custom-list .custom-sublist .custom-sublist .custom-sublist-item {
  padding-left: 20px; /* Indent fourth-level lists */
  list-style-type: square; /* Change bullet points for fourth level */
}

/* Optional styling to make text visually distinct */
.custom-list-item, .custom-sublist-item {
  line-height: 1.5; /* Add space between lines for readability */
}

.service-detail-p {
  margin-top: 25px;
  color: #102039;
  line-height: 26px;
  font-size: 16px;
  font-weight: normal;
}

.last-service-detail-p {
  margin-bottom: 85px;
  color: #102039;
  line-height: 26px;
  font-size: 16px;
  font-weight: normal;
}


.breadcrumb__area {
  padding: 150px 0;
  position: relative; /* Ensure that the area can contain absolutely positioned elements */
  overflow: hidden;   /* Prevent overflow from the video or overlay */
}

.breadcrumb__wrapper {
  text-align: center;
  position: relative;
  z-index: 3; /* Ensure the text is above the overlay and video */
}

.breadcrumb__wrapper ul {
  justify-content: center;
}

.breadcrumb__wrapper .breadcrumb__title {
  font-size: 36px;
  color: white; /* Ensure text is visible on the video background */
}

.breadcrumb__wrapper .breadcrumb__subtitle {
  font-size: 18px;
  color: white; /* Ensure text is visible on the video background */
}

.video-bg {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* The video is behind the overlay */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  z-index: 2; /* This places the overlay between the video and the text */
}

.smaller-banner {
  max-height: 100px;
}

#bnTextContainer {
  position: absolute; /* Allows positioning relative to its parent */
  top: 50%; /* Move down 50% of the parent's height */
  left: 50%; /* Move right 50% of the parent's width */
  transform: translate(-50%, -50%); /* Translate it back 50% to perfectly center */
  text-align: center; /* Ensure the text is center-aligned */
  z-index: 3; /* Ensure it's on top of the video */
  width: 100%; /* Optional: makes sure the text container is full width */
}

.color-white {
  color: white;
}

.equal-size {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%; /* Ensures it adjusts with the swiper-slide container */
  height: 400px; /* Set a fixed height for uniform size */
}

.equal-size .image {
  flex-grow: 1; /* Image will take up most of the space */
  overflow: hidden;
}

.equal-size .image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fit perfectly inside */
}

.equal-size .content {
  padding: 10px; /* Optional padding for content */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 1024px){ 

.breadcrumb__wrapper {
  text-align: center;
}

.breadcrumb__area {
  padding: 80px 0;
}

.breadcrumb__wrapper .breadcrumb__title {
  font-size: 36px;
}

}

/* Privacy Policy Styles */
.privacy-policy-section {
  background-color: #f8f9fa;
}

.privacy-policy-content {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy-content h3 {
  color: #102039;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}

.privacy-policy-content h4 {
  color: #102039;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}

.privacy-policy-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.policy-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.policy-list li {
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.content-box {
  margin-bottom: 30px;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #EA1826;
}

.contact-info p {
  margin-bottom: 0;
}

.contact-info a {
  color: #EA1826;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-policy-content {
    padding: 20px;
  }
  
  .privacy-policy-content h3 {
    font-size: 20px;
  }
  
  .privacy-policy-content h4 {
    font-size: 16px;
  }
}
