/*
Theme Name: SRM
Theme URI: https://example.com/
Author: Abubakar
Author URI: https://example.com/
Description: SRM is a lightweight, performance-first WordPress theme with modern clean UI and Gutenberg support.
Version: 1.0.0
Requires at least: 6.6
Tested up to: 6.9.1
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: srm
Tags: blog, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ===== CONTAINER ===== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 60px;
  box-sizing: border-box;
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 50%, #fce8d8 100%);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section .main-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.hero-left {
  flex: 1;
  max-width: 480px;
}

.hero-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.hero-heading .highlight {
  color: #a374f7;
}

.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.hero-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 36px 0;
  max-width: 400px;
}

.hero-btn {
  display: inline-block;
  background-color: #1a1a2e;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.3px;
}

.hero-btn:hover {
  background-color: #a374f7;
  transform: translateY(-2px);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.target-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  background: #f0f0ff;
  width: 100%;
  padding: 60px 0;
}

.about-section .about-main-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #ddd8f8;
  border-radius: 100px;
  padding: 50px 50px;
  position: relative;
  overflow: hidden;
}

.about-left {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.about-illustration {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.about-right {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.about-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.about-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 16px 0;
}

.about-btn {
  display: inline-block;
  background-color: #1a1a2e;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 6px;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.3px;
}

.about-btn:hover {
  background-color: #a374f7;
  transform: translateY(-2px);
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 60%, #fce8d8 100%);
  width: 100%;
  padding: 80px 0;
}

.services-section .services-main-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.sv-header {
  text-align: center;
  max-width: 1200px;
  width: 100%;
}

.sv-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 18px;
}

.sv-purple {
  color: #a374f7;
}

.sv-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 18px;
}

.sv-meta-icon {
  width: 108px;
  height: 92px;
  flex-shrink: 0;
}

.sv-desc {
  font-size: 24px;
  color: #000;
  text-align: left;
  line-height: 1.6;
}

.sv-top-btn {
  display: inline-block;
  background: #1a1a2e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sv-top-btn:hover {
  background: #a374f7;
}

.sv-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
  width: 100%;
}

.sv-list-card {
  background: #fff;
  border-radius: 50px;
  border: 1px solid black;
  padding: 28px 24px;
  padding-top: 71px;
  flex: 1;
  max-width: 437px;
}

.sv-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
  border-radius: 30px;
}

.sv-list-item:last-child {
  border-bottom: none;
}

.sv-list-item.active {
  background: #c4b5f7;
  text-decoration: none;
  border-bottom: none;
  font-weight: 700;
}

.sv-list-item span {
  font-weight: 700;
}

.sv-detail-card {
  background: #c4b5f7;
  border-radius: 50px;
  border: 1px solid black;
  padding: 28px 24px;
  flex: 1;
  max-width: 345px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sv-detail-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 14px;
}

.sv-detail-desc {
  font-size: 13px;
  color: #333;
  line-height: 1.65;
}

.sv-explore-btn {
  display: inline-block;
  background: #1a1a2e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  margin-top: 20px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s ease;
}

.sv-explore-btn:hover {
  background: #a374f7;
}

.sv-image-card {
  background: #fff;
  border-radius: 50px;
  border: 1px solid black;
  flex: 1;
  max-width: 523px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 487px;
}

.sv-service-img {
  width: 451.59px;
  height: 402.95px;
}

/* ===========================
   WHY CHOOSE US SECTION
=========================== */
.whychoose-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 60%, #fce8d8 100%);
  width: 100%;
  padding: 80px 0;
}

.whychoose-section .whychoose-main-div {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.wc-left {
  flex: 1;
  max-width: 420px;
}

.wc-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.1;
  margin: 0 0 18px;
}

.wc-italic {
  color: #a374f7;
  font-style: italic;
}

.wc-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
}

.wc-right {
  flex: 1;
  position: relative;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.wc-person-img {
  width: 730px;
  height: 571px;
}

.wc-cards {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.wc-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.wc-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  font-size: 13px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 0.5px;
  border: 1.5px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;
  flex: 1;
}

.wc-card-featured {
  background: #a374f7;
  border-radius: 20px;
  padding: 28px 24px;
  min-width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc-feat-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-feat-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.wc-feat-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.wc-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
  padding: 0;
}

.wc-feat-list li {
  font-size: 12.5px;
  color: #fff;
  display: flex;
  gap: 7px;
  align-items: flex-start;
  line-height: 1.45;
}

.wc-feat-list li::before {
  content: "•";
  flex-shrink: 0;
}

/* ===========================
   TRUSTED SECTION
=========================== */
.trusted-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 60%, #fce8d8 100%);
  width: 100%;
  padding: 70px 0;
}

.trusted-section .trusted-main-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.trusted-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
}

