/* =========================================================
   GLOBAL RESPONSIVE FOUNDATION
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html,
body {
  overflow-x: hidden;
}

/* =========================================================
   SECTION SPACING
========================================================= */

section {
  padding: 100px 0;
}

@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  position: relative;
  min-height: 90vh;

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

  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
  pointer-events: none;

  transition: transform 6s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

/* overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1000px;

  padding: 0 24px;
}

/* NGO Name */
.trust-name {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

/* Tagline */
.hero-tagline {
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  line-height: 1.6;

  color: #f6d7b0;
  margin-bottom: 20px;

  font-weight: 500;
  text-align: center;
}

/* Description */
.hero-description {
  max-width: 850px;
  margin: 0 auto 30px;

  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;

  color: #f3f3f3;
}

/* Button */
.hero-btn {
  display: inline-block;

  background: #E57C23;
  color: white;

  padding: 14px 34px;
  border-radius: 40px;

  font-weight: 600;
  font-size: 16px;

  text-decoration: none;

  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #c96a20;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* =========================================================
   HERO RESPONSIVE
========================================================= */

/* Tablet */
@media (max-width: 992px) {

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-description {
    max-width: 700px;
  }
}

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

  .hero {
    min-height: 75vh;
    padding: 40px 0;
  }

  .hero-bg {
    object-position: 65% center;
  }

  .hero::after {
    background: rgba(0,0,0,0.5);
  }

  .hero-content {
    padding: 0 20px;
  }

  .trust-name {
    margin-bottom: 14px;
  }

  .hero-tagline {
    margin-bottom: 18px;
  }

  .hero-description {
    line-height: 1.7;
  }

  .hero-btn {
    width: auto;
    padding: 13px 28px;
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-btn {
    width: 100%;
    max-width: 260px;
  }
}

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

.glass-card {
  background: rgba(255,255,255,0.65);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 10px 35px rgba(0,0,0,0.08);

  padding: 40px;

  transition: 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(229,124,35,0.2);
}

/* Tablet */
@media (max-width: 992px) {
  .glass-card {
    padding: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .glass-card {
    padding: 24px;
    border-radius: 16px;
  }
}

/* =========================================================
   STATS SECTION
========================================================= */

.stats-section {
  padding: 80px 20px;
  text-align: center;

  background: linear-gradient(135deg,#fff8f1,#fde8dc);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.stat {
  position: relative;
  cursor: pointer;

  background: linear-gradient(135deg, #FFF8E7, #F5E6C8);
}

.stat p {
  font-size: 14px;
  color: #444;
  text-align: center;
}
.gallery-modal {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.9);

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

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 999999;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-swiper {
  width: 90%;
  max-width: 900px;
}

.gallery-swiper img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 14px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;

  font-size: 42px;
  color: #fff;

  cursor: pointer;
  z-index: 1000000;
}

.swiper-button-next,
.swiper-button-prev {
  color: #99215D;
}
/* Tablet */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =====================================================
   VISION & MISSION SECTION
===================================================== */

.vision-mission {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fdf6f0, #f7f1e8);
  overflow: hidden;
}

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

.vision-mission .heading {
  text-align: center;
  margin-bottom: 50px;
}

.vision-mission .heading h2 {
  font-size: 42px;
  line-height: 1.2;
}

/* =====================
   VISION BLOCK
===================== */

.vision-block {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
  padding: 0 15px;
}

.vision-text {
  font-size: 22px;
  line-height: 1.9;
  color: #333;
}


/* ===================== */
/* SECTION TRANSITION */
/* ===================== */

.section-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin: 60px 0 45px;

  width: 100%;
}

.section-transition::before,
.section-transition::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d4af37;
  max-width: 120px;
}

.section-transition span {
  padding: 10px 18px;
  border-radius: 30px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.4);

  font-size: 15px;
  color: #a6782e;

  text-align: center;
  white-space: nowrap;
}

/* =====================
   MISSION INTRO
===================== */

.mission-intro {
  max-width: 850px;
  margin: 0 auto 25px;
  text-align: center;
  padding: 0 15px;
}

.mission-intro p {
  font-size: 18px;
  line-height: 1.8;
}

/* =====================
   SUBTEXT
===================== */

.vision-mission .subtext {
  text-align: center;
  margin-bottom: 45px;
  padding: 0 15px;
}

/* =====================
   MISSION PILLARS
===================== */

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 35px;

  max-width: 1100px;
  margin: 0 auto 70px;
}

