.about-hero {
  position: relative;
  overflow: hidden;
  padding: 125px 0 100px;
  background: var(--hero-background);
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  top: -250px;
  right: -150px;
  border-radius: 50%;
  background: rgba(23, 92, 221, 0.05);
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

/* Badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(23, 92, 221, 0.08);
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-badge i {
  font-size: 1rem;
}

/* Content */

.about-hero-content h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.about-hero-content p {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 600px;
}

/* Buttons */

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
}

.primary-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: var(--shadow-md);
}

.primary-btn:hover {
  background: var(--accent-hover);
  color: var(--contrast-color);
  transform: translateY(-4px);
}

.whatsapp-btn {
  background: var(--success-color);
  color: var(--contrast-color);
  box-shadow: 0 10px 25px rgba(70, 176, 74, 0.18);
}

.whatsapp-btn:hover {
  background: var(--success-hover);
  color: var(--contrast-color);
  transform: translateY(-4px);
}

/* Stats */

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 55px;
  flex-wrap: wrap;
}

.hero-stat {
  position: relative;
  padding-right: 35px;
}

.hero-stat:last-child {
  padding-right: 0;
}

.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  width: 1px;
  height: 42px;
  background: var(--border-color);
}

.hero-stat h3 {
  color: var(--accent-color);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-stat span {
  color: var(--default-color);
  font-size: 0.95rem;
}

/* Image */

.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.image-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 22px;
  left: 22px;
  border-radius: 24px;
  background: var(--accent-color);
  opacity: 0.08;
}

/* Floating Cards */

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  color: var(--heading-color);
  z-index: 5;
}

.floating-card i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.card-1 {
  top: 40px;
  left: -40px;
}

.card-2 {
  bottom: 40px;
  right: -30px;
}

/* ==========================================
   LARGE DEVICES
========================================== */

