*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
   background:linear-gradient(135deg,#eeeeeecb,#ece8e8);
    color:rgb(0, 0, 0);
}

/* HEADER */
.header{
    text-align:center;
    padding:100px 20px 60px;
    background:linear-gradient(135deg,#eeeeeecb,#ece8e8);
}

.tag{
    display:inline-block;
    padding:6px 18px;
    border:1px solid #00c5f7;;
    border-radius:20px;
    font-size:12px;
    margin-bottom:15px;
}

.header h1{
    font-size:42px;
}

.header p{
    max-width:650px;
    margin:auto;
    font-size:14px;
    color:#000000;
}

/* SECTION */
.team-section{
    padding:80px 40px;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size:60px 60px;
}

.team-title{
    font-size:26px;
    margin-bottom:80px;
}

.tagline{
    position:absolute;
    right:40px;
    margin-top:-60px;
    font-size:13px;
    color:rgb(0, 0, 0);
}

/* CEO CARD */
.ceo-card{
    width:480px;
    margin:0 auto 80px;
    background:#ededed;
    border-radius:16px;
    text-align:center;
    padding:80px 30px 30px;
    position:relative;
}

.ceo-img{
    position:absolute;
    top:-70px;
    left:50%;
    transform:translateX(-50%);
    width:140px;
    height:140px;
    border-radius:50%;
    overflow:hidden;
   
}

.ceo-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ceo-card h2{
    font-size:22px;
}

.role{
    color:#000000;
    font-size:13px;
    margin:10px 0;
}

.desc{
    font-size:13px;
    color:#000000;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
/* TEAM CARD HOVER */
.card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    background-color: #007aff;
}

/* IMAGE ZOOM */
.card img {
    transition: 0.3s;
}

.card:hover img {
    transform: scale(1.1);
}


/* CEO CARD HOVER */
.ceo-card {
    transition: all 0.3s ease;
}

.ceo-card:hover {
    transform: translateY(-10px);
    background-color: #007aff;
    border:8px solid #007aff;
}

/* CEO IMAGE ZOOM */
.ceo-img img {
    transition: 0.3s;
}

.ceo-card:hover .ceo-img img {
    transform: scale(1.1);
}
/* CARD */
.card{
    background:#ffffff;
    border-radius:15px;
    text-align:center;
    padding:25px;
}

.card img{
    width:80px;
    height:80px;
    border-radius:50%;
    margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .grid{
        grid-template-columns:1fr;
    }
    .ceo-card{
        width:100%;
    }
}

/***** counter css *****/
.counter-section {
  padding: 150px 0;
  background-image: linear-gradient(
      rgba(30, 32, 34, 0.8),
      rgba(30, 32, 34, 0.9)
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(82, 97, 107, 0.05) 0px,
    rgba(82, 97, 107, 0.05) 2px,
    transparent 2px,
    transparent 10px
  );
}

.counter-card {
  background: rgba(240, 245, 249, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.counter-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: all 0.4s ease;
}

.counter-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(240, 245, 249, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.counter-card:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

.counter-icon {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #f0f5f9, #c9d6df);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.counter-card:hover .counter-icon {
  transform: scale(1.1) rotate(5deg);
}

.counter-number {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f0f5f9, #c9d6df);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-family: "Arial", sans-serif;
}

.counter-text {
  color: #c9d6df;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 10px;
}

.counter-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9d6df, transparent);
}

/* .floating {
  animation: floating 3s ease-in-out infinite;
} */
.counter-h2::after {
  background: linear-gradient(
    90deg,
    transparent,
    #c9d6df,
    transparent
  ) !important;
}
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991.98px) {
  .counter-section {
    padding: 100px 0;
  }
  .counter-card {
    margin-bottom: 30px;
  }
  .counter-number {
    font-size: 3.5rem;
  }
}

.counter-section {
  .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #f0f5f9;
    position: relative;
  }

  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0f5f9, #c9d6df);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section-title p {
    color: #c9d6df;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
}

/***** shape divider  *****/
.custom-shape-divider-top-1735805625 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1735805625 svg {
  position: relative;
  display: block;
  width: calc(127% + 1.3px);
  height: 41px;
}

.custom-shape-divider-top-1735805625 .shape-fill {
  fill: #f1f5f8;
}
/***** End shape divider  *****/
.navbar-expand-lg .navbar-collapse{
  margin-right: 300px;
}


/***** Testimonial  *****/
.testimonials-section {
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.section-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#52616b 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  color: #1e2022;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e2022, #52616b);
  border-radius: 2px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  margin: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(82, 97, 107, 0.1);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  color: #1e2022;
  opacity: 0.6;
  font-family: serif;
}

.testimonial-content {
  color: #52616b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid #f0f5f9;
  box-shadow: 0 5px 15px rgba(82, 97, 107, 0.2);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  color: #1e2022;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-details p {
  color: #52616b;
  font-size: 0.9rem;
  margin: 0;
}

.rating {
  color: #ffd700;
  margin-bottom: 1rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c9d6df;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #52616b;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: #52616b;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(82, 97, 107, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonial-card {
    padding: 1.5rem;
    margin: 10px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}
/***** End Testimonial  *****/
faq-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.faq-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.faq-container p {
    color: #555;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

.review-section {
  display: flex;
  gap: 30px;
  padding: 40px;
  align-items: center;
}

/* LEFT SIDE */
.review-summary {
  width: 280px;
}

.logo {
  background: #000;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.review-summary h3 {
  margin: 10px 0;
  font-size: 18px;
}

.stars {
  color: gold;
  margin: 10px 0;
}

.review-summary p {
  color: #ccc;
}

.review-summary button {
  padding: 10px 15px;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
}

/* CARDS */
.review-cards {
  display: flex;
  gap: 20px;
}

.card {
  background: #1a1a1a;
  padding: 15px;
  width: 260px;
  border-radius: 10px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top img {
  border-radius: 50%;
  margin-right: 10px;
}

.top div {
  flex: 1;
  margin-left: 10px;
}

.top h4 {
  margin: 0;
  font-size: 14px;
}

.top span {
  font-size: 12px;
  color: #000000;
}

.top i {
  color: #4285F4;
}

.small {
  font-size: 12px;
}

.card p {
  font-size: 13px;
  color: #000000;
}

.read {
  font-size: 12px;
  color: #888;
  cursor: pointer;
}
.faqheading{
    text-align: center;
}