* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* overflow horizontally */

html,
body {
  overflow-x: hidden !important;
  width: 100%;
}

/* Universal Font & Theme */

body {
  font-family: "Montserrat", sans-serif;
}

:root {
  --primary-color: #20bab7;
  --secondary-color: #029e9e;
  --light-bg: #f8f9fa;
  --dark-gray: #dadada;
  --font-family: "Montserrat", sans-serif;
}

/* Top bar buttons*/

.btn-theme {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-family);
  padding: 8px 16px;
  border: 2px solid black;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* icon inside button */

.btn-theme .btn-icon {
  width: 22px;
  height: 22px;
  transition: all 0.4s ease;
  filter: brightness(0) invert(0);
}

/* Hover Top bar buttom */

.btn-theme:hover {
  background-color: #000;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 0 12px var(--secondary-color);
}

.btn-theme:hover .btn-icon {
  transform: rotate(50deg);
  filter: brightness(0) invert(1);
}

/* Tablets */

@media (max-width: 1199px) {
  .btn-theme {
    font-size: 14px;
  }
  .btn-theme .btn-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .btn-theme {
    font-size: 18px;
  }
  .btn-theme .btn-icon {
    width: 20px;
    height: 20px;
  }
}

/* Small mobiles */

@media (max-width: 480px) {
  .btn-theme {
    font-size: 14px;
    padding: 10px 20px;
    gap: 5px;
  }
  .btn-theme .btn-icon {
    width: 16px;
    height: 16px;
  }
}

/* btn */

/* .btn-theme2 {
  background-color: var(--primary-color);
  color: #000000;
  border-radius: 50px;
  padding: 10px 20px;
   font-family: var(--font-family);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 18px;
}

.btn-theme2:hover {
  background-color: #000;
  color: var(--primary-color);
   font-family: var(--font-family);
  box-shadow: 0 0 12px var(--secondary-color);
  transform: translateY(-2px);
} */

/* Navbar */

.navbar {
  padding: 10px 10px;
  position: relative;
  margin: 0;
  width: 100%;
  z-index: 999;
}

.navbar-brand {
  font-size: 32px;
  font-weight: 700;
  margin-left: 20px;
}

.navbar-brand span {
  color: var(--primary-color);
}

/* Nav Links */
.navbar-nav .nav-link {
  font-weight: 800;
  margin: 0 3px;
  position: relative;
  color: #000;
  font-family: var(--font-family);
  font-size: 17px;
  padding: 6px 0;
  transition: 0.3s;
  text-decoration: none !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Remove Focus Outlines */
.nav-link:focus,
.nav-link:active,
.nav-link:visited {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar .dropdown-toggle::after {
  display: none !important;
}

/* Dropdown menu */

.dropdown-menu {
  /* min-width: 660px; */
  background: #111;
  border-radius: 8px;
  border: none;
  position: absolute;
  left: 0;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Show dropdown */

.dropdown.show > .dropdown-menu {
  display: block;
  opacity: 1;
}

.mega-dropdown {
  max-width: 800px;
  width: auto;
}

/* Dropdown Header */

.dropdown-menu .dropdown-header {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 8px 15px;
}

/* Dropdown Items */

.dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 14px;
  padding: 6px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
  color: var(--primary-color);
  background: transparent;
  padding-left: 20px;
}

/* Dropdown hover effect */

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    right: 0;
    left: auto !important;
    transition: all 0.3s ease-in-out;
  }

  .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    right: 0;
    left: auto !important;
    transition: all 0.3s ease-in-out;
  }
}

/* Tablet*/

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark-gray);
    border-radius: 8px;
    padding: 15px 20px;
    text-align: left;
  }

  .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #000 !important;
    font-weight: 700;
    text-align: left;
  }

  /* Dropdown full */

  .dropdown-menu {
    position: static !important;
    width: 100%;

    opacity: 1 !important;
    display: none;
    background: #111;
    border-radius: 6px;
    padding: 8px 0;
  }

  /* Show dropdown when clicked */

  .dropdown.show > .dropdown-menu {
    display: block !important;
  }

  /* Dropdown items on mobile */

  .dropdown-item {
    text-align: left;
    padding: 10px 20px;
    color: #fff;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
  }
}

/* Navbar toggler */

.navbar-toggler {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 22px;
  padding: 0.25rem 0.5rem;
}

/* Remove border and shadow from before and after */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible,
.navbar-toggler:focus::before,
.navbar-toggler:focus::after {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Hamburger */

.toggler-icon {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

/* Animation when expand */

.navbar-toggler[aria-expanded="true"] .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .middle-bar {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Top and contact bars */

.head {
  background-color: var(--dark-gray);
  border: 1px solid #a9a9a9;
  font-size: 14px;
  font-weight: 900;
}

.contact-info {
  color: #000;
  font-size: 14px;
}

.icon {
  color: var(--primary-color);
  font-size: 14px;
  transition: all 0.6s ease; /* smooth animation */
}

.icon:hover {
  color: black;
  transform: translateY(-13px); /* slight upward movement */
}

/* Title and typing */

.title {
  font-size: 20px;
  font-weight: bold;
  /* text-align: center; */
  color: #000;
}

#typed-text {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.typed-cursor {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Tablets */

@media (max-width: 992px) {
  .navbar-brand {
    font-size: 24px;
  }

  .title,
  #typed-text {
    font-size: 18px;
  }

  .btn-theme2 {
    padding: 12px 26px;
    font-size: 18px;
    border-radius: 45px;
    font-family: var(--font-family);
  }
}

/* Mobiles */

@media (max-width: 768px) {
  /* Navbar links */

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 6px 0;
    display: block;
  }

  /* Top and contact bars vertical*/

  .top-bar,
  .contact-bar,
  .head {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .navbar-brand {
    font-size: 30px;
    font-weight: 700;
    margin-left: 5px;
  }

  .btn-theme2 {
    display: block;
    width: 70%;
    text-align: center;
    padding: 14px 30px;
    font-size: 18px;
    font-family: var(--font-family);
    font-weight: 800;
    border-radius: 12px;
    margin-top: 8px;
  }

  .contact-info {
    font-size: 13px;
  }

  .icon {
    font-size: 13px;
  }

  .title,
  #typed-text {
    font-size: 18px;
  }
}

/* Small mobile */

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 30px;
    font-weight: 700;
    margin-left: 5px;
  }

  .btn-theme2 {
    padding: 16px 34px;
    font-size: 16px;
    font-family: var(--font-family);
    border-radius: 10px;
  }

  .title,
  #typed-text {
    font-size: 18px;
  }
}

.navbar-brand2 {
  font-size: 14px;
}

.navbar-brand2 span {
  color: var(--primary-color);
}

.navbar-brand3 {
  font-size: 37px;
  font-family: var(--font-family);
  font-weight: 700;
}

.navbar-brand3 span {
  color: var(--primary-color);
}

/* Hero section */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

/*  hero bg Image and Video */

.hero-bg-img,
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* text overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.hero-title {
  font-family: var(--font-family);
  font-size: 42px;
  font-weight: 700;
  max-width: 650px;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-family: var(--font-family);
  font-size: 30px;
  font-weight: 600;
  max-width: 650px;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-desc {
  font-family: var(--font-family);
  font-size: 20px;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #fff;
}

/* hero btn */

.hero-btn {
  background-color: #20bab7;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  width: 200px;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.hero-btn:hover {
  background: #000;
  color: #20bab7;
  box-shadow: 0 0 15px #20bab7;
}

/* Tablets */

@media (max-width: 992px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-title,
  .hero-subtitle,
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small tablets */

@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.6rem);
  }

  .hero-desc {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
  }
}

/* Small mobiles  */

@media (max-width: 480px) {
  .hero-section {
    min-height: 60vh;
    padding: 1.5rem 1rem;
  }

  .hero-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 4.5vw, 1.2rem);
  }

  .hero-desc {
    font-size: clamp(0.85rem, 4vw, 1.1rem);
  }
  .navbar-brand3 {
    font-size: 22px;
    font-family: var(--font-family);
    font-weight: 700;
  }

  .navbar-brand3 span {
    color: var(--primary-color);
  }
}

/* about section */

.about-bottom-text {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  font-family: var(--font-family);
  max-width: 100%;
  /* line-height: 1.6; */
  margin: 0 auto;
}

.about-bottom-text span {
  color: var(--primary-color);
  font-weight: 800;
}

@media (max-width: 768px) {
  .about-bottom-text {
    font-size: 16px;
    text-align: center;
    padding: 0 15px;
  }
}

.text-p {
  font-size: 18px;
  margin: 0;
  color: black;
  font-weight: 500;
}

.about-img {
  max-width: 100%;
  border-radius: 10px;
}

/* Stats box */

.stats-box {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.5s ease;
  background-color: #fff;
}

