/*=========================================================
SM ABOUT PAGE
GLOBAL STYLES
=========================================================*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --sm-primary: #7a1f1f;
  --sm-secondary: #d89b2b;
  --sm-dark: #222;
  --sm-text: #666;
  --sm-light: #ffffff;
  --sm-bg: #fffaf6;

  --sm-radius: 24px;

  --sm-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  --sm-transition: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;

  background: #fff;

  color: var(--sm-dark);

  overflow-x: hidden;

  line-height: 1.7;
}

img {
  display: block;

  width: 100%;

  max-width: 100%;
}

.container-fluid {
  width: min(92%, 1280px);

  margin: auto;
}

/*======================================
COMMON
======================================*/

.sm-heading {
  text-align: center;

  margin-bottom: 70px;

  max-width: 760px;

  margin-inline: auto;
}

.sm-heading span {
  display: inline-block;

  padding: 8px 22px;

  background: #fff3e3;

  color: var(--sm-secondary);

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

.sm-heading h2 {
  font-size: clamp(34px, 5vw, 52px);

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 18px;
}

.sm-heading p {
  font-size: 17px;

  color: #777;
}

/*======================================
BUTTONS
======================================*/

.sm-btn-primary {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 38px;

  background: linear-gradient(135deg, #7a1f1f, #b63636);

  color: #fff;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.35s;

  box-shadow: 0 12px 35px rgba(122, 31, 31, 0.25);
}

.sm-btn-primary:hover {
  transform: translateY(-6px);

  box-shadow: 0 22px 45px rgba(122, 31, 31, 0.3);
}

.sm-btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 38px;

  border: 2px solid var(--sm-primary);

  color: var(--sm-primary);

  text-decoration: none;

  font-weight: 600;

  border-radius: 50px;

  transition: 0.35s;

  background: #fff;
}

.sm-btn-outline:hover {
  background: var(--sm-primary);

  color: #fff;
}

/*======================================
ABOUT HERO
======================================*/

.sm-about-hero {
  position: relative;

  padding: 120px 0;

  background: linear-gradient(135deg, #fff8ef, #fff);

  overflow: hidden;
}

.sm-about-overlay {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background:
    radial-gradient(
      circle at top right,
      rgba(216, 155, 43, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(122, 31, 31, 0.08),
      transparent 40%
    );

  pointer-events: none;
}

.sm-about-grid {
  display: grid;

  grid-template-columns: 1fr 560px;

  gap: 80px;

  align-items: center;

  position: relative;

  z-index: 2;
}

.sm-about-tag {
  display: inline-block;

  padding: 12px 22px;

  background: #fff;

  border-radius: 50px;

  box-shadow: var(--sm-shadow);

  font-size: 15px;

  font-weight: 700;

  color: var(--sm-secondary);

  margin-bottom: 28px;
}

.sm-about-content h1 {
  font-size: clamp(42px, 6vw, 68px);

  line-height: 1.1;

  font-weight: 800;

  margin-bottom: 25px;
}

.sm-about-content h1 span {
  color: var(--sm-primary);
}

.sm-about-content p {
  font-size: 18px;

  color: #666;

  margin-bottom: 35px;
}

.sm-about-buttons {
  display: flex;

  gap: 18px;

  margin-bottom: 40px;

  flex-wrap: wrap;
}

.sm-about-features {
  display: flex;

  gap: 22px;

  flex-wrap: wrap;
}

.sm-feature {
  display: flex;

  align-items: center;

  gap: 16px;

  background: #fff;

  padding: 18px 22px;

  border-radius: 20px;

  box-shadow: var(--sm-shadow);

  flex: 1 1 240px;

  transition: 0.35s;
}

.sm-feature:hover {
  transform: translateY(-8px);
}

.sm-feature i {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #7a1f1f, #d89b2b);

  color: #fff;

  font-size: 22px;

  flex-shrink: 0;
}

.sm-feature h4 {
  font-size: 18px;

  margin-bottom: 3px;
}

.sm-feature span {
  font-size: 14px;

  color: #777;
}

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

.sm-about-images {
  position: relative;
}

.sm-image-main {
  border-radius: 32px;

  overflow: hidden;

  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

.sm-image-main img {
  height: 650px;

  object-fit: cover;

  transition: 0.5s;
}

.sm-image-main:hover img {
  transform: scale(1.06);
}

.sm-image-small {
  position: absolute;

  width: 240px;

  bottom: -30px;

  left: -40px;

  overflow: hidden;

  border-radius: 22px;

  border: 8px solid #fff;

  box-shadow: var(--sm-shadow);
}

.sm-image-small img {
  height: 220px;

  object-fit: cover;
}

.sm-floating-card {
  position: absolute;

  background: #fff;

  padding: 18px 24px;

  border-radius: 20px;

  box-shadow: var(--sm-shadow);

  text-align: center;

  min-width: 170px;
}

.sm-floating-card h2 {
  font-size: 34px;

  font-weight: 800;

  color: var(--sm-primary);

  margin-bottom: 5px;
}

.sm-floating-card span {
  font-size: 14px;

  color: #777;
}

.sm-card-one {
  top: 40px;

  right: -30px;
}

.sm-card-two {
  bottom: 70px;

  right: -30px;
}
/*=========================================================
SM STORY SECTION
=========================================================*/

.sm-story-section {
  padding: 120px 0;

  background: #fff;

  position: relative;

  overflow: hidden;
}

.sm-story-section::before {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(216, 155, 43, 0.08);

  top: -180px;

  right: -180px;
}

.sm-story-grid {
  display: grid;

  grid-template-columns: 520px 1fr;

  gap: 90px;

  align-items: center;

  position: relative;

  z-index: 2;
}

/*============================
LEFT IMAGES
============================*/

.sm-story-images {
  position: relative;
}

.sm-story-big {
  overflow: hidden;

  border-radius: 32px;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.sm-story-big img {
  height: 620px;

  object-fit: cover;

  transition: 0.45s;
}

.sm-story-big:hover img {
  transform: scale(1.06);
}

.sm-story-box {
  position: absolute;

  bottom: 35px;

  left: -35px;

  background: #7a1f1f;

  color: #fff;

  padding: 26px;

  border-radius: 24px;

  width: 170px;

  text-align: center;

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

.sm-story-box h2 {
  font-size: 48px;

  font-weight: 800;

  line-height: 1;

  margin-bottom: 10px;
}

.sm-story-box span {
  font-size: 15px;

  line-height: 1.5;

  display: block;
}

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

.sm-story-content {
  padding-left: 10px;
}

.sm-section-title {
  display: inline-block;

  padding: 8px 20px;

  background: #fff4e6;

  color: #d89b2b;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 20px;
}

.sm-story-content h2 {
  font-size: clamp(34px, 5vw, 52px);

  line-height: 1.2;

  margin-bottom: 25px;

  font-weight: 800;

  color: #222;
}

.sm-story-content p {
  font-size: 17px;

  color: #666;

  margin-bottom: 22px;

  line-height: 1.9;
}

/*============================
FEATURE LIST
============================*/

.sm-story-list {
  margin: 40px 0;

  display: grid;

  gap: 22px;
}

.sm-story-item {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 20px 22px;

  background: #fff;

  border-radius: 20px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.sm-story-item:hover {
  transform: translateX(10px);

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

.sm-story-item i {
  width: 58px;

  height: 58px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #7a1f1f, #d89b2b);

  color: #fff;

  font-size: 20px;

  flex-shrink: 0;
}

.sm-story-item h4 {
  font-size: 19px;

  font-weight: 700;

  margin-bottom: 6px;

  color: #222;
}

.sm-story-item p {
  margin: 0;

  font-size: 15px;

  line-height: 1.7;

  color: #777;
}

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

.sm-about-images,
.sm-story-images {
  animation: smFloat 5s ease-in-out infinite;
}

@keyframes smFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

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

@media (max-width: 1100px) {
  .sm-story-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .sm-story-images {
    max-width: 650px;

    margin: auto;
  }

  .sm-story-content {
    padding-left: 0;

    text-align: center;
  }

  .sm-story-list {
    max-width: 700px;

    margin: 40px auto;
  }
}

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

@media (max-width: 768px) {
  .sm-story-section {
    padding: 80px 0;
  }

  .sm-story-big img {
    height: 420px;
  }

  .sm-story-box {
    left: 20px;

    bottom: 20px;

    width: 130px;

    padding: 18px;
  }

  .sm-story-box h2 {
    font-size: 34px;
  }

  .sm-story-item {
    padding: 18px;

    text-align: left;
  }

  .sm-story-item i {
    width: 48px;

    height: 48px;

    font-size: 18px;
  }

  .sm-story-content .sm-btn-primary {
    width: 100%;
  }
}

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

@media (max-width: 480px) {
  .sm-story-big img {
    height: 320px;
  }

  .sm-story-content h2 {
    font-size: 30px;
  }

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

  .sm-story-box {
    width: 110px;

    padding: 15px;
  }

  .sm-story-box h2 {
    font-size: 28px;
  }

  .sm-story-box span {
    font-size: 12px;
  }

  .sm-story-item {
    flex-direction: column;

    align-items: flex-start;
  }

  .sm-story-item i {
    margin-bottom: 5px;
  }
}
/*=========================================================
SM WHY CHOOSE SECTION
=========================================================*/

.sm-why-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #fff, #fff8f2);
  position: relative;
  overflow: hidden;
}

.sm-why-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(216, 155, 43, 0.08);
  border-radius: 50%;
  top: -250px;
  right: -220px;
}

.sm-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.sm-why-card {
  background: #fff;

  border-radius: 28px;

  padding: 45px 35px;

  text-align: center;

  transition: 0.4s;

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

  position: relative;

  overflow: hidden;
}

.sm-why-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg, #7a1f1f, #d89b2b);

  transform: scaleX(0);

  transition: 0.35s;
}

.sm-why-card:hover::before {
  transform: scaleX(1);
}

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

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.sm-icon {
  width: 90px;

  height: 90px;

  border-radius: 50%;

  margin: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  background: linear-gradient(135deg, #7a1f1f, #d89b2b);

  color: #fff;

  font-size: 34px;

  margin-bottom: 30px;

  transition: 0.35s;
}

.sm-why-card:hover .sm-icon {
  transform: rotate(12deg) scale(1.08);
}

.sm-why-card h3 {
  font-size: 24px;

  margin-bottom: 15px;

  color: #222;
}

.sm-why-card p {
  color: #666;

  line-height: 1.8;

  font-size: 15px;
}

/*=========================================================
STATISTICS
=========================================================*/

.sm-stats-section {
  padding: 120px 0;

  background: linear-gradient(135deg, #6f1717, #8e2626);

  color: #fff;

  position: relative;

  overflow: hidden;
}

.sm-stats-section::before {
  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  border-radius: 50%;

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

  right: -300px;

  top: -300px;
}

.sm-stats-section .sm-heading h2 {
  color: #fff;
}

.sm-stats-section .sm-heading p {
  color: #eee;
}

.sm-stats-section .sm-heading span {
  background: rgba(255, 255, 255, 0.12);

  color: #ffd27d;
}

.sm-stats-grid {
  display: grid;

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

  gap: 28px;

  position: relative;

  z-index: 2;
}

.sm-stat-card {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(15px);

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

  border-radius: 25px;

  text-align: center;

  padding: 40px 25px;

  transition: 0.35s;
}

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

  background: rgba(255, 255, 255, 0.12);
}

.sm-stat-icon {
  width: 85px;

  height: 85px;

  margin: auto;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #7a1f1f;

  font-size: 34px;

  margin-bottom: 25px;
}

.sm-stat-card h2 {
  font-size: 48px;

  font-weight: 800;

  margin-bottom: 10px;
}

.sm-stat-card span {
  color: #f3f3f3;

  font-size: 16px;
}

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

@media (max-width: 1100px) {
  .sm-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sm-why-section {
    padding: 80px 0;
  }

  .sm-stats-section {
    padding: 80px 0;
  }

  .sm-why-grid {
    grid-template-columns: 1fr;
  }

  .sm-stats-grid {
    grid-template-columns: 1fr;
  }

  .sm-why-card {
    padding: 35px 25px;
  }

  .sm-icon {
    width: 75px;

    height: 75px;

    font-size: 28px;
  }

  .sm-stat-card {
    padding: 30px;
  }

  .sm-stat-card h2 {
    font-size: 38px;
  }
}
/*=========================================================
SM JOURNEY TIMELINE
=========================================================*/

.sm-journey-section {
  padding: 120px 0;
  background: #fffaf6;
  position: relative;
  overflow: hidden;
}

.sm-timeline {
  max-width: 900px;
  margin: 70px auto 0;
  position: relative;
}

.sm-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(#7a1f1f, #d89b2b);
  border-radius: 10px;
}

.sm-timeline-item {
  position: relative;
  padding-left: 95px;
  margin-bottom: 50px;
}

.sm-timeline-dot {
  position: absolute;
  left: 20px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #7a1f1f;
  box-shadow: 0 0 0 8px rgba(122, 31, 31, 0.12);
  z-index: 2;
}

.sm-timeline-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.sm-timeline-card:hover {
  transform: translateX(10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.sm-year {
  display: inline-block;
  padding: 8px 18px;
  background: #fff4e6;
  color: #d89b2b;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sm-timeline-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #222;
}

.sm-timeline-card p {
  color: #666;
  line-height: 1.8;
}

/*=========================================================
PROCESS SECTION
=========================================================*/

.sm-process-section {
  padding: 120px 0;
  background: #fff;
}

.sm-process-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: start;
}

.sm-process-card {
  background: #fff;
  border-radius: 24px;
  text-align: center;
  padding: 35px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  position: relative;
}

.sm-process-card:hover {
  transform: translateY(-12px);
}

.sm-step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #7a1f1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
}

.sm-process-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7a1f1f, #d89b2b);
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
}

.sm-process-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.sm-process-card p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.sm-process-line {
  display: none;
}

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

.sm-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #7a1f1f, #a32c2c);
}

.sm-cta-box {
  max-width: 950px;
  margin: auto;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  padding: 70px 50px;
  border-radius: 30px;
}

.sm-cta-box span {
  display: inline-block;
  color: #ffd27d;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.sm-cta-box h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
}

.sm-cta-box p {
  max-width: 650px;
  margin: auto;
  color: #f5f5f5;
  line-height: 1.8;
}

.sm-cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sm-cta-box .sm-btn-outline {
  background: #fff;
  border-color: #fff;
}

.sm-cta-box .sm-btn-outline:hover {
  background: #d89b2b;
  border-color: #d89b2b;
}

/*=========================================================
FINAL RESPONSIVE
=========================================================*/

@media (max-width: 1200px) {
  .sm-process-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .sm-timeline {
    max-width: 100%;
  }

  .sm-process-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm-cta-box h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .sm-journey-section,
  .sm-process-section,
  .sm-cta-section {
    padding: 80px 0;
  }

  .sm-timeline::before {
    left: 20px;
  }

  .sm-timeline-item {
    padding-left: 65px;
  }

  .sm-timeline-dot {
    left: 5px;
    width: 28px;
    height: 28px;
    border-width: 5px;
  }

  .sm-timeline-card {
    padding: 22px;
  }

  .sm-process-wrapper {
    grid-template-columns: 1fr;
  }

  .sm-process-card {
    padding: 30px 20px;
  }

  .sm-cta-box {
    padding: 45px 25px;
  }

  .sm-cta-box h2 {
    font-size: 30px;
  }

  .sm-cta-buttons {
    flex-direction: column;
  }

  .sm-cta-buttons a {
    width: 100%;
  }
  .sm-about-grid {
    grid-template-columns: 1fr;

  }
}

@media (max-width: 480px) {
  .sm-year {
    font-size: 12px;
  }

  .sm-timeline-card h3 {
    font-size: 22px;
  }

  .sm-timeline-card p {
    font-size: 15px;
  }

  .sm-process-icon {
    width: 75px;
    height: 75px;
    font-size: 28px;
  }

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

  .sm-cta-box h2 {
    font-size: 26px;
  }

  .sm-cta-box p {
    font-size: 15px;
  }
}