@media (max-width: 1199px) {
  .about-hero-content h1 {
    font-size: 2.9rem;
  }

  .card-1 {
    left: -15px;
  }

  .card-2 {
    right: -15px;
  }
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .about-hero {
    padding: 120px 0 80px;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 2.4rem;
  }

  .about-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns,
  .hero-stats {
    justify-content: center;
  }

  .hero-stat {
    padding-right: 0;
  }

  .hero-stat::after {
    display: none;
  }

  .image-shape {
    display: none;
  }

  .about-hero-image {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .card-1,
  .card-2 {
    position: static;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  .about-hero {
    padding: 110px 0 70px;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-hero-content p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-stats {
    gap: 25px;
    margin-top: 40px;
  }

  .hero-stat h3 {
    font-size: 1.8rem;
  }

  .floating-card {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .hero-badge {
    font-size: 0.85rem;
  }

  .hero-stat {
    width: 100%;
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }
}

.hero-btns {
  display: flex !important;
  gap: 15px;
  margin-top: -30px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 55px;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 600;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ==========================================
   OUR STORY SECTION
========================================== */

.our-story {
  padding: 25px 0;
  background: var(--light-surface-color);
}

/* Section Badge */

.section-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(23, 92, 221, 0.08);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Content */

.story-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--default-color);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Features */

.story-features {
  margin-top: 35px;
  display: grid;
  gap: 18px;
}

.story-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  font-weight: 600;
}

.story-feature i {
  color: var(--success-color);
  font-size: 1.1rem;
}

/* Image */

.story-image-wrapper {
  position: relative;
}

.story-main-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* Floating Card */

.story-experience-card {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.story-experience-card h3 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 5px;
  font-weight: 800;
}

.story-experience-card span {
  color: var(--default-color);
  font-size: 0.95rem;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .our-story {
    padding: 80px 0;
  }

  .story-content {
    text-align: center;
  }

  .story-content h2 {
    font-size: 2.3rem;
  }

  .story-feature {
    justify-content: center;
  }

  .story-experience-card {
    position: static;
    margin-top: 20px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  .story-content h2 {
    font-size: 2rem;
  }

  .story-content p {
    font-size: 0.95rem;
  }

  .story-feature {
    font-size: 0.95rem;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .our-story {
    padding: 70px 0;
  }

  .story-content h2 {
    font-size: 1.8rem;
  }

  .story-experience-card h3 {
    font-size: 1.7rem;
  }
}

/* ==========================================
   CARE PROCESS
========================================== */

.care-process {
  padding: 15px 0;
  background: #fff;
}

/* Section Header */

.section-header {
  max-width: 750px;
  margin: 0 auto 70px;
}

.section-header h2 {
  color: var(--heading-color);
  font-size: 2.8rem;
  font-weight: 800;
  margin: 18px 0;
}

.section-header p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Cards */

.process-card {
  position: relative;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(23, 92, 221, 0.08);
  line-height: 1;
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(23, 92, 221, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon i {
  color: var(--accent-color);
  font-size: 2rem;
}

.process-card h3 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-card p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .care-process {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  .care-process {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .process-card {
    padding: 35px 20px;
  }

  .process-icon {
    width: 70px;
    height: 70px;
  }

  .process-icon i {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .process-card h3 {
    font-size: 1.2rem;
  }
}

.about-philosophy {
  background: #fff;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(23, 92, 221, 0.08);
  color: #175cdd;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-heading {
  color: #112344;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-philosophy p {
  color: #4b5563;
  line-height: 1.9;
}

.philosophy-card {
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(23, 92, 221, 0.08);
  border: 1px solid #e5eaf2;
}

.philosophy-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.philosophy-item:last-child {
  margin-bottom: 0;
}

.philosophy-item i {
  width: 60px;
  height: 60px;
  background: rgba(23, 92, 221, 0.08);
  color: #175cdd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.philosophy-item h5 {
  color: #112344;
  font-weight: 600;
  margin-bottom: 8px;
}

.vision-mission {
  background: #f5f9ff;
}

.vm-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #e5eaf2;
  height: 100%;
  transition: 0.3s;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(23, 92, 221, 0.1);
}

.vm-icon {
  width: 80px;
  height: 80px;
  margin: auto auto 20px;
  background: rgba(23, 92, 221, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-icon i {
  font-size: 32px;
  color: #175cdd;
}

.vm-card h3 {
  color: #112344;
  margin-bottom: 15px;
}

.vm-card p {
  color: #4b5563;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 30px;
  }

  .philosophy-card,
  .vm-card {
    padding: 25px;
  }
}

.vm-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.vm-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #4b5563;
  line-height: 1.7;
}

.vm-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #175cdd;
  position: absolute;
  left: 0;
  top: 2px;
}

.section-title span {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(23, 92, 221, 0.08);
  color: #175cdd;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 750px;
  margin: 15px auto 0;
  color: #4b5563;
  line-height: 1.8;
}

/* ==================================================
   FOUNDER SECTION
================================================== */

.founder-section {
  padding: 80px 0;
  background: #fff;
}

/* Founder Image */

.founder-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Founder Content */

.founder-subtitle {
  display: inline-block;
  margin-bottom: 15px;

  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
}

.founder-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.founder-content h4 {
  color: var(--accent-color);
  margin-bottom: 25px;
}

.founder-content p {
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Highlights */

.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.highlight-box i {
  color: var(--accent-color);
  font-size: 22px;
}

/* Vision & Mission */

.founder-vision,
.founder-mission {
  margin-top: 40px;
}

.founder-vision h3,
.founder-mission h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.founder-vision blockquote {
  padding: 30px;

  background: #f8f9fa;
  border-left: 5px solid var(--accent-color);
  border-radius: 15px;

  font-size: 1.2rem;
  line-height: 1.8;
}

.mission-card {
  height: 100%;

  padding: 25px;

  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);

  transition: 0.3s;
}

.mission-card:hover {
  transform: translateY(-5px);
}

/* ==================================================
   FOUNDER MESSAGE SECTION
================================================== */

.founder-message {
  margin-top: 20px;
}

.message-card {
  position: relative;

  max-width: 950px;
  margin: auto;

  padding: 30px;

  background: linear-gradient(135deg, #ffffff, #f8fbff);

  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 25px 80px rgba(0, 0, 0, 0.04);

  text-align: center;
  overflow: hidden;
}

/* Top Icon */

.message-icon {
  width: 90px;
  height: 90px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--accent-color);
  color: #fff;

  border-radius: 50%;
  font-size: 2rem;
}

.message-label {
  display: inline-block;
  margin-bottom: 15px;

  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.message-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);

  margin-bottom: 25px;
}

.message-text {
  max-width: 800px;
  margin: auto;

  font-size: 1.08rem;
  line-height: 2;
  color: var(--default-color);
}

.message-divider {
  width: 120px;
  height: 4px;

  margin: 40px auto;

  background: var(--accent-color);
  border-radius: 50px;
}

/* Founder Profile */

.founder-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  margin-bottom: 35px;
}

.founder-avatar {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--accent-color);
  color: #fff;

  border-radius: 50%;
  font-size: 1.7rem;
}

.founder-profile h4 {
  margin: 0;

  font-size: 1.3rem;
  font-weight: 700;
}

.founder-profile span {
  color: #777;
}

/* Contact Grid */

.contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Quote */

.founder-quote {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 45px;
  padding: 16px 28px;

  background: rgba(0, 123, 255, 0.08);
  color: var(--accent-color);

  border-radius: 50px;
  font-weight: 700;
}

.founder-quote i {
  font-size: 1.1rem;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {
  .founder-content h2 {
    font-size: 2.4rem;
  }

  .message-card {
    padding: 50px 35px;
  }

  .message-card h3 {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .founder-content h2 {
    font-size: 2rem;
  }

  .founder-vision h3,
  .founder-mission h3,
  .message-card h3 {
    font-size: 1.8rem;
  }

  .founder-highlights {
    flex-direction: column;
  }

  .message-card {
    padding: 40px 25px;
  }

  .message-text {
    font-size: 1rem;
    line-height: 1.9;
  }

  .founder-profile {
    flex-direction: column;
    text-align: center;
  }

  .contact-item {
    width: 100%;
    min-width: 100%;
  }

  .founder-quote {
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 20px;
  }
}

/* ==========================================
   CO-FOUNDER SECTION
========================================== */

.cofounder-section {
  padding: 10px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cofounder-subtitle {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 15px;
}

.cofounder-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.cofounder-content h4 {
  color: var(--accent-color);
  margin-bottom: 25px;
}

.cofounder-content p {
  line-height: 1.9;
  margin-bottom: 20px;
}

.cofounder-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(23, 92, 221, 0.15);
}

.cofounder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.co-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(23, 92, 221, 0.1);
}

.co-highlight i {
  color: var(--accent-color);
  font-size: 20px;
}

/* Vision */

.cofounder-vision,
.cofounder-mission {
  margin-top: 40px;
}

.cofounder-vision h3,
.cofounder-mission h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.cofounder-vision blockquote {
  background: white;
  border-left: 5px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  line-height: 1.9;
  font-size: 1.15rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.co-mission-card {
  height: 100%;
  padding: 25px;
  background: white;
  border-radius: 18px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.co-mission-card:hover {
  transform: translateY(-8px);
}

/* Message Card */

.cofounder-message {
  margin-top: 20px;
}

.co-message-card {
  max-width: 950px;
  margin: auto;
  padding: 30px;
  text-align: center;

  background: white;

  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(23, 92, 221, 0.08);

  border: 1px solid rgba(23, 92, 221, 0.08);
}

.co-message-icon {
  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 25px;

  background: var(--accent-color);
  color: white;

  border-radius: 50%;
  font-size: 2rem;
}

.co-message-label {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}

.co-message-card h3 {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 2.5rem;
  font-weight: 800;
}

.co-message-text {
  max-width: 750px;
  margin: auto;
  line-height: 2;
}

.cofounder-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.cofounder-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 35px;

  padding: 16px 28px;

  border-radius: 50px;

  background: rgba(23, 92, 221, 0.08);
  color: var(--accent-color);

  font-weight: 700;
}

/* Responsive */

@media (max-width: 991px) {
  .cofounder-content h2 {
    font-size: 2.4rem;
  }

  .co-message-card {
    padding: 45px 30px;
  }
}

@media (max-width: 768px) {
  .cofounder-content h2 {
    font-size: 2rem;
  }

  .cofounder-highlights {
    flex-direction: column;
  }

  .cofounder-vision h3,
  .cofounder-mission h3,
  .co-message-card h3 {
    font-size: 1.8rem;
  }

  .co-message-card {
    padding: 35px 20px;
  }

  .cofounder-contact .contact-item {
    width: 100%;
  }

  .cofounder-quote {
    flex-wrap: wrap;
    border-radius: 20px;
  }
}

/* ==========================================
   TEAM SECTION
========================================== */

.team-section {
  padding: 20px 0;
  background: #f8fbff;
}

/* Header */

.team-subtitle {
  display: inline-block;

  color: var(--accent-color);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 15px;
}

.team-section .section-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.team-section .section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.team-section .section-header p {
  line-height: 1.9;
  color: var(--default-color);
}

/* Cards */

.team-card {
  height: 100%;

  background: #fff;

  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

  transition: 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: 0.5s;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-badge {
  position: absolute;

  left: 20px;
  top: 20px;

  background: var(--accent-color);
  color: white;

  padding: 8px 18px;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 600;
}

/* Content */

.team-content {
  padding: 15px;
  text-align: center;
}

.team-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.team-content span {
  display: block;

  color: var(--accent-color);

  font-weight: 600;

  margin-bottom: 18px;
}

.team-content p {
  line-height: 1.8;
  color: var(--default-color);
}

/* Contact */

.team-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-contact a {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(23, 92, 221, 0.08);

  color: var(--accent-color);

  border-radius: 50%;

  text-decoration: none;

  transition: 0.3s;
}

.team-contact a:hover {
  background: var(--accent-color);
  color: white;
}

/* Responsive */

@media (max-width: 991px) {
  .team-section .section-header h2 {
    font-size: 2.4rem;
  }

  .team-image img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 0;
  }

  .team-section .section-header {
    margin-bottom: 50px;
  }

  .team-section .section-header h2 {
    font-size: 2rem;
  }

  .team-content {
    padding: 25px;
  }

  .team-image img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .team-image img {
    height: 260px;
  }
}

/* ==================================================
   ABOUT CTA SECTION
================================================== */

.about-cta-section {
  padding: 15px 0;
}

.about-cta-wrapper {
  position: relative;
  padding: 50px 60px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--accent-color), #0d6efd);

  text-align: center;
  color: #fff;

  overflow: hidden;
}

.about-cta-wrapper::before {
  content: "";

  position: absolute;
  top: -120px;
  right: -120px;

  width: 300px;
  height: 300px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-badge {
  display: inline-block;

  padding: 10px 18px;

  background: rgba(255, 255, 255, 0.15);

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.about-cta-wrapper h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.about-cta-wrapper p {
  max-width: 750px;

  margin: 0 auto 35px;

  font-size: 1.05rem;
  line-height: 1.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;

  flex-wrap: wrap;

  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 30px;

  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.cta-primary {
  background: #fff;
  color: var(--accent-color);
}

.cta-primary:hover {
  transform: translateY(-5px);
}

.cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;

  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 500;
}

.cta-feature i {
  font-size: 1.1rem;
}

/* Responsive */

@media (max-width: 991px) {
  .about-cta-wrapper {
    padding: 60px 40px;
  }

  .about-cta-wrapper h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .about-cta-section {
    padding: 80px 0;
  }

  .about-cta-wrapper {
    padding: 50px 25px;
  }

  .about-cta-wrapper h2 {
    font-size: 2rem;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* team member styling  */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  border: 1px solid #edf2f7;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-content {
  padding: 25px;
}

.team-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 5px;
}

.team-content span {
  display: block;
  font-size: 14px;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-rating {
  color: #ffc107;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.read-more-btn {
  width: 100%;
  border: none;
  background: #0d6efd;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.read-more-btn:hover {
  background: #084298;
}

.read-more-btn i {
  margin-left: 8px;
  transition: 0.4s;
}

.read-more-btn.active i {
  transform: rotate(180deg);
}

.team-details {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.5s ease;

  margin-top: 0;
}

.team-details.active {
  max-height: 1200px;

  margin-top: 25px;
}

.team-details h4 {
  font-size: 22px;
  color: #1d3557;
  margin-bottom: 15px;
  font-weight: 700;
}

.team-details h5 {
  margin-top: 20px;
  margin-bottom: 12px;
  color: #0d6efd;
  font-size: 18px;
  font-weight: 700;
}

.team-details p {
  color: #555;
  line-height: 1.8;
}

.team-details ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.team-details li {
  margin-bottom: 10px;
  color: #555;
}

.team-details li::marker {
  color: #0d6efd;
}

/* Mobile */

@media (max-width: 991px) {
  .team-image img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .team-content {
    padding: 20px;
  }

  .team-image img {
    height: 300px;
  }

  .team-content h3 {
    font-size: 22px;
  }

  .team-details h4 {
    font-size: 20px;
  }
}