.stats-box:hover {
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

.stats-box img {
  width: 35px;
  height: 35px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.stats-box i {
  font-size: 35px;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Text */

.stats-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.stats-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.stats-text p {
  font-size: 12px;
  margin: 0;
  color: #000;
  font-weight: 600;
}

/* Container for spacing */

.row.g-3 {
  row-gap: 1.2rem;
}

.aboutc {
  color: var(--primary-color);
  font-size: 35px;
  margin: 0 0 16px;
  font-family: var(--font-family);
  font-weight: 700;
}

/* Tablets */

@media (max-width: 992px) {
  .stats-text h3 {
    font-size: 22px;
  }
  .aboutc {
    font-family: var(--font-family);
    font-size: 22px;
  }

  .stats-text p {
    font-size: 11px;
  }

  .stats-box img {
    width: 30px;
    height: 30px;
  }
  .stats-box i {
    font-size: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
  }

  .navbar-brand3 {
    font-size: 23px;
    font-family: var(--font-family);
    font-weight: 700;
  }
}

/* Small mobiles */
@media (max-width: 576px) {
  .stats-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    /* background: #fff; */

    border-radius: 10px;
    padding: 10px;
    margin: 8px auto;

    transition: all 0.3s ease;
    text-align: left;
  }

  .stats-box:hover {
    box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
  }

  .stats-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    text-align: left;
  }

  .stats-text h3 {
    font-size: 20px;
  }

  .stats-text p {
    font-size: 10px;
  }

  .stats-box img,
  .stats-box i {
    width: 32px;
    height: 32px;
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
  }

  .statrow {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
  }
}

/* principle card  */

.principle-card {
  background: #fff;
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: 5px;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 90%;
  width: 90%;
  margin-bottom: 40px;
}

.principle-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

/* Floating icon */

.icon-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto -30px;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.icon-circle img {
  width: 70px;
  height: 70px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.principle-card h3 {
  margin-top: 80px;
  font-size: 20px;
  font-family: var(--font-family);
  color: #000;
  text-align: left;
  margin-left: 0.5rem;
}

.principle-card p {
  font-size: 13px;
  color: #000;
  margin-top: 10px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-left: 0.5rem;
  line-height: 1.6;
}

/* Principle Card 2 */
.principle-card-2 {
  background: #fff;
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: 8px;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 90%;
  width: 100%;
  margin-bottom: 40px;
}

.principle-card-2:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

/* Floating Icon */
.icon-circle-2 {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto -30px;
  position: relative;
  z-index: 2;
  animation: float2 3s ease-in-out infinite;
}

.icon-circle-2 img {
  width: 70px;
  height: 70px;
}

@keyframes float2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.principle-card-2 h3 {
  margin-top: 80px;
  font-size: 20px;
  font-family: var(--font-family);
  color: #000;
  text-align: left;
  margin-left: 0.5rem;
}

.principle-card-2 p {
  font-size: 13px;
  color: #000;
  margin-top: 10px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-left: 0.5rem;
  line-height: 1.6;
}

/* For tablets */
@media (max-width: 992px) {
  .principle-card-2 {
    width: 80%;
    margin: 20px auto;
  }

  .principle-card-2 h3 {
    font-size: 18px;
    text-align: left;
    margin-top: 70px;
    margin-left: 10px;
  }

  .principle-card-2 p {
    font-size: 13px;
    text-align: left;
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .principle-card-2 {
    width: 90%;
    max-width: 350px;
  }

  .principle-card-2 h3 {
    font-size: 16px;
    text-align: left;
    margin-top: 70px;
    margin-left: 10px;
  }

  .principle-card-2 p {
    font-size: 13px;
    text-align: left;
  }
}

/* For very small devices (e.g., 375px and below) */
@media (max-width: 480px) {
  .principle-card-2 {
    width: 95%;
    padding: 2rem 1rem;
  }

  .icon-circle-2 img {
    width: 60px;
    height: 60px;
  }

  .principle-card-2 h3 {
    font-size: 16px;
    text-align: left;
    margin-top: 70px;
    margin-left: 10px;
  }

  .principle-card-2 p {
    font-size: 12px;
    text-align: left;
  }
}

/* section subtitle */

.section-subtitle {
  font-size: 16px;
  color: #000;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.section-subtitles {
  font-size: 16px;
  color: #000;
  max-width: 1000px;
  text-align: justify;
  margin: 0 auto;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.section-subtitle5 {
  color: #000;
  margin: 0 auto;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.section-subtitle2 {
  font-size: 16px;
  color: #000;
  max-width: 1000px;

  margin: 0 auto;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.service-title {
  font-size: 30px;
  font-family: var(--font-family);
}

/* tablets */

@media (max-width: 992px) {
  .principle-card {
    width: 95%;

    text-align: center;
  }

  .principle-card h3,
  .principle-card p {
    text-align: center;
    margin-left: 0;
  }

  .icon-circle {
    margin: 0 auto -25px;
  }
  .section-subtitles {
    font-size: 16px;
    color: #000;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
  }
}

@media (max-width: 576px) {
  .principle-card h3 {
    font-size: 18px;
    margin-top: 60px;
  }

  .principle-card p {
    font-size: 12px;
  }

  .section-subtitles {
    font-size: 16px;
    color: #000;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
  }
}

/* expertise card */

.expertise-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  /* margin-bottom: 20px; */
}

.expertise-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.expertise-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expertise-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--primary-color);
}
.expertise-card h2 {
  font-size: 20px;

  margin-bottom: 8px;
  color: var(--primary-color);
}

.expertise-card p {
  font-size: 11px;
  color: #000000;
  margin-bottom: 12px;
  flex-grow: 1;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.read-more .arrow-icon {
  width: 22px;
  height: 22px;
  margin-left: 6px;
  transition: transform 0.3s;
}

.read-more:hover .arrow-icon {
  transform: translateX(4px);
}

.expertise-card-link {
  text-decoration: none;
}

.expertise-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

/* Tablets */
@media (max-width: 992px) {
  .about-section p {
    /* text-align: justify; */
    font-family: var(--font-family);
    font-size: 15px;

    color: #000000;

    max-width: 800px;
  }
  .expertise-card {
    height: 100%;
  }

  .expertise-card img {
    height: 160px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 24px;
  }

  .text-p {
    font-size: 16px;
  }
  .expertise-card {
    height: 90%;
  }

  .expertise-card img {
    height: 150px;
  }

  .expertise-card h3 {
    font-size: 16px;
  }

  .expertise-card p {
    font-size: 12px;
  }

  .read-more {
    font-size: 13px;
    margin-bottom: 40px;
  }
}

/*  Small mobiles */
@media (max-width: 480px) {
  .about-section h2 {
    font-size: 22px;
  }

  .expertise-card {
    height: 90%;
  }

  .expertise-card img {
    height: 150px;
  }
  .expertise-card p {
    font-size: 12px;
  }

  .expertise-card h3 {
    font-size: 16px;
  }
}

/* testimonial section */

#testimonials {
  background: #f9f9f9;
  font-family: var(--font-family);
}

/* Testimonial Swiper Slides */
.testimonial-slide {
  background: linear-gradient(100deg, #ffffff, #e9fcfb);
  border-radius: 5px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease-in-out; /* ✅ smooth animation */
}

/* Hover Effect */
.testimonial-slide:hover {
  /* background: linear-gradient(100deg, #d6f5f7, #e9fcfb); */
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

/* Client company text */
.client-company {
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 16px;
}

.client-company .role {
  font-weight: 800;
  font-size: 14px;
  color: var(--primary-color);
}

/* Client name */
.client-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Testimonial text */
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-slide {
    padding: 1.2rem;
  }
  .client-company {
    font-size: 14px;
  }
  .client-company .role {
    font-size: 12px;
  }
  .testimonial-text {
    font-size: 13px;
  }
}

.client-company {
  font-size: 14px;
  color: var(--primary-color);
  font-family: var(--font-family);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: left;
}
.client-company .role {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  text-align: left;
  font-family: var(--font-family);
}

.client-name {
  display: block;
  font-size: 12px;
  font-style: italic;
  text-align: left;
  font-family: var(--font-family);
  color: #252525;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
  font-family: var(--font-family);
  font-weight: 600;
  text-align: left;
  border-radius: 5px;
  transition: transform 0.3s ease;
}
.testimonial-text:hover {
  transform: translateY(-4px);
}

.client-title {
  color: var(--primary-color);
  font-size: 30px;
  position: relative;
  display: inline-block;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  margin-left: 22px;
  transition: all 0.3s ease;
}

/* Animated Underline */
.title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #20bab7, #1c8f8c);
  border-radius: 5px;
  margin-top: 5px;
  margin-left: 22px;
  animation: slide-underline 3s ease-in-out infinite alternate;
}

@keyframes slide-underline {
  0% {
    width: 50px;
    opacity: 0.7;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

.clientpara {
  font-family: var(--font-family);
  font-size: 26px;
  font-weight: 600;
  text-align: left;
  margin-left: 20px;
}

/*Tablets*/
@media (max-width: 992px) {
  .clientpara {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .clientpara {
    font-size: 18px;
    text-align: left;
  }
}

/* small mobiles */
@media (max-width: 480px) {
  .clientpara {
    font-size: 18px;
    text-align: left;
  }
}

/* Tablets */

@media (max-width: 992px) {
  .client-company {
    font-size: 13px;
    text-align: left;
  }
  .client-company .role {
    font-size: 13px;
    text-align: left;
  }
  .client-name {
    font-size: 11px;
    text-align: left;
  }
  .testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }
}

/* mobile */
@media (max-width: 768px) {
  .client-company {
    font-size: 12px;
    text-align: left;
  }
  .client-company .role {
    font-size: 12px;
    text-align: left;
  }
  .client-name {
    font-size: 11px;
    text-align: left;
  }
  .testimonial-text {
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
  }
}

/*small mobile */
@media (max-width: 480px) {
  .client-company {
    font-size: 11px;
    text-align: left;
  }
  .client-company .role {
    font-size: 11px;
    text-align: left;
  }
  .client-name {
    font-size: 10px;
    text-align: left;
  }
  .testimonial-text {
    font-size: 11px;
    line-height: 1.5;
    text-align: left;
  }
}

.testimonialSwiper {
  max-width: 500px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
}
.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}

/* timeline */

.timeline {
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 3px;
  background: #ccc;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.timeline .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  /* background: #999; */
  border: 2px solid #000;
  transition: all 0.3s ease;
}

.timeline .circle.active {
  background: var(--primary-color);
  transform: scale(1.2);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.circle:nth-child(1) {
  background: #757070;
}
.circle:nth-child(2) {
  background: #000;
}
.circle:nth-child(3) {
  background: #757070;
}
.circle:nth-child(4) {
  background: #ff0000;
}
.circle:nth-child(5) {
  background: #4463b1;
}
.circle:nth-child(6) {
  background: #000;
}

@media (max-width: 992px) {
  .timeline {
    display: none;
  }
}

/* industries section*/

.card {
  transition: all 0.3s ease;
}

#industries h2 {
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2.5rem;
}

.industry-card {
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  position: relative;
  height: 100%;
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

.indsrow {
  margin-bottom: 20px;
}

.industry-card img {
  height: 220px;
  /* object-fit: cover; */
  width: 100%;
  border-left: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
}

.industry-card .card-title {
  color: var(--primary-color) !important;
  font-size: 20px;
  text-align: left;
  font-weight: 600;
}

.industry-card .card-text {
  font-size: 10px;
  color: black;
  font-weight: 400;
  font-family: var(--font-family);
  text-align: left;
}

.industry-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border: none;
}

/*  Tablets */

@media (max-width: 992px) {
  .industry-card img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
  }
  .industry-card .card-title {
    font-size: 18px;
  }
  .industry-card .card-text {
    font-size: 11px;
  }
}

/*  Mobile */

@media (max-width: 576px) {
  .industry-card {
    width: 100%;
    height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .industry-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
  }

  .industry-card .card-title {
    font-size: 16px;
    text-align: left;
  }

  .industry-card .card-text {
    font-size: 12px;
    text-align: left;
  }
}

/* can't find industry section */

#find-industry {
  position: relative;
  height: 75vh;
  background-color: #000;
}

#find-industry img {
  width: 100%;
  height: 300px;
  transition: transform 0.5s ease;
}
.overlytext {
  background-color: #080808;
  opacity: 0.6;
}
#find-industry h2 {
  font-size: 50px;
  font-weight: 700;
  color: #20bab7;
}

#find-industry p {
  font-size: 25px;
  font-family: var(--font-family);
  font-weight: 700;
  color: #fff;
}

.hover-btn {
  border: 2px solid #20bab7;
  color: #20bab7;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.65em;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hover-btn:hover {
  background: #20bab7;
  color: #fff !important;
  /* border-color: #fff; */
  box-shadow: 0 0 15px rgba(32, 186, 183, 0.5);
}

@media (max-width: 2880px) {
  #find-industry {
    text-align: center;
    height: 60vh;
    position: relative;
    background-color: #000;
  }

  #find-industry img {
    width: 100%;
    height: 770px;
    transition: transform 0.5s ease;
  }
}

@media (max-width: 1980px) {
  #find-industry {
    text-align: center;
    height: 80vh;
    position: relative;
    background-color: #000;
  }

  #find-industry img {
    width: 100%;
    height: 770px;
    transition: transform 0.5s ease;
  }
}

@media (max-width: 1840px) {
  #find-industry {
    text-align: center;
    height: 80vh;
    position: relative;
    background-color: #000;
  }

  #find-industry img {
    width: 100%;
    height: 770px;
    transition: transform 0.5s ease;
  }
}

@media (max-width: 1300px) {
  #find-industry {
    text-align: center;
    position: relative;
    background-color: #000;
  }

  #find-industry img {
    width: 100%;
    height: 600px;
    transition: transform 0.5s ease;
  }
}

@media (max-width: 1024px) {
  #find-industry {
    text-align: center;
    position: relative;
    background-color: #000;
  }

  #find-industry img {
    width: 100%;
    height: 560px;
    transition: transform 0.5s ease;
  }
}

/* Tablets */

@media (max-width: 998px) {
  #find-industry {
    text-align: center;
    position: relative;

    background-color: #000;
  }

  #find-industry h2 {
    font-size: 18px;
  }
  #find-industry p {
    font-size: 15px;
  }
  .hover-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.4rem;
  }
  #find-industry img {
    width: 100%;
    height: 600px;
    transition: transform 0.5s ease;
  }
}

/* Mobile*/
@media (max-width: 768px) {
  #find-industry {
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    height: 80%;
    background-color: #000;
  }

  #find-industry h2 {
    font-size: 18px;
  }
  #find-industry p {
    font-size: 15px;
  }
  .hover-btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.3rem;
  }

  #find-industry img {
    width: 100%;
    height: 400px;
    transition: transform 0.5s ease;
  }
}

/* mobiles */
@media (max-width: 576px) {
  #find-industry {
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    height: 80%;
    background-color: #000;
  }

  #find-industry h2 {
    font-size: 18px;
  }
  #find-industry p {
    font-size: 15px;
  }
  .hover-btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.3rem;
  }

  #find-industry img {
    width: 100%;
    height: 310px;
    transition: transform 0.5s ease;
  }
}

/*Small mobiles */
@media (max-width: 480px) {
  #find-industry {
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    height: 50%;
    background-color: #000;
  }

  #find-industry h2 {
    font-size: 18px;
  }
  #find-industry p {
    font-size: 15px;
  }
  .hover-btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.3rem;
  }

  #find-industry img {
    width: 100%;
    height: 350px;
    transition: transform 0.5s ease;
  }
}

/*Small mobiles */
@media (max-width: 425px) {
  #find-industry {
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    background-color: #000;
  }

  #find-industry h2 {
    font-size: 18px;
  }
  #find-industry p {
    font-size: 15px;
  }
  .hover-btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.3rem;
  }

  #find-industry img {
    width: 100%;
    height: 400px;
    transition: transform 0.5s ease;
  }
}

