.about-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 15px;
  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;
  }
}

/* =========================================
   STORY SECTION
========================================= */

.story-section {
    padding: 0px 0;
    background: #fff;
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.story-heading {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    border-radius: 50px;

    background: #eaf5ff;
    color: #0759a5;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;
}

.story-heading h2 {
    margin: 0 0 15px;

    color: #173b63;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;
}

.story-heading h2 span {
    color: #0759a5;
}

.story-heading p {
    max-width: 650px;

    margin: auto;

    color: #718092;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   MAIN
========================================= */

.story-main {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 75px;
}


/* =========================================
   IMAGE
========================================= */

.story-visual {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.story-image-frame {
    position: relative;

    width: 440px;
    height: 500px;

    overflow: hidden;

    border-radius: 30px;

    background: #eaf5ff;

    box-shadow:
        0 20px 45px rgba(0,55,141,0.12);
}

.story-image-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,55,141,0.18),
        transparent 45%
    );

    pointer-events: none;
}

.story-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================
   EXPERIENCE
========================================= */

.story-years {
    position: absolute;

    left: 0;
    bottom: 50px;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background: #0759a5;

    color: #fff;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    z-index: 5;

    border: 8px solid #fff;

    box-shadow:
        0 15px 35px rgba(0,55,141,0.18);
}

.story-years strong {
    font-size: 32px;

    line-height: 1;
}

.story-years span {
    font-size: 11px;

    line-height: 1.3;

    margin-top: 5px;
}


/* =========================================
   FLOATING CARD
========================================= */

.story-care-card {
    position: absolute;

    right: 0;
    top: 55px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    background: #fff;

    border-radius: 12px;

    z-index: 6;

    box-shadow:
        0 12px 30px rgba(0,55,141,0.12);
}

.story-care-card > i {
    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf5ff;

    color: #0759a5;

    font-size: 17px;
}

.story-care-card strong {
    display: block;

    color: #173b63;

    font-size: 13px;
}

.story-care-card span {
    display: block;

    color: #7b8794;

    font-size: 10px;

    margin-top: 2px;
}


/* =========================================
   CONTENT
========================================= */

.story-details {
    max-width: 650px;
}

.story-label {
    display: inline-block;

    color: #0759a5;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.story-details h3 {
    color: #173b63;

    font-size: 35px;

    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 20px;
}

.story-details h3 span {
    display: block;

    color: #0759a5;
}

.story-details p {
    color: #68798b;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 15px;
}

.story-details p strong {
    color: #0759a5;
}


/* =========================================
   FEATURES
========================================= */

.story-feature-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 28px;
}

.story-feature-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 15px;

    background: #f7fbff;

    border: 1px solid #e8f1f8;

    border-radius: 12px;

    transition: 0.3s ease;
}

.story-feature-item:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,55,141,0.07);
}

.story-feature-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #e5f2ff;

    color: #0759a5;

    font-size: 15px;
}

.story-feature-item strong {
    display: block;

    color: #173b63;

    font-size: 12px;

    margin-bottom: 3px;
}

