@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: helvetica-world-regular; /* set name */
  src: url(/fonts/helvetica-world-regular.woff); /* url of the font */
}

/* CSS Custom Properties for consistent theming */
:root {
  --primary-color: #4fc3d7;
  --primary-dark: #3aafcc;
  --purple-primary: #8b5cf6;
  --purple-dark: #7c3aed;
  --secondary-color: #f8f9fa;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-light: #adb5bd;
  --white: #ffffff;
  --warning: #ffc107;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif; */
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px;
}

/* Header Styles */
.header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
} 

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.logo-animation {
  animation: logoFloat 3s ease-in-out infinite;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown arrow positioning */
.dropdown-toggle::after {
  display: none;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile responsive styles */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-toggler:focus {
  border: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.navbar-toggler span:nth-child(1) {
  top: 0;
}

.navbar-toggler span:nth-child(2) {
  top: 8px;
}

.navbar-toggler span:nth-child(3) {
  top: 16px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.cta-button {
  font-weight: bold;
  background-color: rgb(211, 211, 211);
  border-radius: 20px;
}

/* Mobile menu adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-link:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background-color: rgba(58, 134, 255, 0.05);
    width: 100%;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
  }

  .cta-button {
    /* border: 2px solid rgb(253, 142, 142); */
    background-color: rgb(211, 211, 211);
    margin-top: 1rem;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  /* Fix alignment for all nav items */
  .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  /* Adjust logo size on mobile */
  .navbar-brand img {
    height: 50px;
  }

  /* Ensure all nav items have the same alignment */
  .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop specific styles */
@media (min-width: 992px) {
  .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    transition: var(--transition);
  }

  .dropdown-item:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .nav-link .dropdown-arrow {
    margin-left: 0.25rem;
  }

  /* Desktop specific alignment */
  .navbar-nav .nav-item .nav-link {
    justify-content: center;
  }
}

/* 
@media screen and (min-width:1400px) {
  .hero-section {
    min-height: 800px !important;
  }
}

@media screen and (max-width:992px) {
  .hero-section {
    min-height: 70vh !important;
  }
} */

/* Hero Section */
.hero-section {
  background: url("../images/aboutUs/about-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* makes image cover the whole section */
  color: #000000;
  padding: 80px 0 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero-title  {
  color: #000000;
}
/* Mobile responsive - remove background image */
@media (max-width: 991.98px) {
  .hero-section {
    background: linear-gradient(to bottom, #009486, #ffffff00);
    min-height: 400px;
    padding: 60px 0 80px 0;
  }

  .hero-content.text-left {
    text-align: center !important;
  }

  .hero-title {
    text-align: center !important;
    font-size: 2.5rem;
  }

  .hero-description {
    text-align: center !important;
  }

  .rating-section {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 2rem;
  }

  .rating-text {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stars {
    margin-left: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 40px 0 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .rating-text {
    font-size: 0.9rem;
    text-align: center;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-content.text-left {
  text-align: left !important;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 80px;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  line-height: 1.1;
  color: #000000;
  text-shadow: none;
  animation: titleSlideUp 1s ease-out 0.3s both;
  text-align: left;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
 font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  margin-bottom: 2.5rem;
  opacity: 1;
  position: relative;
  z-index: 2;
  line-height: 1.5;
  color: #000000;
  text-shadow: none;
  animation: descriptionFadeIn 1s ease-out 0.6s both;
  text-align: left;
}

@keyframes descriptionFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rating-section {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: ratingFadeIn 1s ease-out 1.2s both;
  width: 100%;
}

.rating-text {
  font-family: "helvetica-world-regular;", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #000000;
  text-shadow: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rating-text i.fas.fa-users {
  color: var(--primary-color);
  font-size: 1.1rem;
}

@keyframes ratingFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-right: 2px;
  animation: starTwinkle 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

.stars i:nth-child(1) {
  --i: 0;
}

.stars i:nth-child(2) {
  --i: 1;
}

.stars i:nth-child(3) {
  --i: 2;
}

.stars i:nth-child(4) {
  --i: 3;
}

.stars i:nth-child(5) {
  --i: 4;
}

@keyframes starTwinkle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  border-radius: 12px;
}

/* Who We Are Section */
.who-we-are-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  z-index: 10;
}

.section-tag {
  color: #009183;
  font-family: 'popping' 'sans-sefrif';
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline;
  background: linear-gradient(to right, #ffffff, #e3faf6);
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
}

.section-tag2 {
  color: #009183;
  font-family: 'popping' 'sans-sefrif';
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline;
  background: #e3faf6;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.5rem;
  margin-bottom: 1.8rem;
  line-height: 1.2;
}

.section-description {
  color: var(--text-secondary);
  line-height: 1.65;
}

.section-content {
  padding-right: 0rem;
}

/* Info Cards */
.info-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 12px;
  box-shadow: -7px 3px 10px 3px rgba(0, 0, 0, 0.05);;
  animation: cardSlideIn 0.6s ease-out;
  animation-fill-mode: both;
}

.info-card:nth-child(1) {
  animation-delay: 0.1s;
}

.info-card:nth-child(2) {
  animation-delay: 0.2s;
}

.info-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.info-header {
  padding: 1.3rem 1.2rem;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid #f0f0f0;
}

.info-header:hover {
  background: #fafafa;
}

.info-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.toggle-icon {
  color: #666;
  transition: var(--transition);
  font-size: 0.8rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}

.info-header[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
  background: #000000;
  color: white;
  border-color: #000000;
}

.info-content {
  padding: 1rem 1.2rem;
}

.info-content p {
  margin-top: 2;
  color: #7e7e7e;
  line-height: 1.6;
  font-family: 'Open Sans' 'sans-serif';
  font-weight: 600;
  text-align: justify;
  font-size: 1.1rem;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: left;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: serviceCardFadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

.service-card:nth-child(1) {
  animation-delay: 0.2s;
}

.service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.service-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes serviceCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(79, 195, 215, 0.1),
      transparent);
  transition: var(--transition);
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(79, 195, 215, 0.15);
  border-color: var(--primary-color);
}

.service-card:hover .service-icon {
  animation-play-state: paused;
  transform: translateY(-5px) rotate(10deg);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  position: relative;
  z-index: 2;
  /* animation: iconBounce 2s ease-in-out infinite; */
}

@keyframes iconBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
  text-align: left;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-content {
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  .who-we-are-section,
  .services-section {
    padding: 60px 0;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  /* .info-header {
    padding: 1.25rem;
  } */

  .info-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .rating-section {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .stars {
    margin-top: 0.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero-description,
.rating-section {
  animation: fadeInUp 0.8s ease-out;
}

.service-card {
  animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.founding-team-section {
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 49px 49px 80px 50px;
  overflow: hidden;
}

/* Section Header */
.section-subtitle {
  color: #009183;
  background-color: #3efaf730;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline;
  padding: 10px 28px;
  border-radius: 50px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 57px;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-description {
  font-family: "roboto", sans-serif;
  font-weight: 400;
  /* text-align: justify; */
  padding-right: 0%;
  color: #000000;
  font-size: 19px;
  font-weight: 400;
  max-width: 600px;
}
.section-title2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 35px;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-description2 {
  font-family: "roboto", sans-serif;
  font-weight: 400;
  text-align: justify;
  text-align: center;
  padding-right: 0%;
  color: #000000;
  font-size: 19px;
  font-weight: 400;
}

/* Team Container */
.team-container {
  margin-top: 60px;
  position: relative;
  overflow: hidden !important;
}

/* Team Members */
/* Scroll Container Setup */
.team-members {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0px 10px;
  margin-bottom: 40px;
}

/* Each Card Column */
.team-member-col {
  flex: 0 0 25%;
  /* Show 4 cards per row */
  padding: 0px 16px;
  transition: all 0.3s ease;
}

@media screen and (max-width:678px) {
  .team-member-col {
    height: 350px;
  }

  .member-photo {
    height: 80%;
  }
}

.team-member-col:first-child {
  padding-left: 10px !important;
}

.team-member-col:last-child {
  padding-right: 10px !important;
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
  .team-member-col {
    flex-basis: 33.33%;
    /* 3 cards visible */
  }
}

@media (max-width: 992px) {
  .team-member-col {
    flex-basis: 50%;
    /* 2 cards visible */
  }
}

@media (max-width: 576px) {
  .team-member-col {
    flex-basis: 100%;
    /* 1 card visible */
  }
}

/* Hide scrollbar (optional aesthetic) */
.team-members::-webkit-scrollbar {
  display: none;
}

.team-members {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.team-member-card {
  background: white;
  /* border-radius: 10px; */
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.member-photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.member-info {
  padding: 20px 15px;
  text-align: center !important;
}

.member-name {
  font-family: 'poppins','sans-serif';
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.member-title {
  font-family: 'roboto','sans-serif';
  font-size: 12px;
  color: #000000;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}



/* Navigation Arrows */
.navigation-arrows {
  color: #000;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-left: 15px;
  margin-top: 20px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 50%;
 
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  /* border-color: #20b2aa;
  color: #20b2aa; */
  transform: scale(1.1);
}

/* Hiring Section */
/* .hiring-section {
  border-top: 1px solid #e0e0e0;
} */

.hiring-content {
  color: #000;
  font-family: 'roboto' 'sans-serif';
  font-size: 18px;
  font-weight: 400;
  padding-top: 10px;
}

.hiring-label {
  color: #1a1a1a;
  font-family: 'roboto' 'sans-serif';
  
  font-weight:700;
  font-size: 12px;
  margin-right: 10px;
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  padding: 10px 18px;
}

.hiring-link {
  text-decoration: none;
  font-family: 'roboto' 'sans-serif';
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
  text-decoration: underline;
  color: #000;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .founding-team-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .section-description {
    font-size: 14px;
  }

  .team-member-card {
    margin-bottom: 30px;
  }

  .member-name {
    font-size: 16px;
  }

  .member-title {
    font-size: 11px;
  }

  .navigation-arrows {
    justify-content: center;
    margin-left: 0;
  }

  .hiring-content {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .team-member-card {
    margin-bottom: 25px;
  }

  .member-info {
    padding: 15px 10px;
  }

  .hiring-section {
    padding-top: 30px;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* Animation for smooth transitions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-member-card {
  animation: fadeInUp 0.6s ease forwards;
}

.team-member-col:nth-child(1) .team-member-card {
  animation-delay: 0.1s;
}

.team-member-col:nth-child(2) .team-member-card {
  animation-delay: 0.2s;
}

.team-member-col:nth-child(3) .team-member-card {
  animation-delay: 0.3s;
}

.team-member-col:nth-child(4) .team-member-card {
  animation-delay: 0.4s;
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #ffffff;
  font-size: 16px;
  padding: 80px 0px 50px;
}

/* 
.why-choose-us-section * {
  box-sizing: border-box;
} */

/* Typography */
.why-choose-us-section h1,
.why-choose-us-section h2,
.why-choose-us-section h3,
.why-choose-us-section h4,
.why-choose-us-section h5,
.why-choose-us-section h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.why-choose-us-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Container adjustments */
.why-choose-us-section .container-fluid {

  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Left Content Styles */
.why-choose-us-section .left-content {
  padding-right: 1rem;
}

.why-choose-us-section .section-header {
  margin-bottom: 1.5rem;
}

.why-choose-us-section .badge-custom {
  background-color: #3efaf730;
  color: #009183;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
}

.why-choose-us-section .main-description {
  width: 90%;
  font-family: 'poppins', 'sans-serif';
  font-size: 19px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 2.5rem !important;
}

/* Features List */
.why-choose-us-section .features-list {
  margin-bottom: 2rem;
}

.why-choose-us-section .feature-item {
  margin-bottom: 0.5rem !important;
}

.why-choose-us-section .feature-item span {
  font-family: 'roboto', 'sans-serif';
  font-size: 17px;

  color: #000000;
  font-weight: 400;
}

.why-choose-us-section .check-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Highlight Box */
.why-choose-us-section .highlight-box {
  background-color: #f1f1f1;
  padding: 2rem;
  border-radius: 22px;
  margin-top: 2.5rem;
}

.why-choose-us-section .highlight-title {
  font-family: 'poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-choose-us-section .highlight-desc {
  width: 80%;
  font-family: 'roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
}

/* Right Content Styles */
.why-choose-us-section .right-content {
  padding-left: 1rem;
  width: 100%;
  /* Ensure the parent takes full available width */
  max-width: 600px;
  /* Adjust to desired max width, e.g., 600px or 800px */
  margin: 0 auto;
}

/* Feature Cards */
.why-choose-us-section .feature-card {
  width: 100%;
  background-color: #f9fffe;
  /* Fill the parent container */
  /* Minimum width for cards, adjust as needed */
  box-sizing: border-box;
  /* Maintain mb-4 equivalent */
}

/* 
.why-choose-us-section .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
} */

.why-choose-us-section .feature-title {
  font-family: 'poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.why-choose-us-section .feature-description {
  font-family: 'roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 0;
  width: 90%;
}

/* Improved spacing and alignment */
.why-choose-us-section .row.g-4 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {

  .why-choose-us-section .left-content,
  .why-choose-us-section .right-content {
    padding-left: 0;
    padding-right: 0;
  }

  .why-choose-us-section .highlight-box {
    margin-bottom: 2rem;
  }

  .why-choose-us-section .container-fluid {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .why-choose-us-section .container-fluid {
    padding: 1rem 0.75rem;
  }

  .why-choose-us-section .highlight-box {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .why-choose-us-section .highlight-title {
    font-size: 1.3rem;
  }

  .why-choose-us-section .main-description {
    font-size: 1rem;
  }

  .why-choose-us-section .feature-card {
    margin-bottom: 1.5rem !important;
  }

  .why-choose-us-section .feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }

  .why-choose-us-section .feature-card:hover .feature-icon {
    transform: scale(1.05);
  }

  .why-choose-us-section .feature-icon {
    width: 70px;
    height: 70px;
    margin-right: 4px;
  }

  .why-choose-us-section .feature-icon img {
    width: 100%;
    height: 100%;
  }

  .why-choose-us-section .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .why-choose-us-section .container-fluid {
    padding: 0.75rem 0.5rem;
  }

  .why-choose-us-section .highlight-box {
    padding: 1.25rem;
  }

  .why-choose-us-section .highlight-title {
    font-size: 1.2rem;
  }

  .why-choose-us-section .badge-custom {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .why-choose-us-section .feature-title {
    font-size: 1rem;
  }

  .why-choose-us-section .feature-description {
    font-size: 0.9rem;
  }
}

/* Accessibility improvements */
.why-choose-us-section .feature-card:focus-within {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
  border-radius: 8px;
}

/* Print styles */
@media print {
  .why-choose-us-section .container-fluid {
    max-width: 100%;
    padding: 0;
  }

  .why-choose-us-section .highlight-box {
    border: 1px solid #e5e7eb;
  }
}

/* Professional Portfolio Grid Section Styles */

/* Section container */
.portfolio-grid-section {
  position: relative;
  overflow-x: hidden;
  background-color: #f8f9fa;
}

/* Decorative dot patterns */
.dot-pattern {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, #4da6ff 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.dot-pattern-top-left {
  top: 40px;
  left: 40px;
  background-position: 0 0;
}

.dot-pattern-bottom-right {
  bottom: 40px;
  right: 40px;
  background-position: 7px 7px;
}

/* Image container styling */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

/* Bottom right - medium-tall */

.image-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image wrapper for better control */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

/* Image styling */
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  animation: fadeIn 0.5s ease-in-out;
}

.image-container:hover .image-wrapper img {
  transform: scale(1.05);
}

/* Overlay styling */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 16px;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* Overlay content */
.overlay-content {
  color: white;
  text-align: left;
  width: 100%;
}

.overlay-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-icon {
  font-size: 1.1rem;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.image-container:hover .overlay-icon {
  transform: translateX(5px);
}

/* Border hover effect */
.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.image-container:hover::before {
  border-color: #4da6ff;
}

/* Smooth loading animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Focus styles for accessibility */
.image-container:focus {
  outline: 3px solid #4da6ff;
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dot-pattern {
    width: 120px;
    height: 120px;
    background-size: 15px 15px;
  }

  .dot-pattern-top-left {
    top: 10px;
    left: 10px;
  }

  .dot-pattern-bottom-right {
    bottom: 10px;
    right: 10px;
  }

  .image-wrapper {
    border-radius: 12px;
  }

  .image-overlay {
    border-radius: 12px;
    padding: 16px;
  }

  .overlay-title {
    font-size: 1.1rem;
  }

  /* Maintain proportional heights on tablets */
  .image-container:nth-child(1) {
    border-radius: 12px;
  }

  .image-container:nth-child(2) {
    border-radius: 12px;
  }

  .image-container:nth-child(3) {
    border-radius: 12px;
  }

  .image-container:nth-child(4) {
    border-radius: 12px;
  }

  .image-container:nth-child(5) {
    border-radius: 12px;
  }

  .image-container:nth-child(6) {
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  .image-wrapper {
    border-radius: 10px;
  }

  .image-overlay {
    border-radius: 10px;
    padding: 12px;
  }

  .overlay-title {
    font-size: 1rem;
  }

  .dot-pattern {
    width: 80px;
    height: 80px;
    background-size: 12px 12px;
  }

  /* Maintain proportional heights on mobile */
  .image-container:nth-child(1) {
    border-radius: 10px;
  }

  .image-container:nth-child(2) {
    border-radius: 10px;
  }

  .image-container:nth-child(3) {
    border-radius: 10px;
  }

  .image-container:nth-child(4) {
    border-radius: 10px;
  }

  .image-container:nth-child(5) {
    border-radius: 10px;
  }

  .image-container:nth-child(6) {
    border-radius: 10px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .image-overlay {
    background: rgba(0, 0, 0, 0.8);
  }

  .dot-pattern {
    opacity: 0.6;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .image-container,
  .image-wrapper img,
  .image-overlay,
  .overlay-icon {
    transition: none;
  }

  .image-container:hover {
    transform: none;
  }

  .image-container:hover .image-wrapper img {
    transform: none;
  }

  .image-container:hover .overlay-icon {
    transform: none;
  }
}

Testimonials Section
.testimonials-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonials-label {
  display: inline-block;
  background-color: #4ecdc4;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-content {
  margin-top: 20px;
}

.testimonials-heading {
  font-size: 40px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 25px;
}

.testimonials-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 400px;
}

/* Navigation Arrows */
.testimonial-navigation {
  display: flex;
  gap: 15px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid #242527;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 550;
}

.nav-arrow:hover {
  /* border-color: #4ecdc4;
  color: #4ecdc4; */
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3); */
}

.testimonial-text {
  font-family: 'poppins', sans-serif;
  font-size: 17px;
    text-align: justify;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 20px;
    padding-right: 10px;
}

/* Profile Section */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.profile-info h6 {
  font-family: 'poppins','sans-serif';
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 5px;
}

.profile-info p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/*logomarquee*/
.marquee-text {
  font-family: 'poppins', 'sans-serif';
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: calc(200%);
  /* Ensures logos repeat seamlessly */
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 70px;
  flex-shrink: 0;
}

/* Adjust animation speed and smoothness */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/*call to action box*/
/*call to action box*/
/* CTA Box Background and Styling */
.cta-box {
  background: linear-gradient(to top, #0a1a2fc2), url("../images/1.png");
  border-radius: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-box-bg {
  background: linear-gradient(to top, #22313fd7), url("../images/consult-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Heading Styles */
.cta-heading {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.cta-subheading {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

/* Paragraph Description */
.cta-description {
  font-family: "Poppins", sans-serif;

  font-size: 18px;
  color: #f0f0f0;
  line-height: 1.6;
}

/* CTA Button */
.cta-button {
  float: right;
    background-color: #009183;
    color: #fff;
    font-weight: 400;
    padding: 12px 25px;
    border-radius: 0;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: 'poppins', 'sans-serif';
}

.cta-button:hover {
  color: #000;
  background-color: #009183;
}

@media (max-width: 767.98px) {
  .cta-box {
    padding: 20px 5px !important;
    margin: 15px !important;
    text-align: center;
    width: calc(100% - 30px);
    /* Prevent overflow with margin */
    box-sizing: border-box;
    /* Ensures width + padding + margin behave predictably */
  }

  .cta-box .row {
    margin-left: 0;
    margin-right: 0;
  }

  .cta-heading {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
  }

  .cta-subheading {
    font-family: 'poppins','sans-serif';
    font-size: 18px;
  }

  .cta-description {
    font-family: 'poppins','sans-serif';
    font-size: 18px;
  }

  .cta-button {
    display: inline-block;
    margin-top: 20px;
    font-size: 15px;
    padding: 10px 12px;
  }

  .text-right {
    text-align: center !important;
  }
}
/* Background geometric shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: 10%;
  background: rgba(139, 92, 246, 0.2);
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: 5%;
  background: rgba(16, 185, 129, 0.2);
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 5%;
  background: rgba(255, 255, 255, 0.1);
}

/* Footer Styles */
.footer-section {
  background: rgb(203 164 235 / 15%);
  padding: 60px 0 0;
  color: #4a5568;
}

.footer-brand {
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-icon {
  margin-right: 12px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #8b5cf6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #718096;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.contact-info {
  font-size: 0.95rem;
}

.contact-item {
  margin-bottom: 15px;
  color: #718096;
}

.contact-item strong {
  color: #4a5568;
}

/* Quote Section Styles */
.quote-section {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #8b5cf6;
}

.quote-mark {
  font-size: 3rem;
  color: #8b5cf6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.quote-content {
  font-size: 1.1rem;
  line-height: 1.4;
}

.quote-text-1 {
  color: #4a5568;
  font-weight: 500;
}

.quote-text-2 {
  color: #8b5cf6;
  font-weight: 700;
  font-style: italic;
}

.quote-text-3 {
  color: #8b5cf6;
  font-weight: 700;
}

.quote-attribution {
  color: #718096;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 5px;
}

.success-description {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 25px;
}

.btn-journey {
  border: 1.5px solid #848484;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-journey:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: #e2e8f0;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-copyright {
  color: #718096;
  font-size: 0.9rem;
  padding-bottom: 18px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 30px;
  }

  .btn-consultation {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .footer-section {
    padding: 40px 0 0;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    padding: 40px 0;
    max-width: 95%;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-consultation {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .quote-section {
    padding: 20px;
  }

  .quote-mark {
    font-size: 2.5rem;
  }

  .quote-content {
    font-size: 1rem;
  }

}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .quote-section {
    padding: 15px;
  }

  .btn-consultation {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .btn-journey {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Hover effects for better interactivity */
.footer-links a,
.contact-item {
  transition: all 0.3s ease;
}

.footer-links a:hover {
  padding-left: 5px;
}

/* Focus states for accessibility */
.btn-consultation:focus,
.btn-journey:focus,
.social-link:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

.service-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* .service-box:hover {
  background-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
} */

.service-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.service-content h5 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #000;
}

.service-content p {
  font-size: 15px;
  color: #a6a6a6;
  margin: 0;
}


.btn-gradient {
  background: linear-gradient(90deg, white, rgba(162, 93, 214, 0.4));
  border: none;
  padding: 10px 20px;
  color: #a25dd6;
  font-weight: 600;
  border-radius: 25px;
}

/* Hide Swiper's default arrows completely */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #a25dd6;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 0;
  font-size: 24px;
  /* Size of the icon */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonials-section {
  background: #ffffff;
  padding: 60px 0;
}

.testimonials-label {
  padding: 10px 28px;
  border-radius: 50px;
  background-color: #3efaf730;
  color: #009183;
  font-size: 14px;
  font-weight: 900;
}

.testimonials-heading {
  font-family: 'poppins', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #000000;
}

.testimonials-description {
  font-family: 'poppins', sans-serif;
  font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 350px;
    text-align: justify;
}

.testimonial-navigation {
  margin-top: 20px;

}

.nav-arrow-bor-none {
  font-size: 30px;
  border: none;
  background: none;
  color: #000000;
}

.testimonial-card {
  position: relative;
  border: 3px solid #d9d9d9;
  padding: 30px;
  border-radius: 10px;
  margin-left: 20px;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); */
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card p {

  font-family: 'poppins', sans-serif;  
  text-align: justify;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-controls {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.testimonialSwiper {
  height: 100%;
}

.testimonialSwiper .swiper-wrapper {
  align-items: stretch;
}

.testimonialSwiper .swiper-slide {
  display: flex;
  height: auto;
}



.profile-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.profile-info {
  margin-left: 5px;
}

.profile-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.profile-institution {
  font-size: 14px;
  color: #777;
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 20px;
    border-radius: 8px;
    margin-left: 0 !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  }

  .testimonial-card p {
    margin-top: 15px;
    font-size: 14px;
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .testimonial-author {
    flex-direction: row;
    align-items: left;
  }

  .testimonial-controls {
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }

  .testimonialSwiper .swiper-slide {
    padding: 0 10px;
  }
}

.professinal-grids {
  display: grid;
  grid-template-areas:
    "img1 img2 img3"
    "img1 img5 img3"
    "img4 img5 img6";
  gap: 20px;
}

#img1 {
  grid-area: img1;
}

#img2 {
  grid-area: img2;
}

#img3 {
  grid-area: img3;
}

#img4 {
  grid-area: img4;
}

#img5 {
  grid-area: img5;
}

#img6 {
  grid-area: img6;
}

.professinal-grids>img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width:992px) {
  .professinal-grids {
    grid-template-areas:
      "img1"
      "img2"
      "img3"
      "img4"
      "img5"
      "img6";
  }


  
}


.shape2 {
  width: 34%;
  position: absolute;
  bottom: -100px;
  right: -208px;
  z-index: -1;
}

.shape1 {
  width: 34%;
  position: absolute;
  top: -100px;
  left: -220px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .shape1,
  .shape2 {
    display: none !important;
  }
}
/*Custom Container*/
.container-custom {
    max-width: 1400px; /* Adjust this value (1400px, 1600px, etc.) */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}