.btn-modern {
  /* border: 2px solid black; */
  color: white;
  background-color: var(--primary-color);
  padding: 0.7rem 1.7rem;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-modern:hover {
  background-color: black;
  color: var(--primary-color);
  box-shadow: 0 0 12px var(--secondary-color);
}

/* Tablets */
@media (max-width: 992px) {
  .btn-modern {
    font-size: 14px;
    padding: 12px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .btn-modern {
    font-size: 13px;
    padding: 12px;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .btn-modern {
    font-size: 12px;
    padding: 12px;
  }
}

/*Small mobiles */
@media (max-width: 400px) {
  .btn-modern {
    font-size: 12px;
    padding: 12px;
  }
}

/* connect section */

#connect {
  background: #ffffff;
}
#connect h2 {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
#connect p.lead {
  font-size: 18px;
  font-family: var(--font-family);
  color: #000;
  font-weight: 600;
  text-align: center;
}

#connect .step-container {
  position: relative;
  padding-left: 3rem;
}
.workingman {
  width: 100%;
  /* aspect-ratio: 1 / 1; */
  object-fit: cover;
  border-radius: 0;
}

#connect .step-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}
#connect .step-icon img {
  width: 30px;
  height: 30px;
}
#connect .step-line {
  position: absolute;
  left: 23px;
  top: 40px;
  width: 2px;
  height: calc(100% - 50px);
  background: repeating-linear-gradient(
    to bottom,
    black 0,
    black 4px,
    transparent 4px,
    transparent 8px
  );
}
#connect .step-line2 {
  position: absolute;
  left: 23px;
  top: 40px;
  width: 2px;
  height: calc(100% - 50px);
  background-color: black;
}
#connect .step-line2:last-child {
  height: 2px;
  width: 100%;
  left: 0;
  top: auto;
}
.step-content {
  margin-bottom: 10px;
}
#connect .step-content h3 {
  margin-left: 0.6rem;
  margin-bottom: 0.3rem;
  font-weight: 800;
  font-size: 23px;
  font-family: "Montserrat", sans-serif;
}
#connect .step-content p {
  font-weight: 500;
  color: #000;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

/*  Large Screens  */
@media (max-width: 1200px) {
  #connect h2 {
    font-size: 28px;
  }
  #connect p.lead {
    font-size: 17px;
  }
  #connect .step-content h3 {
    font-size: 20px;
    font-weight: 800;
  }
  #connect .step-content p {
    font-size: 14px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  #connect {
    text-align: left;
  }
  #connect h2 {
    font-size: 26px;
  }
  #connect p.lead {
    font-size: 16px;
  }

  #connect .step-content h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
  }
  #connect .step-content p {
    font-size: 14px;
  }
  .workingman {
    display: none;
  }
}

/* Mobile Devices*/
@media (max-width: 768px) {
  #connect {
    text-align: left;
  }
  #connect h2 {
    font-size: 24px;
    font-family: var(--font-family);
  }
  #connect p.lead {
    font-size: 15px;
    font-family: var(--font-family);
  }

  #connect .step-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--font-family);
    font-weight: 800;
    line-height: 1.2;
  }
  #connect .step-content p {
    font-size: 14px;
    font-family: var(--font-family);
  }

  .workingman {
    display: none;
  }
}

/*Mobiles */
@media (max-width: 576px) {
  #connect h2 {
    font-size: 22px;
    font-family: var(--font-family);
  }
  #connect p.lead {
    font-size: 14px;

    font-family: var(--font-family);
  }

  #connect .step-content h3 {
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-family);
    line-height: 1.2;
  }
  #connect .step-content p {
    font-size: 14px;
    font-family: var(--font-family);
  }
}

/* small mobile */
@media (max-width: 400px) {
  #connect h2 {
    font-size: 20px;
    font-family: var(--font-family);
  }
  #connect p.lead {
    font-size: 13px;
    font-family: var(--font-family);
  }

  #connect .step-content h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--font-family);
  }
  #connect .step-content p {
    font-size: 14px;
    font-family: var(--font-family);
  }
}

/* Tablets */
@media (max-width: 991px) {
  .testimonial-text {
    font-size: 15px;
    padding: 15px 18px;
  }
  #find-industry h2 {
    font-size: 2rem;
  }
  /* #connect h2 {
    font-size: 2rem;
  } */
}

@media (max-width: 768px) {
  .testimonial-text {
    text-align: center;
  }
  .timeline .line {
    left: 5%;
  }
  .client-company {
    font-size: 16px;
  }
}

/* Mobile  */
@media (max-width: 576px) {
  #connect h2 {
    font-size: 1.8rem;
  }
  .testimonial-text {
    font-size: 14px;
  }
}

.proud-adevss-section {
  background: linear-gradient(
    100deg,
    #e0edec,
    #ffffff
  ); /* gradient background */
  color: #222;
  position: relative;
  overflow: hidden;
}

.proud-adevss-img {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.proud-adevss-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.proud-adevss-title {
  color: #20bab7;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.proud-adevss-text {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.7;
}

/* Responsive fix */
@media (max-width: 992px) {
  .proud-adevss-title {
    text-align: left;
  }
  .proud-adevss-text {
    text-align: left;
  }
  .btn-primary-custom {
    display: block;
    margin: 0 auto;
  }
}

/* ---- Image ---- */
.adevss-image-wrapper {
  display: inline-block;
  /* width: 350px;
  height: 350px; */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.adevss-hero-image {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.adevss-image-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.adevss-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #1b1b1b;
  letter-spacing: 0.5px;
}

.adevss-title span {
  color: #20bab7;
}

.adevss-lead {
  font-size: 1.05rem;
  color: #555;
  font-weight: 400;
}

.adevss-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adevss-points li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: #444;
}

.btn-primary-custom {
  background-color: #20bab7;
  color: #fff;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #17a39f;
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 992px) {
  .adevss-image-wrapper {
    width: 280px;
    height: 280px;
  }

  .adevss-title {
    font-size: 1.8rem;
  }

  .adevss-lead {
    font-size: 1rem;
  }
}

/* Footer */

.site-footer {
  background: linear-gradient(
    100deg,
    #e0edec,
    #ffffff
  ); /* gradient background */
  padding: 40px 0 15px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #20bab7 50%, #000 50%);
  background-size: 200%;
  animation: animate-line 3s linear infinite;
}
.site-footer::before {
  top: 0;
}
.site-footer::after {
  bottom: 0;
  animation: animate-line-reverse 3s linear infinite;
}

@keyframes animate-line {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes animate-line-reverse {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* LOCATIONS */
.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.footer-location-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 15px;
  color: #000;
}
.footer-location-item img {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

/* FOOTER MENUS */
.footer-menus {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.dropdown-toggle {
  color: #000;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.dropdown-toggle:hover {
  color: var(--primary-color);
}
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 10px;
  min-width: 230px;
  padding: 10px 0;
  position: absolute;
  left: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

@media (min-width: 992px) {
  footer .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-item {
  font-weight: 500;
  font-size: 13px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background: #f8f8f8;
  color: var(--primary-color) !important;
}

.multi-column {
  min-width: 400px;
}
@media (max-width: 991px) {
  .multi-column {
    min-width: 100%;
  }
}

@media (max-width: 991px) {
  .footer-menus {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    margin: 5px 0;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-toggle {
    font-size: 16px;
    width: 100%;
  }
}

.footer-bottom {
  text-align: center;
  background: linear-gradient(
    100deg,
    #e0edec,
    #ffffff
  ); /* gradient background */
  font-size: 14px;
  color: #333;
  padding-top: 20px;
  border-top: 2px solid #eee;
}

/* Mobile */
@media (max-width: 576px) {
  .footer-locations {
    text-align: left;
  }
  .footer-location-item {
    font-size: 13px;
  }
  .footer-title {
    font-size: 18px;
  }

  footer .dropdown.open .dropdown-menu {
    display: block;
  }
}

/* Floating Buttons Chat and Back to Top */

.float-btn {
  position: fixed;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
  background-color: #20bab7;
}

.float-btn:hover {
  /* background-color:black; */
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0px 12px var(--secondary-color);
}

/* Icon Styling */
.float-btn i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.float-btn:hover i {
  color: white;
}

/* Back to Top  */
#backToTop {
  bottom: 25px;
  background-color: var(--primary-color);
  display: none;
  animation: fadeInUp 0.6s ease forwards;
}

#backToTop:hover {
  background-color: black;
  box-shadow: 0 0px 12px var(--secondary-color);
}

#backToTop.show {
  display: flex;
  animation: bounceIn 0.6s ease forwards;
}

#chatButton {
  bottom: 80px;
  background-color: #20bab7;
  font-size: 26px;
}

#chatButton:hover {
  background-color: black;
  box-shadow: 0 0px 12px var(--secondary-color);
}

/* Chat popup */

#chatPopup {
  position: fixed;
  bottom: 130px;
  right: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  width: 320px;
  max-width: calc(100% - 2rem);
  padding: 20px;
  z-index: 9998;
  display: none;
  animation: slideUp 0.4s ease forwards;
}

/* Slide animation */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-header {
  color: #20bab7;
  font-weight: 700;
  font-size: 1.1rem;
}

.chat-text {
  color: #000000;
  margin-top: 8px;
  font-family: var(--font-family);
  font-size: 14px;
}

.chat-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;

  padding: 10px 16px;
  font-weight: 500;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.chat-btn:hover {
  background-color: #000;
  border-radius: 8px;
  color: var(--primary-color);
  box-shadow: 0 0 10px var(--secondary-color);
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .float-btn {
    width: 45px;
    height: 45px;
    right: 20px;
  }

  #backToTop {
    bottom: 30px;
  }

  #chatButton {
    bottom: 100px;
  }

  #chatPopup {
    width: calc(70% - 30px);
    right: 25px;
    bottom: 150px;
    padding: 16px;
  }

  .chat-header {
    font-size: 1rem;
  }

  .chat-text {
    font-size: 0.8rem;
  }

  .chat-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

.chatbox-container {
  width: 450px;
  max-width: 90%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
}

.close-header {
  width: 100%;
  height: 70px;
  background: var(--primary-color);
  border-radius: 16px 16px 3px 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  overflow: hidden;
}

/* Close btn */
.chatbox-close-btn {
  border-radius: 50%;
  border: 2px solid white;
  background: white;
  color: #000000;
  font-size: 18px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chatbox-close-btn:hover {
  background-color: #f8f9fa;
  transform: scale(1.05);
}

.msg-back {
  font-size: 22px;
  color: #f8f9fa;
  cursor: pointer;
  transition: all 0.2s ease;
}

.msg-back:hover {
  transform: translateX(-3px);
}

.contact-btn {
  background: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.contact-btn i {
  color: var(--primary-color);
  transition: transform 0.3s;
}

/* Hover effect */
.contact-btn:hover {
  background: #000000;
  box-shadow: 0 0 8px var(--secondary-color);
}

/* Shake animation on hover */
.contact-btn:hover i {
  animation: shake 0.5s ease-in-out;
}
/* Shake animation on hover */
.contact-btn:hover img {
  animation: shake 0.5s ease-in-out;
}

/* Keyframes for shaking effect */
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.contact-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 5px;
}

.chatbox-desc {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family);
  color: black;
  margin-top: 5px;
}

.navbar-brandchat {
  font-size: 24px;
  margin: 8px 0px;
  font-family: var(--font-family);
  font-weight: 700;
}

.navbar-brandchat span {
  color: var(--primary-color);
}

.profile-pic {
  width: 110px;
  height: 110px;
}

/* MODAL*/
.chat-modal {
  border-radius: 15px;
  padding: 10px 20px;
}

.chat-modal .modal-title {
  color: #20bab7;
  font-weight: 700;
}

.btn-submit,
.btn-send,
.btn-record,
.btn-stop {
  background: #20bab7;
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 8px 15px;
  transition: 0.3s;
  font-weight: 600;
}
.btn-stop {
  background: #f44336;
}
.btn-submit:hover,
.btn-send:hover,
.btn-record:hover {
  background: #17a19f;
}

.chat-area {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px;
  height: 220px;
  overflow-y: auto;
}
.message {
  margin: 6px 0;
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-block;
  max-width: 80%;
}
.message.bot {
  background: #e0f7f7;
  text-align: left;
}
.message.user {
  background: #20bab7;
  color: #fff;
  text-align: right;
  float: right;
  clear: both;
}
/* Footer Section */
.msg-footer {
  background: var(--primary-color);
  padding: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: auto;
}

/*  NEW CHAT MODAL STYLING */
.newchatmodal-content {
  background: #f9f9f9;
  border-radius: 16px;
  border: none;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  color: #000;
}

.newchatmodal-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/*NEW CHAT MODAL */

.newchatmodal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 5px 6px;
}

/* Inputs and Select Fields */
.newchatmodal-form input,
.newchatmodal-form select {
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  font-weight: 500;
}

/* Placeholder & Text Colors */
.newchatmodal-form input::placeholder {
  color: #999;
  font-weight: 400;
}

/* Hover State */
.newchatmodal-form input:hover,
.newchatmodal-form select:hover {
  border-color: #20bab7;
  background-color: #f8ffff;
}

