* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --dark: #1e2022;
  --gray: #52616b;
  --light-blue: #c9d6df;
  --off-white: #f0f5f9;
  --logo-blue: #00c5f7;
  --logo-gray: #3a4560;
  --title-color: #053d78;
}
body {
  background-color: var(--off-white);
  overflow-x: hidden;
  scroll-behavior: smooth !important;
}



/***** live background *****/
.bg {
  width: 100vw;
  overflow-x: hidden;
  z-index: 1;
  background-image: url("../images/gifs/bg-gif.gif");
  background-repeat: no repeat;
  background-size: cover;
  object-fit: cover;
  &::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(500px);
    -webkit-backdrop-filter: blur(500px);
    z-index: 4;
    background: var(--off-white);
    opacity: 0.9;
  }
}
.bg2 {
  width: 100vw;
  overflow-x: hidden;
  z-index: 1;
  background-image: url("../images/gifs/blue-bg.gif");
  background-repeat: no repeat;
  background-size: cover;
  object-fit: cover;
  &::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(500px);
    -webkit-backdrop-filter: blur(500px);
    z-index: 4;
    background: var(--off-white);
    opacity: 0.9;
  }
}
/***** End live background *****/

/***** hero section css *****/
.hero-section {
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  z-index: -1;
  width: 100vw;
}
.hero-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--off-white), transparent);
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  & video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.hero-content {
  padding: 4rem 0;
  z-index: 2;
}

.hero-title {
  color: var(--logo-gray);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--logo-gray);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-btn {
  background-color: var(--gray);
  color: var(--off-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid #52616b;
}

.hero-btn:hover {
  background-color: #1e2022;
  color: #f0f5f9;
  border-color: var(--off-white);
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    text-align: center;
    padding: 2rem 0;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
/***** End hero section css *****/

/***** ceo message section  *****/
.ceo-section {
  padding: 100px 0;
  background-color: #f0f5f9;
  position: relative;
  overflow: hidden;
}

.ceo-container {
  position: relative;
  z-index: 6;
}

.ceo-title {
  color: #1e2022;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.ceo-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #52616b;
  border-radius: 2px;
}

.ceo-message {
  color: #52616b;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
}
.hidden-para {
  color: #52616b;
  font-size: 1.1rem;
  line-height: 1.8;
  /* margin-bottom: 2rem; */
  /* position: relative; */
}
.ceo-message::before {
  content: '"';
  font-size: 120px;
  color: #c9d6df;
  position: absolute;
  top: -40px;
  left: -20px;
  opacity: 0.3;
  font-family: serif;
}

.ceo-name {
  color: #1e2022;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ceo-designation {
  color: #52616b;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.read-more-btn {
  background-color: #1e2022;
  color: #f0f5f9;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 2px solid #1e2022;
}

.read-more-btn:hover {
  background-color: transparent;
  color: #1e2022;
  transform: translateY(-3px);
}

.ceo-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.ceo-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.ceo-image-container:hover .ceo-image {
  transform: scale(1.05);
}

.background-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #c9d6df;
  opacity: 0.1;
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

@media (max-width: 991.98px) {
  .ceo-section {
    padding: 60px 20px;
  }

  .ceo-title {
    font-size: 2rem;
  }

  .ceo-image-container {
    margin-top: 3rem;
  }
  .hidden-para {
    display: none;
  }
}
/***** End ceo message section  *****/

/***** Domain Section css *****/
.services-section {
  background-color: #f0f5f9;
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 3rem;
}

.title-main {
  color: #1e2022;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.title-main::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #52616b;
  border-radius: 2px;
}

.title-sub {
  color: #52616b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: rgb(0, 74, 173);
  background: linear-gradient(
    320deg,
    rgba(0, 74, 173, 1) 0%,
    rgba(255, 255, 255, 1) 39%
  );
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 214, 223, 0.3);
}

.service-card:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 15px 30px rgba(82, 97, 107, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #52616b;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  color: #52616b;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: #1e2022;
}

.service-title {
  color: #1e2022;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: #52616b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-link {
  color: #1e2022;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #52616b;
}

.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 991.98px) {
  .services-section {
    padding: 60px 0;
  }

  .title-main {
    font-size: 2rem;
  }

  .service-card {
    margin-bottom: 30px;
  }
}
/***** End Domain Section css *****/

/***** 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;
  }
}
/***** End counter css *****/

/***** 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  *****/

/***** 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  *****/

/***** clients section *****/
.clients-section {
  padding: 3rem 0;
  position: relative;
}

.clients-info {
  z-index: 9;
  position: relative;
}
.section-title {
  color: #1e2022;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.section-description {
  color: #52616b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.3s;
}

.client-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  .client-logo {
    filter: grayscale(0%);
    transform: scale(1.1) rotate(-5deg);
    -webkit-transform: scale(1.1) rotate(-5deg);
    -moz-transform: scale(1.1) rotate(-5deg);
    -ms-transform: scale(1.1) rotate(-5deg);
    -o-transform: scale(1.1) rotate(-5deg);
  }
}
.client-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.client-logo img {
  max-width: 80%;
  height: auto;
}

.client-name {
  color: #1e2022;
  margin-top: 1rem;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .client-card {
    padding: 1.5rem;
  }

  .client-logo {
    width: 120px;
    height: 120px;
  }
}
/***** End clients section *****/

/***** whatsapp icon *****/
.whatsapp-icon {
  z-index: 999;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  font-size: 2rem;
  color: #fff;
}

.fa-brand {
  color: white;
}

@media screen and (max-width: 440px) {
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem !important;
  }
}

/***** End whatsapp icon *****/