.trusted-purple {
  color: #a374f7;
}

.trusted-logos {
  width: 100%;
}

.trusted-logos-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===========================
   RECENT CLIENT WINS
=========================== */
.wins-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 60%, #fce8d8 100%);
  width: 100%;
  padding: 80px 0;
}

.wins-section .wins-main-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.wins-header {
  text-align: center;
}

.wins-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 14px;
  line-height: 1.15;
}

.wins-purple {
  color: #a374f7;
}

.wins-subtext {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.wins-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #e8e8e8;
}

.wins-card-dark {
  background: #1a1a2e;
  border: none;
}

.wins-stat {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.wins-stat-purple {
  color: #a374f7;
}

.wins-stat-light-purple {
  color: #c4b5f7;
}

.wins-desc {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.wins-desc-light {
  color: #ccc;
}

.wins-btn {
  display: inline-block;
  background: #1a1a2e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s ease;
}

.wins-btn:hover {
  background: #a374f7;
}

.wins-btn-purple {
  background: #a374f7;
}

.wins-btn-purple:hover {
  background: #fff;
  color: #1a1a2e;
}

/* ===========================
   SUCCESS STORIES
=========================== */
.stories-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 60%, #fce8d8 100%);
  width: 100%;
  padding: 80px 0;
}

.stories-section .stories-main-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.stories-header {
  text-align: center;
}

.stories-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 14px;
  line-height: 1.15;
}

.stories-purple {
  color: #a374f7;
}

.stories-subtext {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.stories-wrapper {
  background: #d8cff7;
  border-radius: 28px;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stories-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.stories-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stories-btn-wrap {
  text-align: center;
}

.stories-btn {
  display: inline-block;
  background: #1a1a2e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.stories-btn:hover {
  background: #a374f7;
}

/* ===========================
   BLOGS SECTION
=========================== */
.blogs-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 60%, #fce8d8 100%);
  width: 100%;
  padding: 80px 0;
}

.blogs-section .blogs-main-div {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.blogs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.blogs-top-left {
  flex: 1;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blogs-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.1;
  margin: 0;
}

.blogs-purple {
  color: #a374f7;
}

.blogs-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.blogs-top-btn {
  display: inline-block;
  background: #e8a020;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s ease;
}

.blogs-top-btn:hover {
  background: #a374f7;
}

.blogs-top-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blogs-target-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.blogs-top-right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}

.blogs-person-img {
  width: 510px;
  height: 484px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blogs-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #e8e8e8;
}

.blogs-card-purple {
  background: #c4b5f7;
  border: none;
}

.blogs-date {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.blogs-card-purple .blogs-date {
  color: #6a4fcf;
}

.blogs-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.35;
}

.blogs-card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.blogs-card-purple .blogs-card-desc {
  color: #3a2a70;
}

.blogs-read-more {
  font-size: 13px;
  font-weight: 700;
  color: #a374f7;
  text-decoration: none;
  margin-top: 4px;
  width: fit-content;
}

.blogs-read-more:hover {
  text-decoration: underline;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 60%, #fce8d8 100%);
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

.testimonial-section .testimonial-main-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

/* Heading */
.testimonial-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
  text-align: center;
  line-height: 1.15;
}

.testimonial-purple {
  color: #a374f7;
  font-style: italic;
}

/* Swiper container */
.testimonial-swiper {
  width: 100%;
  padding-bottom: 50px !important;
}

/* Slides */
.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Cards */
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border: 1.5px solid #ddd;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.testimonial-card-active {
  border: 2px solid #74c0fc;
}