/* Focus State */
.newchatmodal-form input:focus,
.newchatmodal-form select:focus {
  border-color: #20bab7;
  box-shadow: 0 0 0 3px rgba(32, 186, 183, 0.15);
  background-color: #fff;
}

/* Select Dropdown Arrow */
.newchatmodal-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2320BAB7' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
  padding-right: 35px;
  line-height: 1.5;
  cursor: pointer;
}

/* Dropdown Options */
.newchatmodal-form select option {
  font-size: 14px;
  background-color: #fff;
  color: #333;
}

/* Submit Button */
.newchatmodal-btn {
  background-color: #20bab7;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 0;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
  box-shadow: 0 3px 8px rgba(32, 186, 183, 0.25);
}

.newchatmodal-btn:hover {
  background-color: #000;
  color: var(--primary-color);
  box-shadow: 0 0 12px var(--secondary-color);
}

.newchatmodal-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(32, 186, 183, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .newchatmodal-form input,
  .newchatmodal-form select {
    font-size: 13px;
    padding: 8px 10px;
  }

  .newchatmodal-btn {
    font-size: 14px;
    padding: 9px 0;
  }
}

/* call modal */

.call-modal {
  border-radius: 15px;
  background: #ffffff;
  width: 100%;
  max-width: 450px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: "Montserrat", sans-serif;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #f1f1f1;
}

.call-modal::-webkit-scrollbar {
  width: 8px;
}
.call-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.call-modal::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}
.call-modal::-webkit-scrollbar-thumb:hover {
  background: #17a19f;
}