.pillar {
  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(12px);

  border-radius: 18px;

  padding: 35px 28px;

  box-shadow: 0 10px 35px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.pillar:hover {
  transform: translateY(-6px);
}

.pillar h4 {
  margin-bottom: 15px;
}

.pillar p {
  margin-bottom: 0;
}

/* =====================
   RESOLUTIONS
===================== */

.mission-resolutions {
  margin-top: 20px;
}

.resolution-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  max-width: 1150px;
  margin: 0 auto;
}

.resolution {
  background: rgba(255,255,255,0.65);

  backdrop-filter: blur(12px);

  border-radius: 18px;

  padding: 30px 24px;

  text-align: center;

  transition: 0.3s ease;
}

.resolution:hover {
  transform: translateY(-6px);
}

.resolution span {
  font-size: 34px;
  display: block;
  margin-bottom: 14px;
}

.resolution h5 {
  margin-bottom: 12px;
}

.resolution p {
  margin-bottom: 0;
  text-align: center;
}

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

@media (max-width: 992px) {

  .vision-mission {
    padding: 80px 20px;
  }

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

  .vision-text {
    font-size: 20px;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
  }

  .resolution-container {
    grid-template-columns: 1fr;
  }

}

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

@media (max-width: 768px) {

  .vision-mission {
    padding: 70px 16px;
  }

  .vision-mission .heading h2 {
    font-size: 30px;
  }

  .vision-text {
    font-size: 17px;
    line-height: 1.8;
  }

  .mission-intro p {
    font-size: 16px;
  }

  .pillar {
    padding: 28px 22px;
  }

  .resolution {
    padding: 28px 20px;
  }

  .section-transition {
    gap: 10px;
    margin: 45px 0 35px;
  }

  .section-transition::before,
  .section-transition::after {
    max-width: 60px;
  }

  .section-transition span {
    font-size: 13px;
    padding: 8px 14px;

    white-space: normal;
    line-height: 1.4;
  }


}

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

@media (max-width: 480px) {

  .vision-mission .heading h2 {
    font-size: 26px;
  }

  .vision-text {
    font-size: 16px;
  }

  .pillar h4 {
    font-size: 22px;
  }
  
    .section-transition::before,
  .section-transition::after {
    max-width: 35px;
  }


}


/* =========================================================
   TRUST CARDS
========================================================= */

.trust-premium-container {
  max-width: 1150px;

  margin: auto;

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

  gap: 35px;
}

@media (max-width: 992px) {
  .trust-premium-container {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   TIMELINE
========================================================= */

.timeline-wrapper {
  position: relative;

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

  gap: 30px;
  margin-top: 60px;
}

@media (max-width: 992px) {
  .timeline-wrapper {
    grid-template-columns: 1fr;
  }

  .timeline-wrapper::before {
    display: none;
  }
}


/* ===================== */
/* IMPACT SECTION */
/* ===================== */

.impact-container {
  margin-top: 50px;
  width: 100%;
}

/* GRID */
.impact-grid {
  display: grid;

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

  gap: 28px;

  align-items: stretch;
}

/* CARD */
.impact-card {
  padding: 32px 26px;

  border-radius: 20px;

  height: 100%;

  transition: all 0.35s ease;

  opacity: 0;
  transform: translateY(30px);
}

.impact-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Heading */
.impact-card h5 {
  margin-bottom: 14px;
  line-height: 1.4;
}

/* Text */
.impact-card p {
  margin-bottom: 0;
  line-height: 1.8;
}

/* Hover */
.impact-card:hover {
  transform: translateY(-6px);
}

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

@media (max-width: 992px) {

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

}

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

@media (max-width: 768px) {

  .impact-container {
    margin-top: 35px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .impact-card {
    padding: 24px 20px;
  }

  .impact-card h5 {
    font-size: 20px;
  }

  .impact-card p {
    font-size: 15px;
    line-height: 1.7;
  }

}

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

@media (max-width: 480px) {

  .impact-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .impact-card h5 {
    font-size: 18px;
  }

  .impact-card p {
    font-size: 14px;
  }

}

/* =========================================================
   STORIES SECTION
========================================================= */

.stories-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fdfaf6, #f7f1e8);
  overflow: hidden;
}

.stories-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================================================
   SWIPER
========================================================= */

.success-stories-swiper {
  margin-top: 50px;
  padding: 10px 5px 70px;
  overflow: hidden;
}

.success-stories-swiper .swiper-wrapper {
  align-items: stretch;
}

.success-stories-swiper .swiper-slide {
  height: auto;
  display: flex;
}

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

.story-card {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.35);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover */
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.10);
}

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

.story-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.45s ease;
}

.story-card:hover .story-img img {
  transform: scale(1.05);
}

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

.story-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 26px 24px 28px;
}