.testimonial-text {
  font-size: 14px;
  color: #333;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}

.testimonial-role {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* Pagination dots */
.testimonial-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #1a1a2e;
  opacity: 0.3;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #1a1a2e;
  opacity: 1;
  border-radius: 10px;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 60%, #fce8d8 100%);
  width: 100%;
  padding: 80px 0;
}

.contact-section .contact-main-div {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.contact-card {
  background: #1a1a2e;
  border-radius: 24px;
  padding: 44px 36px;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  overflow: hidden;
}

.contact-card-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.contact-card-purple {
  color: #a374f7;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #a374f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-item p {
  font-size: 13.5px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  padding-top: 6px;
}

.contact-star {
  position: absolute;
  bottom: 28px;
  right: 32px;
}

.contact-star img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.contact-form-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.15;
}

.contact-form-purple {
  color: #a374f7;
  font-style: italic;
}

.contact-form-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0 0 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-input {
  flex: 1;
  padding: 16px 18px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 13.5px;
  color: #333;
  background: #fff;
  outline: none;
  font-family: 'Segoe UI', sans-serif;
  transition: border 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #a374f7;
}

.form-input::placeholder {
  color: #aaa;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: #fff;
  cursor: pointer;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  display: inline-block;
  background: #1a1a2e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: fit-content;
  font-family: 'Segoe UI', sans-serif;
  transition: background 0.3s ease;
}

.form-submit:hover {
  background: #a374f7;
}

/* ===========================
   PROCESS SECTION
=========================== */
.process-section {
  background: linear-gradient(135deg, #f5e6ff 0%, #fdf0e8 50%, #fce8d8 100%);
  width: 100%;
  padding: 80px 0;
}

.process-section .process-main-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pf-heading-wrap {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.pf-star {
  position: absolute;
  left: -50px;
  top: 0;
  font-size: 28px;
  color: #1a1a2e;
  font-weight: 800;
}

.pf-heading {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0;
}

.pf-highlight {
  color: #a374f7;
}

.pf-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.pf-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pf-center-row {
  display: flex;
  justify-content: center;
}

.pf-card {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border-radius: 50px;
  width: 656px;
  height: 149px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.arow{
  margin-top: -40px;
}

.pf-connector-wrap-btarow{
  justify-content: right !important;
  padding-right: 180px;
}

.card-purple {
  background: #c4b5f7;
  border: none;
}

.card-white {
  background: #fff;
  border: 2px solid #1a1a2e;
}

.card-orange {
  background: #e8a020;
  border: none;
  width: 656px;
  height: 149px;
}

.pf-icon-wrap {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-white-circle {
  background: #fff;
  border: 1.5px solid #a374f7;
}

.icon-gray-circle {
  background: #f0f0f0;
  border: 1.5px solid #bbb;
}

.icon-orange-circle {
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.pf-icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.pf-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.pf-title-lg {
  font-size: 20px;
}

.pf-desc {
  font-size: 12.5px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.pf-desc-dark {
  color: #3a2800;
}

.pf-h-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 2px;
}

.pf-connector-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: visible;
  margin: -2px 0;
}

.pf-connector-wrap svg {
  overflow: visible;
}


/* ============================================
   1024px - Small Laptop
============================================ */
@media (max-width: 1024px) {

  .container {
    padding: 0 40px;
  }

  .hero-section .main-div {
    gap: 30px;
    padding: 50px 0;
  }

  .hero-left {
    max-width: 420px;
  }

  .about-section .about-main-div {
    border-radius: 40px;
    padding: 40px;
  }

  .about-illustration {
    max-width: 340px;
  }

  .sv-list-card {
    padding-top: 40px;
  }

  .sv-image-card {
    height: 400px;
  }

  .wc-card-featured {
    min-width: 200px;
  }

  .pf-card {
    width: 320px;
  }

  .card-orange {
    width: 360px;
  }

  .contact-card {
    width: 300px;
    padding: 36px 28px;
  }
}


/* ============================================
   900px - Tablet Landscape
============================================ */
@media (max-width: 900px) {

  .container {
    padding: 0 30px;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
  }
  .hero-section .main-div {
    flex-direction: column;
    text-align: center;
    padding: 50px 0;
    gap: 30px;
  }
  .hero-left {
    max-width: 100%;
    width: 100%;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-right {
    width: 100%;
  }
  .target-wrapper {
    max-width: 440px;
    margin: 0 auto;
  }

  /* About */
  .about-section .about-main-div {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    border-radius: 30px;
    gap: 24px;
  }
  .about-left {
    min-height: auto;
    width: 100%;
  }
  .about-right {
    max-width: 100%;
    width: 100%;
  }
  .about-illustration {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Services */
  .services-section {
    padding: 50px 0;
  }
  .sv-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .sv-list-card {
    max-width: 100%;
    width: 100%;
    border-radius: 24px;
    padding: 28px 24px;
  }
  .sv-detail-card {
    max-width: 100%;
    width: 100%;
    border-radius: 24px;
  }
  .sv-image-card {
    max-width: 100%;
    width: 100%;
    height: 300px;
    border-radius: 24px;
  }
  .sv-service-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .sv-meta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .sv-desc {
    text-align: center;
    font-size: 16px;
  }
  .sv-meta-icon {
    margin: 0 auto;
  }

  /* Why Choose */
  .whychoose-section {
    padding: 50px 0;
  }
  .wc-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .wc-left {
    max-width: 100%;
    width: 100%;
  }
  .wc-right {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
  }
  .wc-person-img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .wc-cards {
    flex-direction: column;
    gap: 14px;
  }
  .wc-col {
    flex-direction: row;
    gap: 14px;
    width: 100%;
  }
  .wc-card {
    flex: 1;
    min-width: 0;
  }
  .wc-card-featured {
    min-width: unset;
    width: 100%;
  }

  /* Trusted */
  .trusted-section {
    padding: 50px 0;
  }

  /* Wins */
  .wins-section {
    padding: 50px 0;
  }
  .wins-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stories */
  .stories-section {
    padding: 50px 0;
  }
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stories-wrapper {
    padding: 20px;
  }

  /* Blogs */
  .blogs-section {
    padding: 50px 0;
  }
  .blogs-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .blogs-top-left {
    max-width: 100%;
    width: 100%;
  }
  .blogs-top-center {
    display: none;
  }
  .blogs-top-right {
    display: none;
  }
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonial */
  .testimonial-section {
    padding: 50px 0;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-section {
    padding: 50px 0;
  }
  .contact-section .contact-main-div {
    flex-direction: column;
    gap: 24px;
  }
  .contact-card {
    width: 100%;
    box-sizing: border-box;
  }

  /* Process */
  .process-section {
    padding: 50px 0;
  }
  .pf-row {
    flex-direction: column;
    gap: 14px;
  }
  .pf-card {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
  }
  .card-orange {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
  }
  .pf-h-connector {
    display: none;
  }
  .pf-connector-wrap {
    display: none;
  }
  .pf-star {
    left: 0;
    top: -30px;
  }
}


/* ============================================
   768px - Tablet Portrait
============================================ */
@media (max-width: 768px) {

  .container {
    padding: 0 20px;
  }

  /* About */
  .about-section .about-main-div {
    border-radius: 20px;
    padding: 30px 20px;
  }

  /* Blogs */
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonial */
  .testimonial-card {
    padding: 28px 22px;
    gap: 20px;
  }

  /* Process heading */
  .pf-heading-wrap {
    margin-bottom: 36px;
    padding: 0 20px;
  }
}


/* ============================================
   480px - Mobile
============================================ */
@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-section .main-div {
    padding: 36px 0;
  }
  .hero-heading {
    font-size: 40px;
  }
  .hero-sub {
    font-size: 17px;
  }
  .target-wrapper {
    max-width: 300px;
  }
  .hero-btn {
    font-size: 13px;
    padding: 14px 22px;
  }

  /* About */
  .about-section .about-main-div {
    padding: 24px 16px;
    border-radius: 16px;
    gap: 20px;
  }
  .about-illustration {
    max-width: 260px;
  }
  .about-btn {
    font-size: 13px;
    padding: 13px 22px;
  }

  /* Services */
  .sv-heading {
    font-size: 28px;
  }
  .sv-desc {
    font-size: 14px;
  }
  .sv-meta-icon {
    width: 70px;
    height: 60px;
  }
  .sv-image-card {
    height: 240px;
  }
  .sv-list-card {
    border-radius: 16px;
  }
  .sv-detail-card {
    border-radius: 16px;
  }
  .sv-top-btn {
    font-size: 12px;
    padding: 11px 16px;
  }

  /* Why Choose */
  .wc-heading {
    font-size: 34px;
  }
  .wc-col {
    flex-direction: column;
  }
  .wc-card {
    width: 100%;
    min-width: unset;
  }

  /* Trusted */
  .trusted-heading {
    font-size: 22px;
  }

  /* Wins */
  .wins-grid {
    grid-template-columns: 1fr;
  }
  .wins-heading {
    font-size: 28px;
  }

  /* Stories */
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .stories-heading {
    font-size: 28px;
  }

  /* Blogs */
  .blogs-heading {
    font-size: 32px;
  }
  .blogs-top-btn {
    font-size: 12px;
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .blogs-card-title {
    font-size: 15px;
  }

  /* Testimonial */
  .testimonial-heading {
    font-size: 28px;
  }
  .testimonial-card {
    padding: 22px 18px;
    gap: 18px;
  }

  /* Contact */
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  .contact-card {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .contact-form-heading {
    font-size: 28px;
  }
  .form-submit {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .contact-info-item p {
    font-size: 13px;
  }

  /* Process */
  .pf-card {
    max-width: 100%;
    padding: 16px 16px;
    border-radius: 16px;
  }
  .card-orange {
    max-width: 100%;
    border-radius: 16px;
  }
  .pf-heading {
    font-size: 24px;
  }
  .pf-star {
    display: none;
  }
  .pf-icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
}


/* ============================================
   360px - Small Mobile
============================================ */
@media (max-width: 360px) {

  .container {
    padding: 0 12px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .about-heading {
    font-size: 26px;
  }

  .wc-heading {
    font-size: 28px;
  }

  .wins-stat {
    font-size: 28px;
  }

  .testimonial-avatar {
    width: 46px;
    height: 46px;
  }

  .contact-card-heading {
    font-size: 24px;
  }

  .sv-list-item {
    font-size: 13px;
  }

  .pf-title {
    font-size: 14px;
  }

  .pf-desc {
    font-size: 12px;
  }
}