.call-profile {
  width: 75px;
  height: 75px;
  background-color: #d1d1d1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.call-title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}
.call-desc {
  color: #555;
  font-size: 14px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.text-primary-color {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

/* call modal */

.call-modal .form-input,
.call-modal form .form-control,
.call-modal textarea.form-input,
.call-modal select.form-control {
  border: 2px solid var(--primary-color) !important;
  border-radius: 10px;
  height: 55px;
  padding: 10px 15px;
  font-size: 15px;
  color: var(--primary-color);
  background-color: #fff;
  transition: all 0.3s ease;
}

.call-modal .form-label {
  color: var(--primary-color);
}

/* Hover Effect */
.call-modal .form-input:hover,
.call-modal form .form-control:hover,
.call-modal textarea.form-input:hover,
.call-modal select.form-control:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 6px rgba(32, 186, 183, 0.3);
}

/* Focus Effect */
.call-modal .form-input:focus,
.call-modal form .form-control:focus,
.call-modal textarea.form-input:focus,
.call-modal select.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(32, 186, 183, 0.4);
}

/* Textarea Specific */
.call-modal textarea.form-input,
.call-modal form textarea.form-control {
  height: 80px;
  resize: none;
}

/* Placeholder Styling */
.call-modal .form-input::placeholder,
.call-modal form .form-control::placeholder {
  color: rgb(64, 64, 65);
  font-size: 14px;
}

/* Submit Button */
.btn-call-submit {
  background: var(--primary-color);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 20px;
  width: 220px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-call-submit:hover {
  background: #000;
  color: white;
  box-shadow: 0 0 10px var(--primary-color);
  transform: scale(1.03);
}

.modal-dialog {
  max-width: 440px;
}
.modal-content {
  border: none;
}

@media (max-width: 576px) {
  .call-modal {
    width: 100%;
  }
  .btn-call-submit {
    width: 100%;
    padding: 15px;
  }
}

/* call modal header */
.call-header {
  background: var(--primary-color);
  color: #fff;
  width: 100%;
  padding: 12px 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Close btn */
.custom-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(1);
  opacity: 0.9;
}

.custom-close:hover {
  transform: translateY(-50%) scale(1.1);
  transition: all 0.2s ease;
}

/* chat modal */

.msg-modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.msg-box {
  background: #20bab7;
  border-radius: 16px;
  width: 96vw;
  max-width: 420px;
  max-height: 100vh;
  height: 70%;
  margin: auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  animation: msg-fadeIn 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.msg-header {
  position: relative;
  background: #20bab7;
  color: #fff;
  padding: 1.2rem 1rem;
  text-align: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.msg-back {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px;
  transition: all 0.3s ease;
}
.msg-back:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Close Btn */

.msg-close {
  filter: invert(1);
  opacity: 0.9;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.msg-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.msg-body {
  background: #fff;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  flex: 1;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.msg-profile {
  text-align: center;
}
.msg-avatar {
  width: 75px;
  height: 75px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: #d1d1d1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.msg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.msg-status {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.msg-input-area {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  right: 15px;
  color: var(--primary-color);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.input-wrapper i:hover {
  color: #000;
}

.msg-label {
  color: #20bab7;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.4rem;
  display: inline-block;
}
.msg-input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.msg-input:focus {
  outline: none;
  border-color: #179a98;
  box-shadow: 0 0 10px rgba(32, 186, 183, 0.4);
}

.msg-box::-webkit-scrollbar {
  width: 8px;
}
.msg-box::-webkit-scrollbar-thumb {
  background: #179a98;
  border-radius: 4px;
}
.msg-box::-webkit-scrollbar-track {
  background: #f2f2f2;
}

@keyframes msg-fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .msg-box {
    width: 95%;
    height: 80%;
    border-radius: 12px;
  }
  .msg-header {
    padding: 1rem;
  }
  .msg-title {
    font-size: 1.1rem;
  }
  .msg-input {
    height: 50px;
  }
}
@media (max-width: 480px) {
  .msg-box {
    width: 95%;
    height: 80%;
    border-radius: 12px;
  }
  .msg-header {
    padding: 1rem;
  }
  .msg-title {
    font-size: 1.1rem;
  }
  .msg-input {
    height: 50px;
  }
}

/* voice modal*/

.voice-box {
  background: #20bab7;
  border-radius: 16px;
  width: 96vw;
  max-width: 420px;
  max-height: 90vh;
  height: 70%;
  margin: auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  font-family: "Montserrat", sans-serif;
  animation: voice-fadeIn 0.3s ease;
}

.voice-header {
  position: relative;
  width: 100%;
  padding: 1.4rem 1rem;
  text-align: center;
  background: #20bab7;
  color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.voice-back {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  stroke: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 6px;
  transition: all 0.3s ease;
}
.voice-back:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

/* Close Btn*/
.voice-close {
  filter: invert(1);
  opacity: 0.9;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.voice-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.voice-body {
  background: #fff;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.voice-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #d1d1d1;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  text-align: center;
}

#recordStatus {
  font-weight: 500;
  font-size: 14px;
  min-height: 22px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.voice-record-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #20bab7;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.voice-record-btn:hover {
  background-color: #000;
  color: var(--primary-color);
  box-shadow: 0 0 12px var(--secondary-color);
}

.voice-record-icon {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.voice-box::-webkit-scrollbar {
  width: 8px;
}
.voice-box::-webkit-scrollbar-thumb {
  background: #179a98;
  border-radius: 4px;
}
.voice-box::-webkit-scrollbar-track {
  background: #f2f2f2;
}

@keyframes voice-fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .voice-box {
    width: 95%;
    height: 80%;
  }
  .voice-title {
    font-size: 1.2rem;
  }
  .voice-record-btn {
    width: 90%;
    justify-content: center;
  }
}

/* footer bottom*/
.footer-bottom {
  /* border-top: 2px solid var(--primary-color); */
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
  }

  .footer-bottom a,
  .footer-bottom span {
    margin: 2px 0 !important;
  }
}

/* Section Heading */
.section-title4 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 30px;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 30px;
}
.section-title2 {
  color: black;
  font-weight: 700;
  font-size: 30px;
}

/* insight card */
.insight-card {
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.insight-card:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

.insight-badge {
  position: absolute;
  top: 15px;
  left: 10px;
  background: rgb(53, 51, 51);
  color: #fff;
  font-size: 12px;
  padding: 3px 20px;
  border-radius: 10px;
  z-index: 2;
}

.insight-image {
  overflow: hidden;
  height: 60%;
  width: 100%;
}
.insight-image:hover img {
  transform: scale(1.07);
}

.insight-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.contentp {
  text-align: left;
  color: #fff;
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.contentp p {
  font-size: 18px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  max-width: 700px;
  /* text-transform: capitalize; */
  animation: fadeInDown 0.8s ease;
}

.contentp h1 {
  font-size: 56px;
  line-height: 1.2;

  font-weight: 700;
  max-width: 700px;
  font-family: "Montserrat", sans-serif;
  color: #f5f5f5;
  animation: fadeInUp 1s ease;
}

/* Tablets*/
@media (max-width: 992px) {
  .contentp h1 {
    font-size: 32px;
  }
  .contentp p {
    font-size: 18px;

    margin: 0 auto;
  }
}

/* Mobile  */
@media (max-width: 768px) {
  .contentp h1 {
    font-size: 30px;
  }
  .contentp p {
    font-size: 17px;
    max-width: 700px;
  }
}

/* Small Mobile*/
@media (max-width: 480px) {
  .contentp h1 {
    font-size: 28px;
  }
  .contentp p {
    font-size: 15px;

    max-width: 700px;
  }
}

@media (max-width: 360px) {
  .contentp h1 {
    font-size: 26px;
  }
  .contentp p {
    font-size: 13px;
    max-width: 700px;
  }
}

/* career */

.contentc {
  text-align: left;
  color: #fff;
  max-width: 900px;
  z-index: 2;
  position: relative;
}
.contentd {
  text-align: left;
  color: #fff;
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.contentd h1 {
  font-size: 45px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  text-transform: capitalize;
  animation: fadeInDown 0.8s ease;
}

.contentd p {
  font-size: 24px;
  line-height: 1.7;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #f5f5f5;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.contentc h1 {
  font-size: 45px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  text-transform: capitalize;
  animation: fadeInDown 0.8s ease;
}

.contentc p {
  font-size: 24px;
  line-height: 1.7;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #f5f5f5;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

/* Tablets */
@media (max-width: 992px) {
  .contentc h1 {
    font-size: 32px;
  }
  .contentc p {
    font-size: 18px;

    margin: 0 auto;
  }

  .contentd h1 {
    font-size: 32px;
  }
  .contentd p {
    font-size: 18px;

    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contentc h1 {
    font-size: 30px;
  }
  .contentc p {
    font-size: 16px;
    max-width: 700px;
  }
  .contentd h1 {
    font-size: 30px;
  }
  .contentd p {
    font-size: 16px;
    max-width: 700px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contentc h1 {
    font-size: 28px;
  }
  .contentc p {
    font-size: 14px;

    max-width: 700px;
  }
  .contentd h1 {
    font-size: 28px;
  }
  .contentd p {
    font-size: 14px;

    max-width: 700px;
  }
}

@media (max-width: 360px) {
  .contentc h1 {
    font-size: 26px;
  }
  .contentc p {
    font-size: 12px;
    max-width: 700px;
  }
  .contentd h1 {
    font-size: 26px;
  }
  .contentd p {
    font-size: 12px;
    max-width: 700px;
  }
}

/* Content */
.insight-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-content h3 {
  font-size: 20px;
  margin: 16px 0px 8px;
  padding: 0 24px;
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--font-family);
}

.insight-content p {
  font-size: 14px;
  color: black;
  padding: 0px 24px;
  font-family: var(--font-family);
}
.insight-read-more {
  font-size: 14px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  padding: 0px 24px;
  align-items: center;
}

.insight-read-more .arrow-icon {
  width: 22px;
  height: 22px;
  margin-left: 6px;

  transition: transform 0.3s;
}

.insight-read-more:hover .arrow-icon {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .insight-card {
    height: auto;
  }

  .insight-image {
    height: 55%;
  }

  .insight-content h3 {
    font-size: 19px;
  }

  .insight-content p {
    font-size: 15px;
  }
}

/*Tablets */
@media (max-width: 992px) {
  .insight-content {
    padding: 12px 18px;
  }

  .insight-content h3 {
    font-size: 18px;
    padding: 0 18px;
  }

  .insight-content p {
    font-size: 15x;
    padding: 0 18px;
  }

  .insight-read-more {
    padding: 0 18px;
    font-size: 13.5px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .insight-content {
    padding: 10px 16px;
  }

  .insight-content h3 {
    font-size: 17px;
    padding: 0 16px;
  }

  .insight-content p {
    font-size: 15px;
    padding: 0 16px;
  }

  .insight-read-more {
    padding: 0 16px;
    font-size: 13px;
  }

  .insight-read-more .arrow-icon {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .insight-content {
    padding: 10px 14px;
  }

  .insight-content h3 {
    font-size: 16px;
  }

  .insight-content p {
    font-size: 15px;
  }

  .insight-read-more {
    font-size: 12.5px;
  }
}

@media (max-width: 360px) {
  .insight-content h3 {
    font-size: 15px;
  }

  .insight-content p {
    font-size: 11.5px;
  }

  .insight-read-more {
    font-size: 12px;
  }
}

/* Explore Topics Section */
#explore-topics {
  font-family: "Montserrat", sans-serif;
}

#explore-topics .section-title {
  font-size: 2rem;
  font-weight: 700;
}

#explore-topics p {
  color: black;
  font-size: 22px;
}

.topic-list {
  list-style: none;
  padding: 0;
}

.topic-list li {
  font-size: 22px;
  font-family: var(--font-family);
  color: black;
}

.topic-image-card {
  border: 2px solid black;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.topic-image-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* custom btn */
.custom-outline-btn {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  transition: all 0.3s ease;
  padding: 14px 32px;
  font-family: var(--font-family);
  font-size: 18px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
}

.custom-outline-btn:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

@media (max-width: 1200px) {
  .custom-outline-btn {
    font-size: 17px;
    padding: 14px 28px;
  }
}

/* Tablets  */
@media (max-width: 992px) {
  .custom-outline-btn {
    font-size: 16px;
    padding: 12px 26px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .custom-outline-btn {
    font-size: 15px;
    padding: 10px 22px;
    border-width: 1.8px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .custom-outline-btn {
    font-size: 14px;
    padding: 8px 18px;
    border-width: 1.5px;
    border-radius: 40px;
  }
}

.card {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 15px rgba(32, 186, 183, 0.4);
}

/* Facility Card */
.facility-card {
  background-color: var(--primary-color);
  color: #000;
  border: 2px solid #000;
  width: 240px;
  height: 200px;
  border-radius: 0;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.facility-card img {
  width: 50px;
  margin-bottom: 10px;
}

.facility-card:hover {
  transform: scale(1.03); /* Zoom-in effect */
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

.facility-card p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.facility-btn {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 500;
  font-size: 20px;
  text-transform: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.facility-btn img {
  transition: all 0.3s ease;
}

.facility-btn:hover {
  background-color: var(--primary-color);
  border-color: transparent;
  color: #fff;
}

.facility-btn:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
  .facility-card {
    width: 220px;
    height: 180px;
    padding: 1.2rem;
  }
  .facility-card img {
    width: 45px;
  }
  .facility-card p {
    font-size: 14px;
  }
  .facility-btn {
    font-size: 18px;
    padding: 12px 28px;
  }
}

/*  Tablets */
@media (max-width: 992px) {
  .facility-card {
    width: 280px;
    height: 230px;
    padding: 1rem;
  }
  .facility-card img {
    width: 60px;
    margin-bottom: 10px;
  }
  .facility-card p {
    font-size: 13px;
  }
  .facility-btn {
    font-size: 17px;
    padding: 10px 26px;
  }
}

/* Mobile  */
@media (max-width: 768px) {
  .facility-card {
    width: 280px;
    height: 230px;
    padding: 1rem;
  }
  .facility-card img {
    width: 50px;
    margin-bottom: 10px;
  }
  .facility-card p {
    font-size: 18px;
  }
  .facility-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .facility-card {
    width: 260px;
    height: 230px;
    padding: 0.7rem;
  }
  .facility-card img {
    width: 50px;
  }
  .facility-card p {
    font-size: 18px;
  }
  .facility-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 360px) {
  .facility-card {
    width: 220px;
    height: 180px;
  }
  .facility-card img {
    width: 50px;
  }
  .facility-card p {
    font-size: 14px;
  }
  .facility-btn {
    font-size: 13px;
    padding: 7px 18px;
  }
}

/* Service Card */

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.25s;
}
.service-card:nth-child(3) {
  animation-delay: 0.4s;
}
.service-card:nth-child(4) {
  animation-delay: 0.55s;
}
.service-card:nth-child(5) {
  animation-delay: 0.7s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
  background: #f8ffff;
}

.service-card img {
  animation: floatUpDown 3s ease-in-out infinite;
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.15) translateY(-15px);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 10px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #000;
}

.service-card p {
  font-size: 13px;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  max-width: 200px;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/*  Tablets */
@media (max-width: 992px) {
  .service-card {
    max-width: 340px;
    max-height: 340px;
    padding: 1.8rem 1.4rem;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
  }
  .service-card img {
    width: 100px;
    height: 100px;
  }
  .service-card h3 {
    font-size: 1.4rem;
    text-align: center;
  }
  .service-card p {
    font-size: 0.95rem;
    text-align: center;
  }
}

/*  Tablets */
@media (max-width: 778px) {
  .service-card {
    max-width: 340px;
    max-height: 340px;
    padding: 1.8rem 1.4rem;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
  }
  .service-card img {
    width: 100px;
    height: 100px;
  }
  .service-card h3 {
    font-size: 1.4rem;
    text-align: center;
  }
  .service-card p {
    font-size: 0.95rem;
    text-align: center;
  }
}

/* Mobile*/
@media (max-width: 576px) {
  .service-card {
    max-width: 340px;
    max-height: 340px;
    padding: 1.5rem 1rem;
    margin: 12px auto;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
    flex-direction: column;
  }
  .service-card img {
    width: 85px;
    height: 85px;
  }
  .service-card h3 {
    font-size: 20px;
    text-align: center;
  }
  .service-card p {
    font-size: 17px;
    text-align: center;
    max-width: 270px;
  }
}

/* small mobile */
@media (max-width: 400px) {
  .service-card {
    max-width: 300px;
    max-height: 300px;
    padding: 1.2rem 0.8rem;
    margin: 10px auto;
    display: flex;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .service-card img {
    width: 80px;
    height: 80px;
  }
  .service-card h3 {
    font-size: 20px;
    text-align: center;
  }
  .service-card p {
    font-size: 17px;
    text-align: center;
    max-width: 270px;
  }
}

.section-subtitle3 {
  font-size: 18px;
  color: #000;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

/* hire decription*/
.hire-description {
  max-width: 800px;
  color: black;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-family);
}

/* Tablets */
@media (max-width: 992px) {
  .hire-description {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hire-description {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hire-description {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

.navbar-brand4 {
  font-size: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
}

.navbar-brand4 span {
  color: var(--primary-color);
}

/* webhero section */

.webhero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.webhero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.webhero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Terms and condition */
.terms {
  position: relative;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.terms-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.terms-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Content */
.webhero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  color: #fff;
}

.webhero-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
}

.webhero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
}

.webhero-title2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-color);
}

.webhero-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 35px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.webhero-btn:hover {
  background-color: #000;
  color: var(--primary-color);
  box-shadow: 0px 0px 15px var(--primary-color);
  transform: translateY(-4px);
}

/* Tablets */
@media (max-width: 992px) {
  .webhero-title {
    font-size: 2rem;
  }
  .webhero-subtitle {
    font-size: 1.5rem;
  }
  .webhero-btn {
    width: 220px;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .webhero {
    height: 50vh;
    text-align: center;
    justify-content: center;
  }

  .webhero-content {
    text-align: center;
  }

  .webhero-title {
    font-size: 1.8rem;
  }

  .webhero-subtitle {
    font-size: 1.3rem;
  }

  .webhero-btn {
    width: 100%;
    max-width: 250px;
    padding: 12px;
  }
}

.webdev-sectionavbar-brand4 {
  background-color: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.webdev-title {
  font-size: 2rem;
  font-weight: 700;
  color: #20bab7;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}

.webdev-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #20bab7;
}

.webdev-text {
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

.webdev-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.webdev-list li {
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.webdev-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.webdev-image-wrapper img {
  width: 100%;
  height: 535px;
  transition: transform 0.5s ease;
}

.webdev-image-wrapper:hover img {
  transform: scale(1.05);
}

/* app dev img*/

.appdev-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.appdev-image-wrapper img {
  width: 100%;
  height: 335px;
  transition: transform 0.5s ease;
}

.appdev-image-wrapper:hover img {
  transform: scale(1.05);
}

/* all in one dev img*/

.allinonedev-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.allinonedev-image-wrapper img {
  width: 100%;
  height: 480px;
  transition: transform 0.5s ease;
}

.allinonedev-image-wrapper:hover img {
  transform: scale(1.05);
}

/* webhost img*/
.webhost-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.webhost-image-wrapper img {
  width: 100%;
  height: 355px;
  transition: transform 0.5s ease;
}

.webhost-image-wrapper:hover img {
  transform: scale(1.05);
}

/* cloud img*/

.cloud-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.cloud-image-wrapper img {
  width: 100%;
  height: 353px;
  transition: transform 0.5s ease;
}

.cloud-image-wrapper:hover img {
  transform: scale(1.05);
}

/* aws img*/

.aws-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.aws-image-wrapper img {
  width: 100%;
  height: 530px;
  transition: transform 0.5s ease;
}

.aws-image-wrapper:hover img {
  transform: scale(1.05);
}

/* cloudmigration-image-wrapper img*/

.cloudmigration-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.cloudmigration-image-wrapper img {
  width: 100%;
  height: 460px;
  transition: transform 0.5s ease;
}

.cloudmigration-image-wrapper:hover img {
  transform: scale(1.05);
}

/* bussiness-image-wrapper img*/

.bussiness-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.bussiness-image-wrapper img {
  width: 100%;
  height: 530px;
  transition: transform 0.5s ease;
}

.bussiness-image-wrapper:hover img {
  transform: scale(1.05);
}

/* digital-image-wrapper img*/

.digital-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.digital-image-wrapper img {
  width: 100%;
  height: 435px;
  transition: transform 0.5s ease;
}

.digital-image-wrapper:hover img {
  transform: scale(1.05);
}

/*socialmedia-image-wrapper img*/

.socialmedia-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.socialmedia-image-wrapper img {
  width: 100%;
  height: 425px;
  transition: transform 0.5s ease;
}

.socialmedia-image-wrapper:hover img {
  transform: scale(1.05);
}

/*seo-image-wrapper img*/

.seo-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.seo-image-wrapper img {
  width: 100%;
  height: 385px;
  transition: transform 0.5s ease;
}

.seo-image-wrapper:hover img {
  transform: scale(1.05);
}

/*branding-image-wrapper img*/

.branding-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.branding-image-wrapper img {
  width: 100%;
  height: 450px;
  transition: transform 0.5s ease;
}

.branding-image-wrapper:hover img {
  transform: scale(1.05);
}

/*functional-image-wrapper img*/

.functional-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.functional-image-wrapper img {
  width: 100%;
  height: 500px;
  transition: transform 0.5s ease;
}

.functional-image-wrapper:hover img {
  transform: scale(1.05);
}

/*integration-image-wrapper img*/

.integration-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.integration-image-wrapper img {
  width: 100%;
  height: 510px;
  transition: transform 0.5s ease;
}

.integration-image-wrapper:hover img {
  transform: scale(1.05);
}

/*automation-image-wrapper img*/

.automation-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.automation-image-wrapper img {
  width: 100%;
  height: 510px;
  transition: transform 0.5s ease;
}

.automation-image-wrapper:hover img {
  transform: scale(1.05);
}

/*uiux-image-wrapper img*/

.uiux-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.uiux-image-wrapper img {
  width: 100%;
  height: 375px;
  transition: transform 0.5s ease;
}

.uiux-image-wrapper:hover img {
  transform: scale(1.05);
}

/*graphic-image-wrapper img*/

.graphic-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.graphic-image-wrapper img {
  width: 100%;
  height: 330px;
  transition: transform 0.5s ease;
}

.graphic-image-wrapper:hover img {
  transform: scale(1.05);
}

/*designthinking-image-wrapper img*/

.designthinking-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.designthinking-image-wrapper img {
  width: 100%;
  height: 457px;
  transition: transform 0.5s ease;
}

.designthinking-image-wrapper:hover img {
  transform: scale(1.05);
}

/*product-image-wrapper img*/

.product-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.product-image-wrapper img {
  width: 100%;
  height: 495px;
  transition: transform 0.5s ease;
}

.product-image-wrapper:hover img {
  transform: scale(1.05);
}

/*product-image-wrapper img*/

.agile-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.agile-image-wrapper img {
  width: 100%;
  height: 450px;
  transition: transform 0.5s ease;
}

.agile-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Tablets */
@media (min-width: 1440px) {
  .webdev-image-wrapper img {
    width: 100%;
    height: 445px;
    transition: transform 0.5s ease;
  }

  .appdev-image-wrapper img {
    width: 100%;
    height: 320px;
    transition: transform 0.5s ease;
  }

  .allinonedev-image-wrapper img {
    width: 100%;
    height: 385px;
    transition: transform 0.5s ease;
  }

  .webhost-image-wrapper img {
    width: 100%;
    height: 335px;
    transition: transform 0.5s ease;
  }

  .cloud-image-wrapper img {
    width: 100%;
    height: 320px;
    transition: transform 0.5s ease;
  }

  .aws-image-wrapper img {
    width: 100%;
    height: 460px;
    transition: transform 0.5s ease;
  }

  .cloudmigration-image-wrapper img {
    width: 100%;
    height: 410px;
    transition: transform 0.5s ease;
  }

  .bussiness-image-wrapper img {
    width: 100%;
    height: 490px;
    transition: transform 0.5s ease;
  }

  .digital-image-wrapper img {
    width: 100%;
    height: 360px;
    transition: transform 0.5s ease;
  }

  .socialmedia-image-wrapper img {
    width: 100%;
    height: 400px;
    transition: transform 0.5s ease;
  }

  .seo-image-wrapper img {
    width: 100%;
    height: 335px;
    transition: transform 0.5s ease;
  }

  .branding-image-wrapper img {
    width: 100%;
    height: 410px;
    transition: transform 0.5s ease;
  }

  .functional-image-wrapper img {
    width: 100%;
    height: 440px;
    transition: transform 0.5s ease;
  }

  .integration-image-wrapper img {
    width: 100%;
    height: 450px;
    transition: transform 0.5s ease;
  }

  .automation-image-wrapper img {
    width: 100%;
    height: 430px;
    transition: transform 0.5s ease;
  }

  .uiux-image-wrapper img {
    width: 100%;
    height: 360px;
    transition: transform 0.5s ease;
  }

  .graphic-image-wrapper img {
    width: 100%;
    height: 310px;
    transition: transform 0.5s ease;
  }

  .designthinking-image-wrapper img {
    width: 100%;
    height: 357px;
    transition: transform 0.5s ease;
  }

  .product-image-wrapper img {
    width: 100%;
    height: 380px;
    transition: transform 0.5s ease;
  }

  .agile-image-wrapper img {
    width: 100%;
    height: 450%;
    transition: transform 0.5s ease;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .webdev-image-wrapper img {
    width: 100%;
    height: 555px;
    transition: transform 0.5s ease;
  }

  .appdev-image-wrapper img {
    width: 100%;
    height: 430px;
    transition: transform 0.5s ease;
  }

  .allinonedev-image-wrapper img {
    width: 100%;
    height: 560px;
    transition: transform 0.5s ease;
  }

  .webhost-image-wrapper img {
    width: 100%;
    height: 440px;
    transition: transform 0.5s ease;
  }

  .cloud-image-wrapper img {
    width: 100%;
    height: 355px;
    transition: transform 0.5s ease;
  }

  .aws-image-wrapper img {
    width: 100%;
    height: 575px;
    transition: transform 0.5s ease;
  }

  .cloudmigration-image-wrapper img {
    width: 100%;
    height: 585px;
    transition: transform 0.5s ease;
  }

  .bussiness-image-wrapper img {
    width: 100%;
    height: 610px;
    transition: transform 0.5s ease;
  }

  .digital-image-wrapper img {
    width: 100%;
    height: 530px;
    transition: transform 0.5s ease;
  }

  .socialmedia-image-wrapper img {
    width: 100%;
    height: 545px;
    transition: transform 0.5s ease;
  }

  .seo-image-wrapper img {
    width: 100%;
    height: 485px;
    transition: transform 0.5s ease;
  }

  .branding-image-wrapper img {
    width: 100%;
    height: 550px;
    transition: transform 0.5s ease;
  }

  .functional-image-wrapper img {
    width: 100%;
    height: 600px;
    transition: transform 0.5s ease;
  }

  .integration-image-wrapper img {
    width: 100%;
    height: 610px;
    transition: transform 0.5s ease;
  }

  .automation-image-wrapper img {
    width: 100%;
    height: 580px;
    transition: transform 0.5s ease;
  }

  .uiux-image-wrapper img {
    width: 100%;
    height: 460px;
    transition: transform 0.5s ease;
  }

  .graphic-image-wrapper img {
    width: 100%;
    height: 450px;
    transition: transform 0.5s ease;
  }

  .designthinking-image-wrapper img {
    width: 100%;
    height: 530px;
    transition: transform 0.5s ease;
  }

  .product-image-wrapper img {
    width: 100%;
    height: 580px;
    transition: transform 0.5s ease;
  }

  .agile-image-wrapper img {
    width: 100%;
    height: 500px;
    transition: transform 0.5s ease;
  }
}

@media (max-width: 992px) {
  .webdev-title {
    font-size: 1.7rem;
  }
  .webdev-subtitle {
    font-size: 1.25rem;
  }
}

/* Expertise2 Section  */
.expertise2 {
  background-color: var(--light-bg);
  font-family: "Montserrat", sans-serif;
}

.expertise2 h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.expertise2-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  /* transform: translateY(0); */
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.expertise2-card:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

.expertise2-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expertise2-card:hover img {
  transform: scale(1.1);
}

.expertise2-content {
  padding: 20px;
  text-align: left;
}

.expertise2-content .title3 {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
}

.expertise2-content p {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .expertise2 h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .expertise2-card img {
    height: 180px;
  }
  .webdev-image-wrapper img {
    width: 100%;
    height: 350px;
    transition: transform 0.5s ease;
  }
}

/*Web Development Process */
.webdev-process {
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.webdev-card {
  background: #fff;
  font-family: "Montserrat", sans-serif;
  border-radius: 12px;
  border: 1px solid #20bab7;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  width: 100%;
  max-width: 260px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
  box-sizing: border-box;
  position: relative;
}

.webdev-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.5s ease;
}

.webdev-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.webdev-card:hover {
  transform: scale(1.07) translateY(-10px);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}
.webdev-card:hover img {
  transform: scale(1.15);
}

.btn-md2 {
  background-color: var(--primary-color);
}
.btn-md2 a {
  color: white;
}

.col-lg-3.d-flex.flex-column {
  align-items: center !important;
  gap: 25px !important;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .col-lg-3.d-flex.flex-column {
    margin: 0 !important;
    gap: 20px !important;
  }

  .webdev-card {
    width: 100%;
    max-width: 90%;
    height: auto;
    padding: 1.5rem !important;
    margin: 50px auto !important;
    box-sizing: border-box;
  }
}

.arrow {
  position: absolute;
  width: 100px;
  opacity: 0.9;
  z-index: 1;
  transition: all 0.4s ease;
}

/* Arrows Positions */
#arrow1 {
  top: 8%;
  left: 29%;
  transform: rotate(-10deg);
}
#arrow2 {
  top: 8%;
  left: 62%;
  transform: rotate(60deg);
}
#arrow3 {
  top: 24%;
  left: 79%;
  transform: rotate(120deg);
}
#arrow4 {
  top: 40%;
  left: 62%;
  transform: rotate(180deg);
}
#arrow5 {
  top: 41%;
  left: 29%;
  transform: rotate(252deg);
}
#arrow6 {
  top: 54%;
  left: 13%;
  transform: rotate(120deg);
}
#arrow7 {
  top: 72%;
  left: 29%;
  transform: rotate(60deg);
}
#arrow8 {
  top: 74%;
  left: 62%;
  transform: rotate(-10deg);
}
#arrow9 {
  top: 8%;
  left: 29%;
  transform: rotate(-10deg);
}
#arrow10 {
  top: 8%;
  left: 62%;
  transform: rotate(60deg);
}
#arrow11 {
  top: 34%;
  left: 79%;
  transform: rotate(120deg);
}
#arrow12 {
  top: 60%;
  left: 62%;
  transform: rotate(180deg);
}
#arrow13 {
  top: 60%;
  left: 29%;
  transform: rotate(250deg);
}

#arrow14 {
  top: 60%;
  left: 13%;
  transform: rotate(120deg);
}

#arrow15 {
  top: 27%;
  left: 22.5%;
  transform: rotate(30deg);
}
#arrow16 {
  top: 27%;
  left: 44.3%;
  transform: rotate(30deg);
}
#arrow17 {
  top: 27%;
  left: 66%;
  transform: rotate(30deg);
}
#arrow18 {
  top: 46%;
  left: 72%;
  transform: rotate(120deg);
}
#arrow19 {
  top: 64%;
  left: 55%;
  transform: rotate(210deg);
}
#arrow20 {
  top: 64%;
  left: 33%;
  transform: rotate(210deg);
}