.story-content h5 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #2b2b2b;
}

.story-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 22px;
  flex-grow: 1;
}

.story-content strong {
  color: #2f2f2f;
}

/* =========================================================
   BUTTON
========================================================= */

.story-btn {
  align-self: flex-start;

  text-decoration: none;
  color: #a6782e;

  font-size: 0.92rem;
  font-weight: 600;

  position: relative;
  transition: all 0.3s ease;
}

.story-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0;
  height: 1px;

  background: #a6782e;
  transition: width 0.3s ease;
}

.story-btn:hover::after {
  width: 100%;
}

/* =========================================================
   SWIPER NAVIGATION
========================================================= */

.success-stories-swiper .swiper-button-prev,
.success-stories-swiper .swiper-button-next {
  color: #a6782e;
  transform: scale(0.8);
}

.success-stories-swiper .swiper-pagination {
  bottom: 10px !important;
}

.success-stories-swiper .swiper-pagination-bullet {
  background: #a6782e;
  opacity: 0.35;
}

.success-stories-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

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

@media (max-width: 992px) {

  .stories-section {
    padding: 80px 18px;
  }

  .story-img {
    height: 220px;
  }

  .story-content {
    padding: 22px;
  }

  .story-content h5 {
    font-size: 1.2rem;
  }

  .story-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

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

@media (max-width: 768px) {

  .stories-section {
    padding: 70px 14px;
  }

  .success-stories-swiper {
    margin-top: 35px;
    padding-bottom: 60px;
  }

  .story-card {
    border-radius: 18px;
  }

  .story-img {
    height: 210px;
  }

  .story-content {
    padding: 20px 18px 24px;
  }

  .story-content h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .story-content p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .story-btn {
    font-size: 0.88rem;
  }

  .success-stories-swiper .swiper-button-prev,
  .success-stories-swiper .swiper-button-next {
    display: none;
  }
}

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

@media (max-width: 480px) {

  .story-img {
    height: 190px;
  }

  .story-content {
    padding: 18px 16px 22px;
  }

  .story-content p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   FOUNDERS SECTION
========================================================= */

.founders {
  padding: 90px 20px;
}

/* =========================================================
   GRID LAYOUT
========================================================= */

.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;

  margin-bottom: 90px;
}

/* Reverse Layout */
.founder.reverse .founder-image {
  order: 2;
}

.founder.reverse .founder-content {
  order: 1;
}

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

.founder-image {
  display: flex;
  justify-content: center;
}

.founder-image img {
  width: 100%;
  max-width: 420px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  transition: transform 0.4s ease;
}

.founder-image img:hover {
  transform: scale(1.03);
}

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

.founder-label {
  font-size: 12px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: #888;

  margin-bottom: 10px;
}

.founder-name {
  font-size: 34px;

  line-height: 1.3;

  margin-bottom: 18px;
}

.founder-lead {
  font-size: 18px;

  font-weight: 500;

  line-height: 1.8;

  margin-bottom: 18px;
}

/* BODY TEXT */

.founder-full p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 14px;
}

/* =========================================================
   COLLAPSE
========================================================= */

.founder-full {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.45s ease;
}

.founder-full.show {
  max-height: 1200px;
}

/* =========================================================
   BUTTON
========================================================= */

.read-more-btn {
  margin-top: 14px;

  background: none;

  border: none;

  color: #8b5e3c;

  font-weight: 600;

  cursor: pointer;

  padding: 0;
}

/* =========================================================
   LINK
========================================================= */

.link-primary {
  display: inline-block;

  margin-top: 14px;

  color: #8b5e3c;

  font-weight: 600;

  text-decoration: none;
}

/* =========================================================
   ANIMATION
========================================================= */

.fade-in {
  opacity: 0;

  transform: translateY(40px);

  transition: 0.7s ease;
}

.fade-in.visible {
  opacity: 1;

  transform: translateY(0);
}

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

@media (max-width: 992px) {

  .founder {
    gap: 35px;
  }

  .founder-name {
    font-size: 28px;
  }

  .founder-lead {
    font-size: 17px;
  }

}

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

@media (max-width: 768px) {

  .founders {
    padding: 70px 18px;
  }

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

    gap: 28px;

    margin-bottom: 70px;
  }

  /* Reset order on mobile */
  .founder.reverse .founder-image,
  .founder.reverse .founder-content {
    order: unset;
  }

  .founder-image img {
    max-width: 100%;
  }

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

  .founder-name {
    font-size: 24px;
  }

  .founder-lead {
    font-size: 16px;

    line-height: 1.7;
  }

  .founder-full p {
    font-size: 15px;

    line-height: 1.7;
  }

}

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

