body{
/*   font-family: "Poppins", sans-serif !important; */
	font-family: Arial, sans-serif !important;
	

}
/***********/
.icon {
  font-weight: bold;
  color: #1ac1dd; /* Or any theme color */
}

.feature-title {
  font-weight: 600;
}

.ps-4 {
  padding-left: 1.5rem !important; /* To align under title */
}

/********** Template CSS **********/
:root {
	--primary: #C8B98C !important;
  --primary-color: #C8B98C;
  --primary-color-hover: #B6A876;
  --secondary-color: #007bff;
  --text-color: #000;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --gray-border: #ccc;
  --nav-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --circle-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1, h2, h3, h4, h5, h6, h7, h8 {
  font-family: Arial, sans-serif !important;
}

h1,
.h1 {
    font-weight: 600 !important;
}

h1,
.h1{
	font-size: 55px !important;
}

h2,
.h2{
	font-size: 48px !important;
	font-weight: 400 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
	font-family: 'Abyssinica SIL', serif !important;
	font-size: 32px !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
font-family: 'Abyssinica SIL', serif !important;
	font-size: 24px !important;
}

/* Tablet layout (up to 992px) */
@media (max-width: 992px) {
    h1,
    .h1 {
        font-size: 48px !important;
        font-weight: 600 !important;
    }

    h2,
    .h2 {
        font-size: 36px !important;
        font-weight: 400 !important;
    }

    h3,
    h4,
    .h3,
    .h4,
    .fw-medium {
        font-size: 24px !important;
        font-weight: 500 !important;
    }

    h5,
    h6,
    .h5,
    .h6,
    .fw-normal {
        font-size: 18px !important;
        font-weight: 400 !important;
    }
}

/* Mobile layout (up to 576px) */
@media (max-width: 576px) {
    h1,
    .h1 {
        font-size: 32px !important;
        font-weight: 600 !important;
    }

    h2,
    .h2 {
        font-size: 24px !important;
        font-weight: 400 !important;
    }

    h3,
    h4,
    .h3,
    .h4,
    .fw-medium {
        font-size: 18px !important;
        font-weight: 500 !important;
    }

    h5,
    h6,
    .h5,
    .h6,
    .fw-normal {
        font-size: 14px !important;
        font-weight: 400 !important;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.fw-bold 2 {
    font-weight: 700 !important;
}
.mb-1 {
    margin-bottom: .25rem !important;
}
h3, h4, .h3, .h4, .fw-medium {
    font-weight: 500 !important;
    font-family: 'Abyssinica SIL', serif !important;
    font-size: 22px !important;
}
.mb-12 {
    margin-bottom: .25rem !important;
}
h5, h6, .h5, .h6, .fw-normal {
    font-weight: 700 !important;
    font-family: 'Abyssinica SIL', serif !important;
    font-size: 20px !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/* Hamburger Icon */
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--secondary-color);
  left: 0;
  transition: 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }


/* ************************** */
/* Navbar */
/* **************************** */

.navbar-custom {
  background: var(--white);
  box-shadow: var(--nav-shadow);
}
.navbar-custom {
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
}




.navbar-brand {
  padding-left: 0;
  margin-right: 15px;
}
/* .logo-img {
  height: 75px;
  object-fit: contain;
} */
.logo-img {
  height: 70px; 
  object-fit: contain;
  display: block;         
  padding: 0;             
  margin: 0;              
}

.nav-link {
  font-size: 15px;
  color: var(--text-color) !important;
  font-weight: 500;
  margin: 0 6px;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: black !important;

}
.btn {
    font-weight: 500;
    transition: .5s;
}
.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.book-btn {
  background-color: var(--primary-color);
  border-radius: 50px;
/*   padding: 8px 22px; */
  color: var(--white);
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}
.book-btn:hover {
  background-color: var(--primary-color-hover);
}
.book-btn i {
  margin-left: 10px;
}

/* Mobile View */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    background-color: var(--white);
    border-radius: 5px;
  }
  .nav-link { margin: 6px 0; }
  .book-btn {
    width: 100%;
    justify-content: center;
  }
}
.nav-link.active {
  font-weight: bold; /* Make active link bold */
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: black !important;
}
/* ************************** */
/* Hero Section */
/* ************************** */
.hero-section {
  background-image: url('/wp-content/uploads/2025/09/image-5-scaled-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section .btn {
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  
}
.hero-section .btn-warning:hover {
  background-color: #1AC1DD;
  color: var(--white);
}
.hero-section .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--text-color);
}

.btn-outline-body {
    color: var(--light);
    border-color: #fff;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.d-flex.gap-3.flex-wrap {
    padding-top: 20px;
}
/* ************************** */
/* Why Card */
/* ************************** */
.why-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  text-align: center;
}
.why-card:hover { transform: translateY(-5px); }
.why-card .card-img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.why-card .icon-wrapper {
  margin-top: -25px;
  margin-bottom: 15px;
}
.why-card .icon-wrapper img {
  /* background-color: var(--white); */
  /* padding: px; */
  border-radius: 40px;
  /* box-shadow: var(--circle-shadow); */
  /* height: fit-content;
  width: fit-content; */
}
/* .why-card .card-text {
  font-weight: bolder;
  font-size: 0.9rem;
  padding: 0 15px;
} */