.story-feature-item span {
    display: block;

    color: #7b8794;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .story-main {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .story-visual {
        min-height: 500px;
    }

    .story-details {
        max-width: 700px;

        margin: auto;
    }

    .story-heading h2 {
        font-size: 36px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .story-section {
        padding: 60px 0;
    }

    .story-heading {
        margin-bottom: 40px;
    }

    .story-heading h2 {
        font-size: 29px;
    }

    .story-heading p {
        font-size: 13px;
    }

    .story-visual {
        min-height: 390px;
    }

    .story-image-frame {
        width: 290px;
        height: 360px;

        border-radius: 22px;
    }

    .story-years {
        width: 90px;
        height: 90px;

        bottom: 25px;
        left: 0;

        border-width: 5px;
    }

    .story-years strong {
        font-size: 24px;
    }

    .story-years span {
        font-size: 8px;
    }

    .story-care-card {
        top: 25px;
        right: 0;

        padding: 8px 10px;
    }

    .story-care-card > i {
        width: 32px;
        height: 32px;
        min-width: 32px;

        font-size: 14px;
    }

    .story-details h3 {
        font-size: 27px;
    }

    .story-feature-list {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   PHILOSOPHY SECTION
========================================= */

.philosophy-section {
    padding: 90px 0;
    background: #f7fbff;
    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.philosophy-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.philosophy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    border-radius: 50px;

    background: #e8f4ff;
    color: #0759a5;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;
}

.philosophy-badge i {
    font-size: 15px;
}

.philosophy-header h2 {
    margin: 0 0 16px;

    color: #173b63;

    font-size: 43px;
    line-height: 1.2;

    font-weight: 800;
}

.philosophy-header h2 span {
    color: #0759a5;
}

.philosophy-header p {
    max-width: 650px;

    margin: auto;

    color: #718092;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.philosophy-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 55px;

    align-items: center;
}


/* =========================================
   LEFT INTRO
========================================= */

.philosophy-intro {
    position: relative;

    padding: 40px;

    background: #fff;

    border-radius: 25px;

    border: 1px solid #e7f0f7;

    box-shadow:
        0 15px 40px rgba(0,55,141,0.06);
}

.intro-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #e8f4ff;

    color: #0759a5;

    font-size: 22px;

    margin-bottom: 20px;
}

.intro-label {
    display: block;

    color: #0759a5;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 10px;
}

.philosophy-intro h3 {
    color: #173b63;

    font-size: 32px;

    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 20px;
}

.philosophy-intro h3 strong {
    display: block;

    color: #0759a5;
}

.philosophy-intro p {
    color: #68798b;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 15px;
}

.philosophy-intro p strong {
    color: #0759a5;
}


/* =========================================
   QUOTE
========================================= */

.philosophy-quote {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding: 15px 18px;

    background: #f3f9fe;

    border-left: 3px solid #0759a5;

    border-radius: 8px;
}

.philosophy-quote > i {
    color: #0759a5;

    font-size: 25px;
}

.philosophy-quote strong {
    display: block;

    color: #173b63;

    font-size: 13px;

    line-height: 1.5;
}

.philosophy-quote span {
    display: block;

    color: #7b8794;

    font-size: 10px;

    margin-top: 4px;
}


/* =========================================
   RIGHT CARDS
========================================= */

.philosophy-cards {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.philosophy-box {
    position: relative;

    padding: 25px 22px;

    background: #fff;

    border-radius: 18px;

    border: 1px solid #e6eff6;

    overflow: hidden;

    transition: all 0.3s ease;
}

.philosophy-box:hover {
    transform: translateY(-6px);

    border-color: #cfe6f8;

    box-shadow:
        0 15px 35px rgba(0,55,141,0.09);
}


/* Number */

.philosophy-number {
    position: absolute;

    top: 12px;
    right: 15px;

    color: #e5f0f8;

    font-size: 35px;

    line-height: 1;

    font-weight: 800;
}


/* Icon */

.philosophy-icon {
    position: relative;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #eaf5ff;

    color: #0759a5;

    font-size: 19px;

    margin-bottom: 18px;
}


/* Content */

.philosophy-box-content {
    position: relative;
    z-index: 2;
}

.philosophy-box h4 {
    color: #173b63;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 8px;
}

.philosophy-box p {
    color: #718092;

    font-size: 12px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .philosophy-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .philosophy-intro {
        max-width: 700px;

        margin: auto;
    }

    .philosophy-cards {
        max-width: 750px;

        width: 100%;

        margin: auto;
    }

    .philosophy-header h2 {
        font-size: 37px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .philosophy-section {
        padding: 60px 0;
    }

    .philosophy-header {
        margin-bottom: 35px;
    }

    .philosophy-header h2 {
        font-size: 29px;
    }

    .philosophy-header p {
        font-size: 13px;
    }

    .philosophy-intro {
        padding: 25px 20px;

        border-radius: 18px;
    }

    .philosophy-intro h3 {
        font-size: 27px;
    }

    .philosophy-cards {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .philosophy-box {
        padding: 20px;
    }

    .philosophy-box h4 {
        font-size: 15px;
    }

}

/* =========================================
   MODERN FOUNDER SECTION
========================================= */

.founder-modern-section {
    padding: 10px 0;
    background: #ffffff;
}


/* =========================================
   MAIN FOUNDER
========================================= */

.founder-modern {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/* =========================================
   IMAGE
========================================= */

.founder-modern-image {
    position: relative;
    height: 540px;
    overflow: hidden;
    border-radius: 8px;
}

.founder-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.founder-modern-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 35, 80, 0.65),
        transparent 45%
    );
}


/* Image Caption */

.founder-image-caption {
    position: absolute;
    left: 30px;
    bottom: 25px;

    z-index: 2;

    color: #fff;
}

.founder-image-caption span {
    display: block;

    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;

    opacity: 0.85;

    margin-bottom: 5px;
}

.founder-image-caption strong {
    font-size: 19px;
    font-weight: 700;
}


/* =========================================
   CONTENT
========================================= */

.founder-modern-content {
    max-width: 620px;
}

.founder-modern-tag {
    display: inline-block;

    color: #0759a5;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.founder-modern-content h2 {
    margin: 0;

    color: #173b63;

    font-size: 48px;
    line-height: 1.1;

    font-weight: 800;
}

.founder-line {
    width: 55px;
    height: 3px;

    background: #0759a5;

    margin: 20px 0;
}

.founder-modern-content h4 {
    margin: 0 0 25px;

    color: #40566d;

    font-size: 17px;
    font-weight: 600;
}

.founder-modern-content h4 span {
    color: #0759a5;
}

.founder-modern-content p {
    color: #68798b;

    font-size: 14px;
    line-height: 1.9;

    margin-bottom: 15px;
}

.founder-modern-content .founder-intro {
    color: #40566d;

    font-size: 16px;
    line-height: 1.8;

    font-weight: 500;
}


/* =========================================
   SIGNATURE
========================================= */

.founder-signature-area {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 30px;
}

.signature-line {
    width: 45px;
    height: 1px;

    background: #0759a5;
}

.founder-signature-area strong {
    display: block;

    color: #173b63;

    font-size: 15px;
}

.founder-signature-area span {
    display: block;

    color: #7b8794;

    font-size: 11px;

    margin-top: 3px;
}


/* =========================================
   VALUES
========================================= */

.founder-values {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 75px;

    border-top: 1px solid #e5edf3;
    border-bottom: 1px solid #e5edf3;
}

.founder-value {
    display: flex;

    gap: 18px;

    padding: 35px 30px;

    border-right: 1px solid #e5edf3;
}

.founder-value:last-child {
    border-right: 0;
}

.value-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf7ff;
    color: #0759a5;

    font-size: 18px;
}

.founder-value small {
    display: block;

    color: #0759a5;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 7px;
}

.founder-value h3 {
    margin: 0 0 8px;

    color: #173b63;

    font-size: 17px;
    line-height: 1.3;
}

.founder-value p {
    margin: 0;

    color: #7b8794;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================
   MESSAGE
========================================= */

.founder-modern-message {
    display: flex;

    gap: 25px;

    margin-top: 65px;

    padding: 45px 50px;

    background: #f5faff;

    border-left: 4px solid #0759a5;
}

.message-mark {
    color: #0759a5;

    font-size: 70px;

    line-height: 0.7;

    font-family: Georgia, serif;
}

.message-content > span {
    display: block;

    color: #0759a5;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.message-content h3 {
    margin: 0 0 12px;

    color: #173b63;

    font-size: 27px;

    font-weight: 800;
}

.message-content p {
    max-width: 850px;

    margin: 0 0 15px;

    color: #68798b;

    font-size: 14px;

    line-height: 1.8;
}

.message-content strong {
    color: #173b63;

    font-size: 13px;
}


/* =========================================
   CTA
========================================= */

.founder-modern-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 35px;

    padding: 28px 35px;

    background: #0759a5;

    border-radius: 8px;
}

.founder-modern-cta > div:first-child span {
    display: block;

    color: rgba(255,255,255,0.7);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.founder-modern-cta h3 {
    margin: 0;

    color: #fff;

    font-size: 22px;
}

.founder-cta-buttons {
    display: flex;

    gap: 10px;
}

.founder-cta-buttons a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 16px;

    border-radius: 6px;

    background: #fff;

    color: #0759a5;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    transition: 0.3s ease;
}

.founder-cta-buttons a:hover {
    transform: translateY(-2px);
}

.founder-cta-buttons .email-btn {
    background: rgba(255,255,255,0.12);
    color: #fff;

    border: 1px solid rgba(255,255,255,0.3);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .founder-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-modern-image {
        max-width: 500px;
        width: 100%;
        margin: auto;
    }

    .founder-modern-content {
        max-width: 700px;
        margin: auto;
    }

    .founder-values {
        grid-template-columns: 1fr;
    }

    .founder-value {
        border-right: 0;
        border-bottom: 1px solid #e5edf3;
    }

    .founder-value:last-child {
        border-bottom: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .founder-modern-section {
        padding: 60px 0;
    }

    .founder-modern-image {
        height: 420px;
    }

    .founder-modern-content h2 {
        font-size: 34px;
    }

    .founder-modern-content h4 {
        font-size: 14px;
        line-height: 1.5;
    }

    .founder-modern-content .founder-intro {
        font-size: 14px;
    }

    .founder-value {
        padding: 25px 10px;
    }

    .founder-modern-message {
        padding: 30px 22px;

        gap: 15px;
    }

    .message-mark {
        font-size: 50px;
    }

    .message-content h3 {
        font-size: 23px;
    }

    .founder-modern-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px 20px;
    }

    .founder-cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .founder-cta-buttons a {
        justify-content: center;

        width: 100%;
    }

}