@media (max-width: 480px) {

  .founder-name {
    font-size: 22px;
  }

  .founder-lead {
    font-size: 15px;
  }

  .founder-full p {
    font-size: 14px;
  }

}
/* =========================================================
   IMAGE GALLERY SECTION
========================================================= */

.image-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fdfaf6, #f7f1e8);
}

/* =========================================================
   GRID
========================================================= */

.gallery-grid {
  margin-top: 50px;

  display: grid;

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

  gap: 30px;

  align-items: stretch;
}

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

.gallery-card {
  display: flex;
  flex-direction: column;

  height: 100%;

  text-decoration: none;

  background: rgba(255,255,255,0.65);

  backdrop-filter: blur(14px);

  border-radius: 20px;

  overflow: hidden;

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

  transition: all 0.35s ease;
}

/* Hover */

.gallery-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

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

.gallery-img {
  width: 100%;

  height: 240px;

  overflow: hidden;
}

.gallery-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

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

.gallery-content {
  padding: 24px;

  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-content h5 {
  margin-bottom: 12px;

  color: #2b2b2b;

  line-height: 1.4;
}

.gallery-content p {
  color: #666;

  line-height: 1.7;

  margin-bottom: 0;
}

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

@media (max-width: 992px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
  }

  .gallery-img {
    height: 220px;
  }

}

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

@media (max-width: 768px) {

  .image-section {
    padding: 70px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .gallery-img {
    height: 220px;
  }

  .gallery-content {
    padding: 20px;
  }

  .gallery-content h5 {
    font-size: 20px;
  }

  .gallery-content p {
    font-size: 15px;

    line-height: 1.6;
  }

}

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

@media (max-width: 480px) {

  .gallery-img {
    height: 200px;
  }

  .gallery-content {
    padding: 18px;
  }

  .gallery-content h5 {
    font-size: 18px;
  }

  .gallery-content p {
    font-size: 14px;
  }

}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section {
  padding: 100px 20px;

  background: linear-gradient(135deg, #fdfaf6, #f7f1e8);

  text-align: center;

  overflow: hidden;
}

/* =========================================================
   SWIPER
========================================================= */

.testimonials-swiper {
  margin-top: 55px;

  padding-bottom: 60px;
}

.testimonials-swiper .swiper-wrapper {
  display: flex;

  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  height: auto;

  display: flex;

  padding: 10px;
}

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

.testimonial-card {
  width: 100%;

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

  background: rgba(255,255,255,0.65);

  backdrop-filter: blur(14px);

  border-radius: 20px;

  padding: 32px 28px;

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

  transition: all 0.35s ease;

  min-height: 100%;
}

/* Hover */

.testimonial-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================================================
   TEXT
========================================================= */

.testimonial-text {
  font-size: 16px;

  line-height: 1.9;

  color: #4f4f4f;

  font-style: italic;

  margin-bottom: 24px;
}

.testimonial-text b {
  color: #2b2b2b;
}

/* =========================================================
   AUTHOR
========================================================= */

.testimonial-author h6 {
  font-size: 18px;

  font-weight: 600;

  margin-bottom: 4px;

  color: #2b2b2b;
}

.testimonial-author span {
  font-size: 14px;

  color: #8a8a8a;
}

/* =========================================================
   ACTIVE SLIDE
========================================================= */

.swiper-slide {
  opacity: 0.55;

  transition: opacity 0.3s ease;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
  opacity: 1;
}

/* =========================================================
   NAVIGATION
========================================================= */

.swiper-button-next,
.swiper-button-prev {
  color: #a6782e;

  transform: scale(0.8);
}

.swiper-pagination-bullet {
  background: #a6782e;

  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

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

@media (max-width: 992px) {

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-text {
    font-size: 15px;
  }

}

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

@media (max-width: 768px) {

  .testimonial-section {
    padding: 75px 16px;
  }

  .testimonials-swiper {
    margin-top: 40px;

    padding-bottom: 50px;
  }

  .testimonials-swiper .swiper-slide {
    padding: 6px;
  }

  .testimonial-card {
    padding: 24px 20px;

    border-radius: 18px;
  }

  .testimonial-text {
    font-size: 15px;

    line-height: 1.8;
  }

  .testimonial-author h6 {
    font-size: 17px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

}

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

@media (max-width: 480px) {

  .testimonial-card {
    padding: 22px 18px;
  }

  .testimonial-text {
    font-size: 14px;

    line-height: 1.7;
  }

  .testimonial-author h6 {
    font-size: 16px;
  }

  .testimonial-author span {
    font-size: 13px;
  }

}