.card-text p{
  font-weight: bolder;
  font-size: 0.9rem;
  padding: 0 15px;
	color: black;
} 
/* Section background */
.why-join-section {
  background-color: #f5f6f6 !important;
	 padding-top: 60px;
  padding-bottom: 60px;
	
	
}

/* Why Card */
.why-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Add subtle shadow */
  padding-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Slightly stronger on hover */
}

/* ************************** */
/* Training & Education Section */
/* ************************** */

.step-item:last-child .step-icon::after {
  display:;
}

/* Object-fit for images */
.object-fit-cover {
  object-fit: fill !important;
}

/* Step Icon Wrapper and Circle */
.step-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  width: 50px; /* Increased size */
  height: 50px; /* Increased size */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Make icon inside circle responsive */
.step-icon img {
  width: 80px; /* Slightly larger icon */
  height: 80px;
}



/* Dotted Vertical Line */
.step-icon::after {
  content: "";
  position: absolute;
  top: 145%;
  border-top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 50px; /* More spacing between steps */
  background-image: linear-gradient(to bottom, var(--gray-border) 50%, transparent 0%);
  background-size: 1px 5px;
  background-repeat: repeat-y;
  z-index: 0;
}
/* .step-icon:last-of-type::after {
  display: none !important;
}

 */
/* Remove dotted line for last item */
.step-icon last:last-child  {
  display: none !important;
}
/* learing */
/* Learning Section Custom Layout */
@media (min-width: 992px) {
  .learning-section .left-content {
    flex: 0 0 58%; /* Make left section 58% width on large screens */
    max-width: 58%;
  }

  .learning-section .right-image {
    flex: 0 0 42%; /* Right image takes 42% */
    max-width: 42%;
	 
  }
}

.object-fit-cover {
  object-fit: cover;
}

/* ****************************** */
/* Home page testimonials */
/* ****************************** */