.hover-btn:hover {
  background-color: #20bab7;
  color: #fff !important;
}
@media (max-width: 991px) {
  .webdev-card {
    height: auto;
  }
}

/* Large desktops */
@media (min-width: 1600px) {
  .webdev-card {
    max-width: 300px;
    height: 220px;
  }

  .webdev-card img {
    width: 80px;
    height: 80px;
  }

  .webdev-card h3 {
    font-size: 20px;
  }

  .arrow {
    width: 120px;
  }
}

@media (max-width: 992px) {
  .webdev-card {
    max-width: 92%;
    width: 300px;
    height: 300px;
    padding: 1.2rem;
    margin: 15px auto;
  }

  .webdev-card img {
    width: 60px;
    height: 60px;
  }

  .webdev-card h3 {
    font-size: 24px;
  }

  .col-lg-3.d-flex.flex-column {
    gap: 18px !important;
  }

  /* Compact Arrow Layout */
  #arrow1 {
    top: 10%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow2 {
    top: 21%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow3 {
    top: 32%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow4 {
    top: 44%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow5 {
    top: 55%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow6 {
    top: 65.7%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow7 {
    top: 77%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow8 {
    top: 88%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow9 {
    top: 15%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow10 {
    top: 32%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow11 {
    top: 48%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow12 {
    top: 65%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow13 {
    top: 82%;
    left: 43%;
    transform: rotate(120deg);
  }
}

@media (max-width: 768px) {
  .webdev-card {
    max-width: 92%;
    width: 300px;
    height: 300px;
    padding: 1.2rem;
    margin: 15px auto;
  }

  .webdev-card img {
    width: 60px;
    height: 60px;
  }

  .webdev-card h3 {
    font-size: 24px;
  }

  .col-lg-3.d-flex.flex-column {
    gap: 18px !important;
  }

  /* Compact Arrow Layout */
  #arrow1 {
    top: 10%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow2 {
    top: 21%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow3 {
    top: 32.5%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow4 {
    top: 43%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow5 {
    top: 54.5%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow6 {
    top: 65.7%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow7 {
    top: 76.5%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow8 {
    top: 88%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow9 {
    top: 15%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow10 {
    top: 32%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow11 {
    top: 48%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow12 {
    top: 65%;
    left: 43%;
    transform: rotate(120deg);
  }
  #arrow13 {
    top: 82%;
    left: 43%;
    transform: rotate(120deg);
  }
}

/*
   SMALL MOBILE DEVICES */
@media (max-width: 592px) {
  .webdev-card {
    max-width: 95%;
    width: 300px;
    height: 265px;
    padding: 1rem;
    margin: 12px auto;
  }

  .webdev-card img {
    width: 70px;
    height: 70px;
  }

  .webdev-card h3 {
    font-size: 24px;
  }

  .col-lg-3.d-flex.flex-column {
    gap: 15px !important;
  }

  /* Compact Arrow Layout */
  #arrow1 {
    top: 10%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow2 {
    top: 21%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow3 {
    top: 32%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow4 {
    top: 43%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow5 {
    top: 54.5%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow6 {
    top: 65.7%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow7 {
    top: 76.5%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow8 {
    top: 88%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow9 {
    top: 15%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow10 {
    top: 32%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow11 {
    top: 48%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow12 {
    top: 65%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow13 {
    top: 82%;
    left: 40%;
    transform: rotate(120deg);
  }
}

/*  SMALL MOBILE DEVICES */
@media (max-width: 480px) {
  .webdev-card {
    max-width: 95%;
    width: 300px;
    height: 265px;
    padding: 1rem;
    margin: 12px auto;
  }

  .webdev-card img {
    width: 70px;
    height: 70px;
  }

  .webdev-card h3 {
    font-size: 24px;
  }

  .col-lg-3.d-flex.flex-column {
    gap: 15px !important;
  }

  /* Compact Arrow Layout */
  #arrow1 {
    top: 10%;
    left: 37%;
    transform: rotate(120deg);
  }
  #arrow2 {
    top: 21%;
    left: 37%;
    transform: rotate(120deg);
  }
  #arrow3 {
    top: 32%;
    left: 37%;
    transform: rotate(120deg);
  }
  #arrow4 {
    top: 43%;
    left: 37%;
    transform: rotate(120deg);
  }
  #arrow5 {
    top: 54.5%;
    left: 37%;
    transform: rotate(120deg);
  }
  #arrow6 {
    top: 65.7%;
    left: 37%;
    transform: rotate(120deg);
  }
  #arrow7 {
    top: 76.5%;
    left: 37%;
    transform: rotate(120deg);
  }
  #arrow8 {
    top: 88%;
    left: 37%;
    transform: rotate(120deg);
  }
  #arrow9 {
    top: 15%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow10 {
    top: 32%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow11 {
    top: 48%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow12 {
    top: 65%;
    left: 40%;
    transform: rotate(120deg);
  }
  #arrow13 {
    top: 82%;
    left: 40%;
    transform: rotate(120deg);
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .webdev-card {
    max-width: 100%;
    width: 250px;
    height: 250px;
    padding: 0.9rem;
    margin: 10px auto;
  }

  .webdev-card img {
    width: 60px;
    height: 60px;
  }

  .webdev-card h3 {
    font-size: 24px;
  }

  /* Compact Arrow Layout */
  #arrow1 {
    top: 10%;
    left: 31%;
    transform: rotate(120deg);
  }
  #arrow2 {
    top: 21%;
    left: 31%;
    transform: rotate(120deg);
  }
  #arrow3 {
    top: 32%;
    left: 31%;
    transform: rotate(120deg);
  }
  #arrow4 {
    top: 44%;
    left: 31%;
    transform: rotate(120deg);
  }
  #arrow5 {
    top: 55%;
    left: 31%;
    transform: rotate(120deg);
  }
  #arrow6 {
    top: 65.7%;
    left: 31%;
    transform: rotate(120deg);
  }
  #arrow7 {
    top: 77%;
    left: 31%;
    transform: rotate(120deg);
  }
  #arrow8 {
    top: 88%;
    left: 31%;
    transform: rotate(120deg);
  }
  #arrow9 {
    top: 15%;
    left: 33%;
    transform: rotate(120deg);
  }
  #arrow10 {
    top: 32%;
    left: 33%;
    transform: rotate(120deg);
  }
  #arrow11 {
    top: 48%;
    left: 33%;
    transform: rotate(120deg);
  }
  #arrow12 {
    top: 65%;
    left: 33%;
    transform: rotate(120deg);
  }
  #arrow13 {
    top: 82%;
    left: 33%;
    transform: rotate(120deg);
  }
}
.btnnew-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnnew {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btnnew:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.job-section {
  padding: 3rem 1rem;
}

.search-input {
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  border: 2px solid #000;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #20bab7;
}

.search-btn {
  background-color: #21bab5;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  border: none;
  transition: background-color 0.3s ease-in-out;
}

.search-btn:hover {
  background-color: #20bab7c7;
}

.resume-btn {
  width: 100%;
  max-width: 271px;
  height: 60px;
  border: 2px solid #20bab7;
  background-color: transparent;
  color: #20bab7;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.resume-btn:hover {
  background-color: #20bab7;
  color: #fff;
}

@media (min-width: 576px) {
  .search-input {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .search-input {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .search-input {
    width: 30%;
  }
}

.blog-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .blog-section {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
}

.blog-empty h2 {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 1rem;
}

.blog-empty p {
  color: #000000;
  font-size: 1rem;
}

.blog-pagination-btn {
  background-color: #20bab7;
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.blog-pagination-btn:hover {
  background-color: #1aa8a4;
}

/* Modal */
.custom-modal .modal-dialog {
  max-width: 100%;
  margin: auto;
}

@media (max-width: 991px) {
  .custom-modal .modal-dialog {
    max-width: 90%;
  }
}

.custom-modal .modal-dialog {
  max-width: 900px;
  width: 100%;
  margin: 1.5rem auto;
}

.custom-modal .modal-content {
  background: linear-gradient(
    100deg,
    #e1f9f7,
    #ffffff
  ); /* gradient background */
  border-radius: 10px;
  color: black;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;

  /* Scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: #20bab7 #f1f1f1;
}

.custom-modal .modal-content::-webkit-scrollbar {
  width: 8px;
}
.custom-modal .modal-content::-webkit-scrollbar-thumb {
  background-color: #20bab7;
  border-radius: 10px;
}
.custom-modal .modal-content::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffffff;
  padding: 6px 12px;
  cursor: pointer;
  border: none;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10;
}

.text-primary-custom {
  color: #20bab7 !important;
}
.border-primary-custom {
  border-color: #20bab7 !important;
}

.time-btn {
  border: 1.5px solid #20bab7;
  color: #20bab7;
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
  width: 230px;
}
.time-btn:hover {
  background: #20bab7;
  color: #fff;
}
.time-btn.selected {
  background: #20bab7;
  color: #fff;
  font-weight: 600;
}

.next-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid #20bab7;
  /* background: transparent; */
  font-weight: 700;
  border-radius: 6px;
  padding: 10px 16px;
  width: 80%;
  max-width: 200px;
  transition: all 0.3s ease;
}
.next-btn:hover:not(:disabled) {
  background-color: #000;
  color: var(--primary-color);
  box-shadow: 0 0 12px var(--secondary-color);
}
.next-btn:disabled {
  background-color: #ccc;
  border-color: #999;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.custom-modal .col-lg-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.date-time-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
}
.date {
  font-size: 20px;
  font-weight: 700;
}

.calendar-wrapper {
  width: 97%;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

.flatpickr-calendar {
  background: linear-gradient(100deg, #e7f5f4, #ffffff) !important;
  border: 1.5px solid var(--primary-color) !important;
  overflow: hidden;
  font-family: var(--font-family);
}

.flatpickr-months {
  color: black !important;
}

.flatpickr-current-month {
  font-weight: 600;
  font-size: 16px !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  color: #000000 !important;
  fill: #000000 !important;
  opacity: 1;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  opacity: 1;
}

.flatpickr-weekdays {
  background: linear-gradient(100deg, #ebf7f6, #eaf7f5) !important;
}

span.flatpickr-weekday {
  color: black !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.flatpickr-day {
  color: #333 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease;
}

.flatpickr-day:hover {
  background: var(--primary-color) !important;
  color: black !important;
}

.flatpickr-day.selected {
  background: #216ba5 !important;
  color: #fff !important;
  border: none !important;
}

.flatpickr-day.today {
  background: rgba(32, 186, 183, 0.15) !important;
  border: 2px solid #20bab7 !important;
  color: #20bab7 !important;
  font-weight: 600;
}

.flatpickr-day.today.selected {
  background: #216ba5 !important;
  border: 2px solid #20bab7 !important;
  color: #fff !important;
}

.flatpickr-day.disabled {
  color: #ccc !important;
  background: #f7f7f7 !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.disabled,
.flatpickr-day[aria-disabled="true"] {
  color: #bcbcbc !important;
  opacity: 0.6 !important;
}

.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.disabled:hover,
.flatpickr-day[aria-disabled="true"]:hover {
  color: #bcbcbc !important;
  border: none !important;
  cursor: not-allowed !important;
}

.flatpickr-calendar.inline {
  width: 100% !important;
  background: transparent;
  box-shadow: none;
}
.flatpickr-day.selected {
  background: var(--primary-color) !important;
  color: #fff !important;
}
.flatpickr-weekday {
  color: #20bab7;
  font-weight: 600;
}
.flatpickr-months .flatpickr-month {
  background: linear-gradient(
    100deg,
    #e1f9f7,
    #b6f4ea
  ); /* gradient background */
  color: black;
}

@media (max-width: 480px) {
  .flatpickr-calendar {
    font-size: 13px;
    border-radius: 10px;
  }
}

/*Timezone Dropdown */
.timezone-wrapper {
  width: 100%;

  max-width: 360px;
  margin: 0 auto;
  font-family: var(--font-family);
}

.timezone-wrapper h6 {
  font-size: 15px;
  color: #222;
}

.custom-timezone-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 44px 12px 48px;
  font-size: 15px;
  border: 2px solid #20bab7;
  border-radius: 10px;
  background: linear-gradient(100deg, #e1efee, #e8fbfb);
  color: #333;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-timezone-select:hover {
  background-color: #f1fafa;
  border-color: #17a2a0;
}

.custom-timezone-select:focus {
  border-color: #0abab5;
  box-shadow: 0 0 0 3px rgba(32, 186, 183, 0.25);
  outline: none;
  background-color: #fff;
}

.custom-timezone-select option {
  background: #fff;
  color: #000;
  font-weight: 500;
}

.custom-timezone-select option:hover,
.custom-timezone-select option:checked,
.custom-timezone-select option:focus {
  background-color: #20bab7 !important;
  color: #fff !important;
}

.globe-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #20bab7;
  pointer-events: none;
}

.dropdown-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #20bab7;
  pointer-events: none;
}

@media (max-width: 480px) {
  .custom-timezone-select {
    font-size: 14px;
    padding: 10px 40px 10px 44px;
  }
}

@media (max-width: 992px) {
  .custom-modal .modal-dialog {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .custom-modal .modal-dialog {
    max-width: 100%;
    margin: 1rem auto;
  }

  .custom-modal .modal-content {
    padding: 1rem;
    max-height: 90vh;
    border-radius: 10px;
  }

  .custom-modal .col-lg-4 {
    border: none !important;
    margin-bottom: 1.5rem;
  }

  .calendar-container {
    max-width: 100%;
    min-height: 280px;
  }

  .timezone-wrapper,
  .calendar-wrapper {
    max-width: 100%;
  }

  .calendar-wrapper {
    order: 1;
  }
  .timezone-wrapper {
    order: 2;
  }
  .modal-right-content {
    order: 3;
  }
}

@media (max-width: 480px) {
  .custom-modal .modal-content {
    padding: 0.75rem;
    border-radius: 8px;
    max-height: 92vh;
    margin: 0 10px;
  }

  .calendar-wrapper {
    min-height: 240px;
  }
}

/* SECOND SCHEDULE */
.secondschedule-modal-content {
  background: #f9f9f9;
  border-radius: 12px;
  color: #222;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.secondschedule-close,
.secondschedule-back {
  position: absolute;
  top: 1rem;
  background: transparent;
  border: none;
  opacity: 0.6;
  color: #000;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.25s ease;
}

#guestEmailsContainer {
  transition: all 0.3s ease;
}

.secondschedule-close:hover,
.secondschedule-back:hover {
  color: var(--primary-color);
}

.secondschedule-close {
  right: 1.5rem;
}

.secondschedule-back {
  left: 1.5rem;
}

.secondschedule-logo {
  width: 130px;
  height: auto;
  /* margin-bottom: 1rem; */
}

.secondschedule-title {
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  /* line-height: 1.3; */
  margin-bottom: 1.5rem;
}

.secondschedule-texts {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.secondschedule-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.secondschedule-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.9;
}

.secondschedule-item p {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.secondschedule-input {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  width: 100%;
  transition: all 0.3s ease;
  background-color: #fff;
}

.secondschedule-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(32, 186, 183, 0.15);
  outline: none;
}

/* Buttons */
.secondschedule-btn-outline {
  border: 1.6px solid var(--primary-color);
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  padding: 9px 20px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.secondschedule-btn-outline:hover {
  background: black;
  color: var(--primary-color);
  box-shadow: 0 0 12px var(--secondary-color);
  transform: translateY(-1px);
}

.secondschedule-btn-primary {
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 9px 22px;
  border: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.secondschedule-btn-primary:hover {
  background: #18a7a4;
  transform: translateY(-1px);
}

/* Footer Text */
.secondschedule-footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-top: 1rem;
}

.secondschedule-footer-text a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.secondschedule-footer-text a:hover {
  color: #18a7a4;
  text-decoration: underline;
}

.vertical-line-container {
  position: relative;
  width: 30px;
  height: 750px;
  display: flex;
  justify-content: center;
  margin: auto;
}

.vertical-line {
  width: 3px;
  height: 830px;
  background: #000;
  border-radius: 5px;
  position: relative;
}

.vertical-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.vertical-dot.black {
  background-color: #000;
}

.vertical-dot.black-light {
  background-color: rgba(0, 0, 0, 0.5);
}

.vertical-dot.red {
  background-color: #dc3545;
}

.vertical-dot.blue {
  background-color: #4463b1;
}

/* Dot positions */
.vertical-dot.top-0 {
  top: 0;
}
.vertical-dot.q1 {
  top: 25%;
}
.vertical-dot.q2 {
  top: 50%;
}
.vertical-dot.q3 {
  top: 75%;
}
.vertical-dot.bottom-0 {
  bottom: 0;
}

/* Extra dots below the main line */
.vertical-dot.below-1 {
  bottom: -80px;
}
.vertical-dot.below-2 {
  bottom: -220px;
}
.vertical-dot.below-3 {
  bottom: -320px;
}
.vertical-dot.below-4 {
  bottom: -400px;
}
.vertical-dot.below-5 {
  bottom: -480px;
}

@media (max-width: 992px) {
  .secondschedule-modal-content {
    padding: 2rem 1.5rem;
  }

  .secondschedule-title {
    text-align: center;
  }

  .secondschedule-texts {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .secondschedule-item {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .secondschedule-btn-outline,
  .secondschedule-btn-primary {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .secondschedule-logo {
    height: 100px;
  }

  .secondschedule-modal-content {
    padding: 3rem 2.5rem;
  }
}

/*HIRE SECTION  */

.hire-card {
  width: 180px;
  border: 2px solid var(--primary-color);
  height: 170px;
}
.hire-card:hover {
  transform: scale(1.03); /* Zoom-in effect */
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}
.hire-middle:hover {
  transform: scale(1.03); /* Zoom-in effect */
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

.hire-card:last-child {
  width: 200px;
  height: 200px;
}

.hire-img {
  width: 100px;
  margin-top: -1rem;
  margin-bottom: 20px;
}

.hire-middle {
  width: 380px;
  border: 2px solid var(--primary-color);
  height: 190px;
}

.hire-subtext {
  font-size: 10px;
  margin: 0;
}

.hire-text {
  font-size: 15px;
}
@media (max-width: 1200px) {
  .hire-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }

  .hire-left,
  .hire-right {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
  }

  .hire-middle {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50% !important;
    height: auto !important;
  }

  .hire-card {
    width: 90% !important;
    height: auto !important;
    margin-top: 0 !important;
  }

  .hire-img {
    margin-top: 0 !important;
    width: 90px !important;
  }

  .hire-section {
    padding: 2rem 1rem;
    min-height: auto !important;
  }

  .hire-text {
    font-size: 14px !important;
  }

  .hire-subtext {
    font-size: 10px !important;
    max-width: 200px;
  }
}

@media (max-width: 991px) {
  .hire-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }

  .hire-left,
  .hire-right {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
  }

  .hire-middle {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 80% !important;
    height: auto !important;
  }

  .hire-card {
    width: 90% !important;
    height: auto !important;
    margin-top: 0 !important;
  }

  .hire-img {
    margin-top: 0 !important;
    width: 90px !important;
  }

  .hire-section {
    padding: 2rem 1rem;
    min-height: auto !important;
  }

  .hire-text {
    font-size: 14px !important;
  }

  .hire-subtext {
    font-size: 10px !important;
    max-width: 200px;
  }
}
.text-primary-custom {
  color: #20bab7 !important;
}

.btn-primary-custom {
  background-color: #20bab7;
  border: none;
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: black;
  color: var(--primary-color);
  box-shadow: 0 0 12px var(--secondary-color);
}

.iti {
  width: 100%;
}

.iti__selected-flag {
  border-radius: 6px 0 0 6px;
}

.iti__country-list {
  max-height: 300px;
  max-width: 300px;
  overflow-y: auto;
  z-index: 10;
}

.phone-input .iti {
  width: 100%;
}

.phone-input .iti__selected-flag {
  border-radius: 6px 0 0 6px;
}

.phone-input .iti__country-list {
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
}

.phone-field .iti {
  width: 100%;
}
.phone-field .iti__selected-flag {
  border-radius: 6px 0 0 6px;
}
.phone-field .iti__country-list {
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
}

/* FAQ */
.custom-faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-faq .accordion-button {
  background: linear-gradient(
    100deg,
    #e1f9f7,
    #ffffff
  ); /* gradient background */
  font-weight: 600;
  font-size: 16px;
  padding: 15px 20px;
  color: #333;
  box-shadow: none !important;
  position: relative;
}

.custom-faq .accordion-button:focus {
  box-shadow: none;
}

.custom-faq .accordion-button::after {
  content: "+";
  font-size: 13px;
  color: #000000;
  background: none;
  transform: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-faq .accordion-button:not(.collapsed)::after {
  content: "-";
}

.custom-faq .accordion-body {
  padding: 15px 20px;
  background: #d1e9e5;
  color: #000000;
  font-size: 15px;
  line-height: 1.6;
  border-top: 1px solid #eee;
}

.faq-wrapper {
  max-width: 800px;
  padding: 20px;
}

.faq-wrapper h3 {
  text-align: center;
}

/* contact form */

form .form-control {
  border: 1.8px solid #ccc;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(32, 186, 183, 0.2);
  outline: none;
}

form .form-label {
  color: black;
  font-weight: 600;
  font-family: var(--font-family);
  font-size: 14px;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: black;
  color: var(--primary-color);
  box-shadow: 0 0 12px var(--secondary-color);
}

@media (min-width: 1200px) {
  .faq-wrapper {
    max-width: 900px;
  }

  form .form-control {
    font-size: 16px;
    padding: 12px 15px;
  }
}

@media (max-width: 1199px) {
  .faq-wrapper {
    max-width: 700px;
  }

  form {
    padding: 2rem !important;
  }

  form .form-control {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper {
    max-width: 100%;
    padding: 15px;
  }

  .faq-wrapper h3 {
    font-size: 24px;
  }

  .custom-faq .accordion-button {
    font-size: 15px;
    padding: 12px 16px;
  }

  .custom-faq .accordion-body {
    font-size: 14px;
    padding: 12px 16px;
  }

  form {
    padding: 1.5rem !important;
  }

  form .form-control {
    font-size: 14px;
  }

  .btn-primary-custom {
    font-size: 15px;
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper {
    padding: 10px;
  }

  .faq-wrapper h3 {
    font-size: 22px;
  }

  .custom-faq .accordion-button {
    font-size: 14px;
    padding: 10px 14px;
  }

  .custom-faq .accordion-body {
    font-size: 13.5px;
    padding: 10px 14px;
  }

  form {
    padding: 1rem !important;
  }

  form .form-control {
    font-size: 13.5px;
    padding: 10px 12px;
  }

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

  .btn-primary-custom {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .faq-wrapper h3 {
    font-size: 20px;
    text-align: left;
  }

  .custom-faq .accordion-button {
    font-size: 13.5px;
    padding: 9px 12px;
  }

  .custom-faq .accordion-body {
    font-size: 13px;
    line-height: 1.5;
  }

  form {
    padding: 0.8rem !important;
  }

  form .form-control {
    font-size: 13px;
    padding: 8px 10px;
  }

  .btn-primary-custom {
    font-size: 13.5px;
  }
}

/* case studies  */

.case-card {
  background-color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
  cursor: pointer;
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.case-card .img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.case-card:hover img {
  transform: scale(1.1);
}

.case-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}
.case-card p {
  line-height: 1.6;
  font-size: 0.95rem;
}

#case-studies button {
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
#case-studies button:hover:not(:disabled) {
  background-color: #20bab7;
  color: #fff;
  transform: translateY(-2px);
}
#case-studies button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* terms and condition  */

.main-heading {
  color: black;
  font-family: var(--font-family);
  font-size: 34px;
  font-weight: 700;
}

@keyframes gradient-move {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Section Title */
.section-title {
    color: #20bab7;
    font-weight: 700;
    font-size: 1.8rem;
    position: relative;
    display: inline-block; /* ensures pseudo-element aligns properly */
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 70px; /* initial width */
    background: linear-gradient(90deg, #20bab7, #0f4c75);
    border-radius: 5px;
    transition: width 0.3s ease; /* transition works now */
  }

  /* Hover effect on parent affecting child pseudo-element */
  .term-block:hover .section-title::after {
    width: 100px; /* width expands smoothly */
  }


/* Paragraphs */
.section-text {
  color: #444;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.9;
  background: #fff;
  padding: 1.5rem 1.8rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #20bab7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-text:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(32, 186, 183, 0.2);
}

/* List */
.section-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-top: 1.2rem;
}

.section-list li {
  color: #444;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #20bab7;
  font-weight: 700;
}

.section-text a {
  color: #20bab7;
  font-weight: 600;
  transition: color 0.3s;
}

.section-text a:hover {
  color: #0f4c75;
}

/*  Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.6rem;
  }
  .section-text {
    font-size: 1rem;
    padding: 1.3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }
  .section-text,
  .section-list {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .terms-section {
    padding: 2rem 1.2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .section-text {
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
  }
  .section-list {
    font-size: 0.95rem;
  }
}

.video-background video {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 240vh;
  height: 130vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover;
  z-index: 0;
}

/*  Tablet  */
@media (max-width: 992px) {
  .video-background video {
    width: 280vw;
    height: 130vh;
  }
}

/*  Mobile */
@media (max-width: 768px) {
  .video-background video {
    width: 340vw;
    height: 130vh;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .video-background video {
    width: 380vw;
    height: 130vh;
    margin-top: 0;
  }
}
/* Lifeatadvess */

.lifeatadevss-section {
  background: linear-gradient(
    100deg,
    #e0edec,
    #ffffff
  ); /* gradient background */
  color: #000000;
  overflow: hidden;
}

.lifeatadevss-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  font-family: var(--font-family);
}

.lifeatadevss-text {
  font-size: 16px;
  line-height: 1.7;
  color: black;
  font-weight: 500;
  font-family: var(--font-family);
}

.lifeatadevss-img img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lifeatadevss-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lifeatadevss-img2 img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lifeatadevss-img2 img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lifeatadevss-img3 img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lifeatadevss-img3 img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lifeatadevss-img4 img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lifeatadevss-img4 img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1400px) {
  .lifeatadevss-title {
    font-size: 1.8rem;
    text-align: left;
  }

  .lifeatadevss-text {
    font-size: 1rem;
    text-align: left;
  }

  .lifeatadevss-image-wrapper {
    margin-bottom: 2rem;
  }

  .lifeatadevss-img img {
    width: 100%;
    height: 388px;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .lifeatadevss-img2 img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
}

@media (max-width: 1024px) {
  .lifeatadevss-title {
    font-size: 1.8rem;
    text-align: left;
  }

  .lifeatadevss-text {
    font-size: 1rem;
    text-align: left;
  }

  .lifeatadevss-image-wrapper {
    margin-bottom: 2rem;
  }

  .lifeatadevss-img img {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .lifeatadevss-img2 img {
    width: 100%;
    height: 285px;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
}

@media (max-width: 576px) {
  .lifeatadevss-title {
    font-size: 30px;
    text-align: left;
  }

  .lifeatadevss-text {
    font-size: 16px;
    text-align: left;
  }
}

#chatPopup,
#chatBox {
  display: none;
}

.icon-style {
  font-size: 55px;
  margin-bottom: 16px;
  color: #20bab7;
  display: inline-block;
}

.webdev-card:hover i {
  transform: scale(1.15);
}
.webdev-card i {
  transition: transform 0.5s ease;
}

/*  Custom Top SVG Border */
.custom-top-border {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-top-border2 {
  position: relative;
  background: linear-gradient(
    100deg,
    #e0edec,
    #ffffff
  ); /* gradient background */
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-top-border svg {
  display: block;
  width: 100%;
  height: 120px;
}
.custom-top-border2 svg {
  display: block;
  width: 100%;
  height: 120px;
}

.custom-top-border path {
  animation: waveMove 6s ease-in-out infinite alternate;
}

.custom-top-border2 path {
  animation: waveMove 6s ease-in-out infinite alternate;
}

@keyframes waveMove {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(5px);
  }
}
.custom-top-border {
  margin-bottom: 0;
}
.custom-top-border2 {
  margin-bottom: 0;
}
/* THIRD SCHEDULE MODAL STYLES */

.thirdschedule-modal .modal-dialog {
  max-width: 800px;
}

.thirdschedule-content {
  border-radius: 12px;
  border: 2px solid #00b3b3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.thirdschedule-title {
  font-size: 1.8rem;
  color: #000;
}

.thirdschedule-subtitle {
  font-size: 0.95rem;
}

.thirdschedule-box {
  border: 1px solid #00b3b3;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.thirdschedule-box:hover {
  box-shadow: 0 0 10px rgba(0, 179, 179, 0.3);
}

.thirdschedule-heading {
  color: #00b3b3;
  font-size: 1.1rem;
}

.thirdschedule-link {
  color: #0000ff;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
}

.thirdschedule-link:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .thirdschedule-modal .modal-dialog {
    max-width: 100%;
  }

  .thirdschedule-title {
    font-size: 1.4rem;
  }
}
#typedtexttwo {
  display: inline-block;
  color: #000;
  white-space: nowrap;
}

#typedtexttwo::after {
  content: "|";
  animation: blink 0.7s infinite;
  font-weight: bold;
  margin-left: 2px;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