.testimonial-card {
  padding: 70px 15px 30px; /* Add top padding for image space */
  border-radius: 16px;
  background-color: #f0f0f0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}

/* Bring back absolute positioning */
.profile-image-wrapper {
  position: absolute;
  top: -65px; /* move it up to half-overlap */
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* REMOVE margin-top from .card-inner-box */
.card-inner-box {
  background: #baf6f6;
  border-radius: 16px;
  padding: 60px 20px 25px 20px;
  z-index: 1;
  position: relative;
}

/* Allow image to stick out but prevent entire carousel from overflowing */
.owl-carousel {
  overflow: visible;
}

.owl-carousel .owl-stage-outer {
  overflow: visible !important;
}

/* Ensure Owl items don't expand */
.owl-carousel .owl-item {
  max-width: 100%;
  box-sizing: border-box;
}

/* Optional: container restriction */
.container-testimonial {
  max-width: 100% !important;
  margin: 0 auto;
  padding: 0 15px;
  overflow: hidden; 
}


.person-name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.testimonial-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #333;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  margin: 0 6px;
  display: inline-block;
  color: #7B7B7B;
  font-size: 14px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid #7B7B7B;
  text-align: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #000;
  color: #fff;
}

.testimonial-card.active .card-inner-box {
  background-color: #1AC1DD;
}

.testimonial-card.active .person-name,
.testimonial-card.active .testimonial-text {
  color: #fff;
}

.testimonial-card.active .social-icons a {
  color: #fff;
  border-color: #fff;
}

.custom-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.custom-dots .dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-dots .dot.active {
  background-color: #1AC1DD;
}

@media (max-width: 768px) {
  .testimonial-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}
/* ************************************** */
/* Testimonial page slider */
/* ************************************** */



/********************/
/* Testimonials Section */
/* ********************/
/* Card Base Styles */
.feature-item {
  background-color:  #000;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
  transition: transform 0.3s ease;
  text-align: left;
}

.feature-item:hover {
  transform: translateY(-5px);
}

/* Icon Wrapper (Circle) */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Text */
.feature-text h5,
.feature-item h5 {
  font-size: 20px!important;
  font-weight:700!important;
  margin: 0 0 8px;
  color: #212529;
}

.feature-text p,
.feature-item p {
  font-size: 16px!important;
	font-weight:400!important;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Background Color Variations */
.blue-bg { background-color: #e8e9f5; }
.pink-bg { background-color: #fce4ec; }
.green-bg { background-color: #e0f7fa; }
.orange-bg { background-color: #fff3e0; }
.blue-light-bg { background-color: #e3f2fd; }
.purple-bg { background-color: #f3e5f5; }
.green-light-bg { background-color: #f1f8e9; }
.orange-light-bg { background-color: #fff8e1; }
.blue-lighter-bg { background-color: #e1f5fe; }
/* Icon background inside specific cards */

/* Responsive Fixes */
@media (max-width: 576px) {
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-item h5,
  .feature-item p {
    text-align: center;
  }
}
/* Counter Section */
/*********************/
.counter-section {
  background-color: #fff;
}



/* Card */
.counter-card {
  background-color: #ffffff;
  transition: transform 0.3s ease;
  text-align: center;
}
.counter-card:hover {
  transform: translateY(-5px);
}

/* Icon/Image Circle */
.counter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0; /* fallback */
}
.counter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Numbers & Labels */
.counter-number {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.5rem 0 0;
}
.counter-label {
  color: #484b4d;
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}

.testimonial-section {
  /* background-color: #F5F6F6; */
  position: fixed;
  overflow: hidden;
}

.testimonial-text {
  font-size: 16px;
  color: #807c7c;
}
/*****************/
/* Testimonial Card about */

.about h1 {  
  font-size: 40px !important;
  font-weight: 700 !important;
}

@media (max-width: 767px) {
  .about h1 {
    font-size: 24px !important;
  }
}

  /* background-color: #d8d8d8; */
  
  /* position: relative;
  overflow: hidden; */


.testimonial-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(#000000);
}

.carousel-controls .btn {
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.testimonial-name {
  color: #1AC1DD; /* Replace with any color code you like */
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1.1rem;
}
.testimonial-btn {
  background-color: transparent;
  border: 2px solid #1AC1DD;
  color:#1AC1DD;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  transition: 0.3s ease;
}

.testimonial-btn:hover {
  background-color: #1AC1DD;
  color: #fff;
}
/*****************/
/* Main section padding and spacing */
.training-education-section {
  padding: 60px 0;
}

/* Image wrapper - optional customizations */
.training-image .image-wrapper img {
  border-radius: 8px;
  object-fit: cover;
}

/* Section text label */
.section-label {
  font-size: 1rem;
  color: #6c757d;
}

/* Section title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

/* Description paragraphs */
.section-description {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

/* Feature list */
.feature-list {
  margin-top: 20px;
}

.feature-item {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #343a40;
}

/* Icon style */
.icon {
  color: #00BFFF;
  font-weight: 700;
  margin-right: 8px;
  font-size: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}

/* Feature title text next to icon */
.feature-title {
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
}

/* Feature description under title */
.feature-description {
  color: #6c757d;
  font-size: 0.95rem;
}
.feature-title {
  font-weight: 700;
  color: #000; /* Black or change as needed */
  font-size: 1.05rem;
}
/* about us three images */
.container{
    padding: 20px 20px;
}
/*********/
/* About Section offer cards */
.offer-card {
  position: relative;
  background-size: cover;
  background-position: center;
	font-size: 16px;
		border-radius: 16px;
  height: 280px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.text-start {
    text-align: left !important;
/*     padding-top: 46px !important; */
}
.offer-card:hover {
  transform: translateY(-5px);
}
.card-content h4 {
    color: var(--white);
    /* position: relative; */
    /* z-index: 2; */
    align-items: flex-start;
    font-size: 30px !important;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(236, 235, 235, 0.5), transparent)

  z-index: 1;
}

.overlay-gradient.red {
 background: 
  linear-gradient(to right, rgba(255, 0, 0, 0.4), transparent), red overlay linear-gradient(to right, #DD6B50, #517EC6);  base gradient color layer 

}

.card-content h4{
color: var(--white);
  /* position: relative; */
  /* z-index: 2; */
  align-items:flex-start
}

.offer-icon {
  position: absolute;
  top: -16px;
  right: 30px;
  width: 180px;
  z-index: 2;
}

  .btn-outline-light.active,
.btn-outline-light:active {
  background-color: #1AC1DD !important;
  color: #fff !important;
  border-color: #1AC1DD !important;
  border-radius: 50px !important;
  
  
}
/*****/
/*WHY US Section */
/* .learning-section{
  background-color: #F4F4F4;

} */
/* about banner  */
.about-banner {
background-image: url('/wp-content/uploads/2025/09/aboutbanner-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	height:47vh;
  color: #fff;
}
.about-banner a:hover {
  text-decoration: underline;
}
/*  all button */

.discover-btn {
  background-color: #1AC1DD;
  color: #fff;
  border: 2px solid #1AC1DD;
  border-radius: 50px;
  padding: 10px 28px;
	font-size:14px!important;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.discover-btn:hover {
  background-color: #fff;
  color: #1AC1DD;
  border-color: #1AC1DD;
  text-decoration: none;
}
/*TRAINING AND EDUCATION banner  */
.TRAINING  {
  background-image: url('/wp-content/uploads/2025/09/Education-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	height:47vh;
  color: #fff;
}
.TRAINING.AND.EDUCATION h1 {
  font-size: 40px !important;
  font-weight: 700 !important;
}

/* Media query for screens 767px and below */
@media (max-width: 767px) {
  .TRAINING.AND.EDUCATION h1 {
    font-size: 28px !important; /* Adjust as needed */
  }
}

.TRAINING :hover {
  
}
/* TESTIMONIALS banner  */
.TESTIMONIALS {
  background-image: url('../img/bann\ 78\ \(2\).png'); /* Use image-5.png if renamed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	height:47vh;
  color: #fff;
}
.TESTIMONIALS :hover {
}
.TESTIMONIALS h1{
	font-size:40px !important;
	font-weight:700 !important
		margin-top:-5 !important
}
/* WHY JOIN US banner  */
.WHY {
   background-image: url('/wp-content/uploads/2025/09/bann-78-4-1-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	height:47vh;

}




/* Media query for mobile screens (767px and below) */
@media (max-width: 767px) {
  .TESTIMONIALS h1 {
    font-size: 24px !important; /* You can adjust this size */
  }
}

/* Faq banner  */
.FAQ’S{
  background-image: url('https://newhost.techsinc.net/wp-content/uploads/2025/07/faqsbg.png'); /* Use image-5.png if renamed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	height:47vh;

}
.learning-section {
  background-image: url('https://newhost.techsinc.net/wp-content/uploads/2025/07/faqbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 background-color: #dbd9dd;
}
/* Faq banner */
.FAQ’S {
  background-image: url('https://newhost.techsinc.net/wp-content/uploads/2025/07/faqsbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 47vh;
}

/* Updated class name from .learning-section to .faq-section */
/* FAQ Section Background */
.faq-section {
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F5F6F6;
}

/* Remove Bootstrap Default Arrow */
.accordion-button::after {
  display: none !important;
}

/* Custom Icon Rotation */
.faq-icon {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

/* Accordion Styling */
.accordion-button {
  padding-left: 1rem;
  padding-right: 1rem;
}
.accordion-item {
    background-color: #fff;
    border: 1px solid rgb(255 255 255 / 13%);
}
* Apply border-radius to whole accordion box */
.accordion-item {
	border-radius: 0.5rem !important;}


	
/*contact  */
.Contact {
  background-image: url('../img/bann\ 78\ \(1\).png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	height:47vh;

}
/* .Contact :hover {
} */
/* Step Icon (Circle) */
.step-icon-wrapper {
  width: 40px;
  position: relative;
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #1AC1DD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Dotted Line from Inside the Circle */
.dotted-line {
  position: absolute;
  top: 38px; /* bottom of 40px circle minus border */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 38px); /* dynamic height for step spacing */
  background-image: repeating-linear-gradient(
    to bottom,
    #1AC1DD,
    #1AC1DD 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 1;
}

/* Optional: Hide line in last step (handled manually here) */
.step-item:last-child .dotted-line {
  display: none;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1ac1dd;
  opacity: 0.5;
  margin-right: 8px;
  border: none;
}
.carousel-indicators .active {
  opacity: 1;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 13px !important;
    font-weight: 200 !important;
    line-height: 1.5;
    color: #959595 !important;
    background-color: #f7f7f7 !important;
    background-clip: padding-box;
    border: none !important;
}
	
.testimonial-9 button {
    border-radius: 50px!important;
    height: 15px !important;
    

}
.testimonial-9 text-primary {
    color: #0dcaf0 !important;
}

/* ******************************** */
/* New testimonial section */
/* ******************************** */


.testimonial-section-new {
  background-color: #F5F6F6;

}



.testimonial-text-new {
  font-size: 15px;
  color: #000;
/*   margin-top: 20px; */
  text-align: center;
}

.quote-new {
  font-size: 100px !important;
  color: #00bcd4;
  line-height: 0.1;

	margin-top: 80px !important;
  text-align: center;
}

.single-img {
  transform: rotate(-5deg);
  width: 80%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

/* Carousel Dots */
.testowl .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.testowl .owl-dot {
  display: inline-block;
}

.testowl .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
}

.testowl .owl-dot.active span {
  background: #00bcd4;
}

	
/* Page banners css */
.page-banner h1 {
  font-size: 40px !important;
  font-weight: 700 !important;
}

/* Media query for mobile screens (767px and below) */
@media (max-width: 767px) {
  .page-banner h1 {
    font-size: 24px !important; 
  }
}
.testimonial-section-new {
    overflow: hidden; /* Stop content from overflowing outside the section */
  }

  .testimonial-item-new {
    padding: 20px;
    box-sizing: border-box;
  }

  .testowl {
    overflow: hidden;
  }

  /* Optional: limit max width */
  .col-lg-6 .testowl {
    max-width: 100%;
  }

/* ************************** */
/* Contact Form 7 */
/* ************************** */

.wpcf7-form label {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
	    margin-bottom: -15px !important;
    margin-top: 5px !important;
}
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}
.wpcf7-submit {
  background-color: #0DCAF0;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 50px!important;
  font-size: 16px;
}

/* New contact form  */
.info-card-contact {
            background-color: #eaf9fd;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            height: 100%;
        }

        .info-card-contact i {
            font-size: 30px;
            color: #00bcd4;
            margin-bottom: 10px;
        }

        .info-card-contact h5 {
            font-weight: 600;
            margin-top: 10px;
        }

        .form-wrapper-contact {
            border: 1px solid #00bcd4;
            border-radius: 6px;
            padding: 30px;
            height: 100%;
        }

        .form-wrapper-contact p {
            font-size: 16px;
            color: #888;
            margin-bottom: 4px;
        }

        .form-wrapper-contact h5 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .form-control-contact {
            background-color: #f5f5f5;
            border: none;
            height: 45px;
            border-radius: 5px;
            font-size: 14px;
        }

        .form-control-contact:focus {
            box-shadow: none;
            border: 1px solid #00bcd4;
            background-color: #fff;
        }

        textarea.form-control-contact {
            height: 100px;
            resize: none;
        }
        iframe {
            border: 0;
            width: 100%;
            height: 100% !important;
            border-radius: 6px;
        }

        @media (max-width: 767.98px) {

            .form-wrapper-contact,
            .info-card-contact {
                padding: 20px;
            }

            .form-control-contact {
                height: 40px;
            }

            .btn-custom-contact {
                width: 100%;
            }
        }

textarea.form-control {
  height: 100px; /* adjust height as needed */
  max-height: 100px;
  min-height: 100px;
}


/* Membership page css */
    .membership-h4 {
      font-weight: 700;
      font-size: 1.2rem;
    }
    .membership-title {
      font-weight: 700;
      font-size: 1.125rem;
      margin-bottom: 1rem;
    }
    .membership-text {
      font-size: 0.875rem;
      line-height: 1.4;
      margin-bottom: 1rem;
      color: #575757;
    }
    .membership-info-small {
      font-size: 0.75rem;
      color: #777;
      margin-top: 0.25rem;
      margin-bottom: 0.25rem;
    }
    .membership-info-small a {
      color: #777;
      text-decoration: underline;
    }

    /* Table styling */
    .membership-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.875rem;
      margin-top: 2rem;
    }
    .membership-table th,
    .membership-table td {
      border: 1px solid #dee2e6;
      padding: 0.75rem 1rem;
      vertical-align: middle;
      text-align: center;
    }
    .membership-table th {
      background: #f9f9f9;
      font-weight: 600;
      text-align: left;
      color: #444;
    }

    /* Left column cells (feature names) */
    .membership-feature-name {
      text-align: left;
      color: #3c3c3c;
      font-weight: 600;
      position: relative;
    }

    /* Info icon */
    .membership-info-icon {
      display: inline-block;
      margin-left: 6px;
      color: #99b0cc;
      font-weight: 700;
      border: 1px solid #99b0cc;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      line-height: 14px;
      font-size: 12px;
      text-align: center;
      cursor: pointer;
      user-select: none;
    }
    .membership-info-icon:hover {
      background-color: #99b0cc;
      color: white;
    }

    /* Price headers */
    .membership-price-header {
      font-weight: 700;
      font-size: 2rem;
      margin: 0;
      line-height: 1;
    }
    .membership-per-month {
      font-size: 0.875rem;
      color: #777;
      margin-top: 0.25rem;
      font-weight: 600;
    }

    /* Colored header bars */
    .membership-header-advanced {
      background-color: #185ea8;
      color: white;
      font-weight: 700;
      padding: 0.75rem 1rem;
      font-size: 0.85rem;
      text-align: center;
      user-select: none;
    }
    .membership-header-unlimited {
      background-color: #ec1c24;
      color: white;
      font-weight: 700;
      padding: 0.75rem 1rem;
      font-size: 0.85rem;
      text-align: center;
      user-select: none;
    }

    /* Buttons */
    .membership-btn-buy {
      width: 100%;
      margin-top: 1rem;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 0;
      padding: 0.5rem 0;
      letter-spacing: 0.05em;
    }
    .membership-btn-advanced {
      background-color: #185ea8;
      border-color: #185ea8;
      color: white;
    }
    .membership-btn-advanced:hover {
      background-color: #134a80;
      border-color: #134a80;
      color: white;
    }
    .membership-btn-unlimited {
      background-color: #ec1c24;
      border-color: #ec1c24;
      color: white;
    }
    .membership-btn-unlimited:hover {
      background-color: #b71418;
      border-color: #b71418;
      color: white;
    }

    /* Check and cross icons styling */
    .membership-icon-check {
      color: #4e91cd; /* blue check */
      font-size: 1.25rem;
      font-weight: 700;
      user-select: none;
    }
    .membership-icon-cross {
      color: #d16167; /* red cross */
      font-size: 1.25rem;
      font-weight: 700;
      user-select: none;
    }

    /* Additional Fee Required in blue text */
    .membership-additional-fee {
      color: #185ea8;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: default;
      user-select: none;
    }
    /* Included text in red */
    .membership-included-red {
      color: #ec1c24;
      font-weight: 600;
      font-size: 0.9rem;
      user-select: none;
    }

    /* Pages counts in blue and red */
    .membership-pages-blue {
      color: #185ea8;
      font-weight: 600;
    }
    .membership-pages-red {
      color: #ec1c24;
      font-weight: 600;
    }

    /* Templates */
    .membership-templates-blue {
      color: #185ea8;
      font-weight: 600;
    }
    .membership-templates-red {
      color: #ec1c24;
      font-weight: 600;
    }

    /* Emails count */
    .membership-emails-blue {
      color: #185ea8;
      font-weight: 600;
    }
    .membership-emails-red {
      color: #ec1c24;
      font-weight: 600;
    }

    /* Introductory session text */
    .membership-intro-text {
      color: #99b0cc;
      font-size: 0.85rem;
      font-weight: 600;
      user-select: none;
    }
    .membership-intro-text-red {
      color: #ec1c24;
      font-size: 0.85rem;
      font-weight: 600;
      user-select: none;
    }

    /* Left content spacing */
    .membership-left-content {
      max-width: 360px;
    }

    /* Logo size */
    .membership-logo-img {
      max-width: 120px;
      margin: 1rem 0 1.5rem 0;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .membership-left-content {
        max-width: 100%;
        margin-bottom: 2rem;
      }
    }
    @media (max-width: 575.98px) {
      .membership-table th,
      .membership-table td {
        font-size: 0.8rem;
        padding: 0.5rem 0.5rem;
      }
      .membership-btn-buy {
        font-size: 0.9rem;
        padding: 0.4rem 0;
      }
      .membership-price-header {
        font-size: 1.5rem;
      }
    }

/* *************************** */
/* Book Now Contact Form */
/* *************************** */

.ali7-form-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 30px;
  overflow: hidden;
}

.ali7-form-container {
  background-image: url('https://newhost.techsinc.net/wp-content/uploads/2025/07/Untitled-design-8.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  padding: 30px;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.ali7-form-description {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.ali7-input,
.form-control {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 18px;
  border: none !important; /* ✅ Remove borders */
  outline: none !important; /* ✅ Remove focus outline */
}

.ali7-input::placeholder,
.ali7-booking-form ::placeholder {
  color: white !important;
  font-weight: 600;
  opacity: 1 !important;
}

.ali7-btn-book {
  background-color: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 800px;
  padding: 16px;
  font-size: 15px;
  width: 100%;
  border: none;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .ali7-input {
    font-size: 15px;
  }
}

/* .ali7 .form-control {
    background-color: rgb(255 255 255 / 55%) !important;
    background-clip: padding-box;
    border: none !important; 
	
} */


/* ********************************* */
/* New agnet Sign up form*/
/* *********************************** */
/* {
      font-family: Arial, sans-serif;
      background-color: #fff;
      padding: 40px;
      color: #1D1D1F;
    } */
    .agent-unique-form-section h5 {
      font-weight: bold;
      margin-bottom: 10px;
    }
    .agent-unique-form-section hr {
      border: 1px solid #ccc;
      margin-bottom: 20px;
    }
    .agent-unique-form-section label {
      font-weight: bold;
      margin-bottom: 5px;
      display: block;
    }
    .agent-unique-form-section select,
    .agent-unique-form-section input,
    .agent-unique-form-section textarea {
      border-radius: 0;
      border: 1px solid #ccc;
      margin-bottom: 20px;
    }
    .agent-unique-check-label {
      font-weight: bold;
    }
    .agent-unique-submit-btn {
      background-color: #D1BC96;
      border: none;
      padding: 10px 25px;
      font-weight: bold;
      color: #FFFFFF;
    }
    .agent-unique-submit-btn:hover {
      background-color: #BFA76E;
    }
.signup .form-control {
    background-color: rgba(255, 255, 255, 0.5) !important;
    background-clip: padding-box;
    border: 1px solid #ccc !important; 
	
}
.label[for="agent-first-name-1"] {
    color: #000000;
    font-weight: 18px;
    font-size: 18px;
}
{
      background-color: #FFFFFF;
      font-family: Arial, sans-serif;
    }
    .icon-check,
    .icon-cross {
      display: inline-block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid currentColor;
      text-align: center;
      line-height: 18px;
      font-size: 13px;
      font-weight: bold;
    }
    .icon-check:before {
      content: "✓";
    }
    .icon-cross:before {
      content: "✕";
    }
    .left-blue {
      color: #1E88E5;
    }
    .right-red {
      color: #D32F2F;
    }
    .table td, .table th {
      vertical-align: middle;
      font-size: 15px;
    }
    .plan-box-top {
      font-size: 14px;
      padding: 8px;
      color: #fff;
      font-weight: 500;
    }
    .plan-advanced-top {
      background-color: #005A66;
    }
    .plan-unlimited-top {
      background-color: #1AC1DD;
    }
    .plan-box- {
      padding: 20px 10px;
    }
    .plan-title {
      font-size: 20px;
      font-weight: 700;
      color: #000;
    }
    .plan-price {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    padding: 10px;
    }
    .plan-price small {
      font-size: 16px;
      font-weight: normal;
    }
    .buy-now-btn {
      background-color: #FF0000;
      color: #fff;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 14px;
      padding: 10px 24px;
      border: none;
    }
    @media (max-width: 768px) {
      .icon-check, .icon-cross {
        width: 18px;
        height: 18px;
        font-size: 12px;
        line-height: 16px;
      }
    }

/* ********************************* */
/* New Agent Sign Up Form Styling    */
/* ********************************* */

/* ====== GLOBAL FORM STYLING ====== */
.signup {
  font-family: 'Arial', sans-serif !important;
  color: #222;
  max-width: 1250px;
  margin: auto;
  padding: 40px 20px;
}

.signup h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
	 font-family: 'Arial', sans-serif !important;
}
.signup h3 {
    font-size: 35px !important;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif !important;
}

.signup h5 {
  font-size: 18px;
  font-weight: 600 !important;
  margin-top: 30px;
  margin-bottom: 10px;
	 font-family: 'Arial', sans-serif !important;
}

.signup p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1px;
  font-weight: normal;
	 font-family: 'Arial', sans-serif !important;
}

/* ====== LABELS ====== */
.signup label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -17px !important;
    color: #000;
    margin-top: 8px;
}


/* ====== SMALL INSTRUCTIONS (SPAN.des) ====== */
.signup span.des {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: -3px;
    margin-bottom: -15px !important;
}

/* ====== INPUT / SELECT / TEXTAREA ====== */
.signup input[type="text"],
.signup input[type="email"],
.signup input[type="tel"],
.signup input[type="date"],
.signup select,
.signup textarea {
  width: 100%;
  padding: 12px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
/*   margin-bottom: 5px;  */
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.signup input[type="text"]:focus,
.signup input[type="email"]:focus,
.signup input[type="tel"]:focus,
.signup input[type="date"]:focus,
.signup select:focus,
.signup textarea:focus {
  border-color: #aaa;
  outline: none;
}

/* ====== PLACEHOLDER TEXT STYLE ====== */
.signup input::placeholder,
.signup select::placeholder,
.signup textarea::placeholder {
  font-weight: 200; 
  font-size: 13px;
  color: #959595;
}

/* ====== TEXTAREA ====== */
.signup textarea {
  resize: vertical;
  min-height: 200px;
}

/* ====== FORM GROUP SPACING ====== */
.signup .row > .col-md-6,
.signup .row > .col-md-4,
.signup .row > .col-md-12 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

/* ====== SECTION SPACING ====== */
.signup hr {
    margin-top: 10px !important;
    border: none;
    margin-bottom: 30px;
    border-top: 1px solid #000;
    width: 90% !important;
}

/* ====== TERMS CHECKBOX TEXT ====== */
.signup .form-check p {
  font-size: 13px;
/*   margin-bottom: 10px; */
}

.signup .form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0px !important;
    margin-bottom: .125rem !important;
}

/* ====== CHECKBOX ALIGNMENT ====== */
.signup input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  accent-color: #c0a362;
  cursor: pointer;
}

/* ====== SUBMIT BUTTON ====== */
.signup .btn-warning {
    background-color: #CBBD93 !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 20px;
    padding: 15px 10px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease;
    width: 100% !important;
    max-width: 20% !important;
}

.signup .btn-warning:hover {
  background-color: #a3864f;
}

/* ====== SECTION SPACING ====== */
.signup .mt-4 {
  margin-top: 10px !important;
}
.signup .mb-3 {
  margin-bottom: 5px !important;
}
.signup .mb-4 {
 margin-bottom: 25px !important;
}

/* ====== RESPONSIVENESS ====== */
@media (max-width: 767px) {
  .signup h2 {
    font-size: 22px;
  }

  .signup h5 {
    font-size: 16px;
  }

  .signup input,
  .signup select,
  .signup textarea {
    font-size: 13px;
  }

  .signup label {
    font-size: 13px;
  }

  .signup .btn-warning {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }

  /* Reduce column spacing for small screens */
  .signup .row > .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
  }
	.signup .btn-warning {
  background-color: #CBBD93 !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 10px !important;
  border-radius: 4px !important;
  transition: background-color 0.3s ease;
	width: 100% !important;
	max-width: 100% !important;
}
}
/* Restore default dropdown arrow for select */
.signup select {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  background-color: #fff;
  background-image: none !important;
  padding-right: 35px; /* enough space for arrow */
}

/* Optional: add a simple arrow manually */
.signup select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='6'%3E%3Cpath%20fill='%23444'%20d='M0%200l5%206%205-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
}


/* Thank you popup */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-inner {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.popup-inner h2 {
  margin-bottom: 15px;
  color: #1AC1DD;
}
/* buttan mebher shaip  */
.custom-buy-btn {
  background-color: #0d6efd; 
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.bi-check2{
	font-size:20px !important;
	font-weight:bold!important;
}
.des{
	font-size: 9px !important;
}

/* new testemonial sectio additiontail css ****** */
.testimonial-section {
  /* background-color: #F5F6F6; */
  position: fixed;
  overflow: hidden;
}

.testimonial-text {
  font-size: 16px;
  color: #807c7c;
}
/*****************/
/* Testimonial Card 3 about */

/* Book now contact  */
.ali7-input, .form-control {
    background-color: rgb(255 255 255 / 55%) !important;
    color: #fff;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    border: none !important;
    outline: none !important;
}

/* footer */
.footer h6 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #000;
    }
    .footer p, footer li, footer a {
      font-size: 19px !important;
      line-height: 1.5;
      color: #6C757D;
    }
    .icon-wrapper {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #E5F6FF;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      transition: all 0.3s ease;
    }
    .icon-wrapper i {
      color: #17A2B8;
      font-size: 1.1rem;
    }
    .icon-wrapper:hover {
      background-color: #D0EFFF;
      transform: scale(1.05);
    }
    .footer-input {
      background-color: #F0F0F0;
      border: none;
      height: 40px;
      padding-left: 15px;
/*       border-radius: 6px !important; */
      flex: 1 1 auto;
    }
    .footer-btn {
      background-color: #C9B68B;
      border: none;
      color: white;
      height: 40px;
      padding: 0 20px;
      font-weight: 600;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .footer-col {
      padding-left: 1.2rem;
      padding-right: 1.2rem;
    }
    @media (max-width: 767px) {
      .footer-col {
        padding-left: 0;
        padding-right: 0;
      }
    }
.footer-input {
    background-color: #F0F0F0 !important;
    /* border: 1px solid #000 !important; */
    height: 40px;
    padding-left: 15px;
/*     border-radius: 6px !important; */
    flex: 1 1 auto;
    margin-top: 20px;
}
/*testimonail  */
 .testimonial-section {
      position: relative;
      overflow: hidden;
      background: url('https://newhost.techsinc.net/wp-content/uploads/2025/07/Frame-2147226085-1.png') no-repeat;
      background-size: contain;
      padding: 60px 60px ;
	 
	
    }
@media (min-width: 2561px) {
  .testimonial-section {
   
    background-size: contain; /* Optional: You can keep cover here */
  }
}
    .testimonial-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 150px;
      height: 150px;
      background: url('./img/bg.png') no-repeat;
      background-size: contain;
    }
    .section-subtitle {
      color: #6C757D;
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
    }
    .section-title {
      color: black;
      font-weight: 600;
      font-size: 44px;
      margin-top: 10px;
    }
    .testimonial-img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .testimonial-name {
      color: #1AC1DD;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0;
    }
    .carousel-inner {
      position: relative;
      padding-bottom: 60px;
    }
    .carousel-controls-wrapper {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 110px;
      display: flex;
      justify-content: space-between;
      z-index: 10;
    }
    .carousel-control-prev,
    .carousel-control-next {
      width: 45px;
      height: 45px;
      background-color: #1AC1DD;
      border-radius: 50%;
      border: none;
      display: flex;
      justify-content: center;
      align-items: right;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background-color: #1599BF;
    } */

    .testimonial-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 150px;
      height: 150px;
      background: url('./img/bg.png') no-repeat;
      background-size: contain;
    }
    .section-subtitle {
      color: #6C757D;
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
    }
    .section-title {
      color: black;
      font-weight: 600;
      font-size: 44px;
      margin-top: 10px;
    }
    .testimonial-img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .testimonial-name {
      color: #1AC1DD;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0;
    }
    .carousel-inner {
      position: relative;
      padding-bottom: 80px; /* Extra space for controls */
    }

.carousel-controls-wrapper {
  position: absolute;
  right: 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px; /* spacing between buttons */
  z-index: 10;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
	margin-right: -328px !important;
	margin-left: 452px !important;
}

.carousel-control-prev i,
.carousel-control-next i {
  color: blue;
  font-size: 16px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background-color: #f0f0f0;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 16px;
  color: #007BFF; /* <-- blue color */
}



    @media (max-width: 768px) {
      .carousel-controls-wrapper {
        right: 50%;
        transform: translateX(50%);
        bottom: -10px;
      }
    }
.rounded {
    border-radius: 10px !important;
}
/***************** testemonail section image ****************/
/*************************  why aia****************************/
.aia-faq-section {
      max-width: 900px;
      margin: auto;
    }

    .aia-faq-heading {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 30px;
      color: #2d2d2d;
    }

    .aia-faq-wrapper {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .aia-faq-box {
      border-bottom: 1px solid #e5e5e5;
    }

    .aia-faq-toggle {
      width: 100%;
      text-align: left;
      padding: 20px;
      font-size: 1.1rem;
      background: #f7f7f7;
      border: none;
      outline: none;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .aia-faq-toggle:hover {
      background: #ececec;
    }

    .aia-faq-content {
      display: none;
      padding: 20px;
      background: #fff;
      color: #333;
      line-height: 1.6;
    }

    .aia-faq-box.active .aia-faq-content {
      display: block;
    }

    .aia-faq-box.active .aia-faq-toggle {
      background: #d6f0ff;
    }

    ul {
      padding-left: 20px;
      margin-top: 10px;
    }

    ul li {
      margin-bottom: 8px;
    }

    strong {
      display: inline-block;
      margin-bottom: 5px;
    }
/*****************/
/***faqs****/
.marai-services h2 {
      font-size: 32px;
      color: #0f172a;
    }

    .service-item {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease;
    }

    .service-item:hover {
      transform: translateY(-8px);
    }

    .service-item i {
      font-size: 36px;
      color: #1AC1DD;
    }

    .service-item h3 {
      font-size: 20px;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .service-item p {
      font-size: 16px;
      color: #475569;
      line-height: 1.6;
    }
/*****************/
/**********get stsrad********/
/*  .commission-section {
      padding: 60px ;
    } */
    .commission-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
      font-weight: bold;
      color: #0f172a;
    }
    .highlight {
      background: #e0f2fe;
      padding: 15px;
      border-left: 4px solid #0284c7;
      border-radius: 8px;
      margin-bottom: 20px;
		font-size: 22px !important;
    }
    .table thead {
      background-color: #e2e8f0;
    }
    .table tbody tr td {
      vertical-align: middle;
    }
/**************/
/*******about micha****/
.founder-section {
      padding: 60px 0;
    }

    .founder-img {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .founder-text h2 {
      font-size: 2.5rem;
      font-weight: bold;
    }

    

    .btn-custom {
      
      
      border: none;
      padding: 10px 25px;
      font-weight: 500;
      border-radius: 30px;
      transition: background-color 0.3s ease;
    }

    .btn-custom:hover {
      background-color: #0097a7;
    }

p,
.p{
	font-size: 20px !important;
}

.hero-margin-top {
	margin-top: -4rem;
}

.margin-para-top{
	margin-top: 80px;
}

.margin-para-button{
	margin-top: 80px;
}
@media (max-width: 768px) {
	.hero-margin-top {
	margin-top: 0rem !important;
}
	
	.margin-para-top{
	margin-top: 0px !important;
}

.margin-para-button{
	margin-top: 0px !important;
}
	
}