/* Import Poppins and define a consistent font stack */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --bg-start: #F6FAFF;
    --bg-end: #FFFFFF;
    --text-main: #1F2937;
    --heading-primary: #bd335c;
    --heading-secondary: #111827;
    --card-bg: #FFFFFF;
    --form-bg: #F1F7FF;
    --accent: #bd335c;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

.hero {
    padding: 72px 64px 96px;
}

/* Hero Section - Healthcare Process - Creative Design */
.indu-hero {
    padding: 72px 64px 96px;
    background: linear-gradient(180deg, #F6FAFF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    margin-top: 160px;
}

/* Animated Background Particles */
.indu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(189, 51, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 177, 72, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(91, 91, 240, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
    z-index: 0;
}

.indu-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 51, 92, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.indu-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
}

.hero-left {
    flex: 0 0 50%;
}

.subtitle {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    padding-bottom: 10px;
    text-transform: capitalize;
    width: 80%;
    color: #1F2937;
    margin: 0 0 18px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-primary {
    font-size: 56px;
    line-height: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, #bd335c 0%, #ff6b8a 50%, #bd335c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards, gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.title-secondary {
    color: #1e1c1c;
    font-size: 36px;
    font-weight: 800;
    line-height: 44px;
    margin: 14px 0px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-body {
    font-size: 17px;
    line-height: 1.65;
    color: #374151;
    max-width: 640px;
    margin: 0 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    animation: cardFadeIn 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 1s;
}

.feature-card:nth-child(2) {
    animation-delay: 1.2s;
    transform: translateY(-12px) scale(0.9);
}

.feature-card:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(189, 51, 92, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(189, 51, 92, 0.2);
}

.feature-card:nth-child(2):hover {
    transform: translateY(-20px) scale(1.02);
}

/* Icon holder with gradient plate behind the icon image */
.feature-icon {
    position: relative;
    width: 142px;
    height: 96px;
    margin: 6px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon::after {
    background: linear-gradient(180deg, #e8f3ff 0%, #fff 100%);
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    transform: scale(1.1) rotate(5deg);
}

/* Icon on top of the gradient plate */
.feature-icon .business-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: auto;
    display: block;
    transform: translateY(-6px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .business-icon {
    transform: translateY(-6px) scale(1.15) rotate(10deg);
}

/* Font Awesome icons styling for feature cards */
.feature-icon i {
    position: relative;
    z-index: 2;
    font-size: 48px;
    color: var(--heading-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-6px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon i {
    transform: translateY(-6px) scale(1.15) rotate(10deg);
    color: var(--accent);
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 6px;
    color: #0F172A;
}

.feature-desc {
    font-size: 14px;
    font-weight: 400;
    color: #4B5563;
    margin: 0;
    line-height: 1.5;
}

.hero-right {
    position: relative;
    flex: 0 0 50%;
}

.g-form-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(241, 247, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    animation: formSlideIn 0.8s ease-out 1s forwards;
}

@keyframes formSlideIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.g-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #bd335c, #ffb148, #5B5BF0);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.g-form-card:hover::before {
    opacity: 0.1;
}

.g-form-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #D6DEEA;
    border-radius: 10px;
    background: #FFFFFF;
    font-size: 16px;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #bd335c;
    box-shadow: 0 0 0 3px rgba(189, 51, 92, 0.15);
}

.phone-row {
    display: flex;
    gap: 8px;
}

.phone-row select {
    min-width: 130px;
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid #D6DEEA;
    background: #FFFFFF;
    font-size: 16px;
    color: #111827;
}

.phone-row input[readonly] {
    max-width: 70px;
    text-align: center;
    background: #F7F9FD;
    cursor: default;
}

.phone-row input[type="text"] {
    flex: 1;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* New Contact Form Styles */
.aj-contact .sec-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #bd335c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.aj-contact .sec-title {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.aj-contact .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.aj-contact .row > [class*="col-"] {
    padding: 0 10px;
}

.aj-contact .form-control.style4,
.aj-contact .form-select.style4 {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D6DEEA;
    border-radius: 10px;
    background: #FFFFFF;
    font-size: 16px;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.aj-contact .form-control.style4:focus,
.aj-contact .form-select.style4:focus {
    outline: none;
    border-color: #bd335c;
    box-shadow: 0 0 0 3px rgba(189, 51, 92, 0.15);
}

.aj-contact .form-select.style4 {
    cursor: pointer;
}

.aj-contact .vs-btn {
    width: 100%;
    background: linear-gradient(135deg, #bd335c 0%, #ff6b8a 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(189, 51, 92, 0.25);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.aj-contact .vs-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.aj-contact .vs-btn:hover::before {
    width: 300px;
    height: 300px;
}

.aj-contact .vs-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 36px rgba(189, 51, 92, 0.4);
    background: linear-gradient(135deg, #ff6b8a 0%, #ffb148 100%);
}

.aj-contact .vs-btn:active {
    transform: translateY(0) scale(0.98);
}

.aj-contact .vs-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#responseMessage.text-danger {
    color: #D14343;
    font-size: 14px;
    font-weight: 600;
}

#responseMessage.text-success {
    color: #0F9D58;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #bd335c 0%, #ff6b8a 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(189, 51, 92, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 36px rgba(189, 51, 92, 0.4);
    background: linear-gradient(135deg, #ff6b8a 0%, #ffb148 100%);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.form-message {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

.form-message.error {
    color: #D14343;
}

.form-message.success {
    color: #0F9D58;
}

/* Pencil and sparkles for decoration - Creative Animations */
.pencil-wrapper {
    position: absolute;
    right: 80%;
    top: 18%;
    transform: rotate(-6deg);
    pointer-events: none;
    z-index: 0;
    animation: pencilFloat 6s ease-in-out infinite;
    opacity: 0;
    animation: pencilFloat 6s ease-in-out infinite, pencilFadeIn 1s ease-out 1.5s forwards;
}

@keyframes pencilFloat {
    0%, 100% { transform: rotate(-6deg) translateY(0px); }
    50% { transform: rotate(-8deg) translateY(-15px); }
}

@keyframes pencilFadeIn {
    to { opacity: 1; }
}

.pencil-image {
    width: 170px;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.pencil-wrapper:hover .pencil-image {
    transform: rotate(5deg) scale(1.1);
}

.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    color: #FFB347;
    animation: sparkleTwinkle 2s ease-in-out infinite;
    opacity: 0;
}

.sparkle:nth-child(1) {
    animation-delay: 2s;
}

.sparkle:nth-child(2) {
    animation-delay: 2.5s;
}

@keyframes sparkleTwinkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.sparkle::before,
.sparkle::after {
    content: "";
    position: absolute;
    background: currentColor;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: sparklePulse 2s ease-in-out infinite;
}

@keyframes sparklePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.sparkle::before {
    width: 14px;
    height: 4px;
    border-radius: 6px;
}

.sparkle::after {
    width: 4px;
    height: 14px;
    border-radius: 6px;
}

.sparkle.small {
    color: #bd335c;
    width: 14px;
    height: 14px;
    animation: sparkleTwinkle 1.5s ease-in-out infinite;
    animation-delay: 2.2s;
}

/* Trusted brands section */
.trusted-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 80px 48px 96px;
}
.header-social i {
    padding-top: 10px;
}
.trusted-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.excellence-header {
    text-align: center;
    margin-bottom: 56px;
}

.trusted-heading {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 20px;
}

.excellence-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto;
}

.excellence-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-bottom: 64px;
    align-items: start;
}

.excellence-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.excellence-right {
    position: sticky;
    top: 100px;
}

.excellence-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.challenge-card,
.solution-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #bd335c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover,
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.challenge-icon,
.solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 28px;
}

.challenge-icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
}

.solution-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.challenge-card h4,
.solution-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.challenge-card p,
.solution-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.trusted-brands {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid #e5ecf5;
}

.brands-label {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Slider - 2 Rows with Cross Slide Animation */
.logo-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.logo-slider-row-1 {
    margin-bottom: 10px;
}

.logo-slider-row-2 {
    margin-top: 10px;
}

.logo-slider-track {
    display: flex;
    gap: 40px;
    will-change: transform;
}

/* First Row - Slides Left to Right */
.logo-track-left {
    animation: logoScrollLeft 35s linear infinite;
}

.logo-track-left:hover {
    animation-play-state: paused;
}

/* Second Row - Slides Right to Left (Cross Direction) */
.logo-track-right {
    animation: logoScrollRight 35s linear infinite;
}

.logo-track-right:hover {
    animation-play-state: paused;
}

@keyframes logoScrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes logoScrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    padding: 20px 30px;
    background: #FFFFFF;
    border: 1px solid #E5ECF5;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(189, 51, 92, 0.15);
    border-color: rgba(189, 51, 92, 0.3);
}

.brand-style1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slide:hover .brand-style1 {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.brand-style1 img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.excellence-right {
    position: sticky;
    top: 100px;
}

.feature-highlights {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5ecf5;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e5ecf5;
}

.highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-item:first-child {
    padding-top: 0;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #bd335c 0%, #ff6b8a 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.highlight-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
}

.highlight-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.trusted-brands {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid #e5ecf5;
}

.brands-label {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefits section - Flip Card Style */
.benefits-section {
    background: #f5f5f5;
    padding: 60px 64px 80px;
    position: relative;
    overflow: hidden;
}

.benefits-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 24px;
}

.benefits-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
    text-align: left;
    flex: 0 0 auto;
}

.benefits-heading br {
    display: block;
}

.benefits-header-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card {
    perspective: 1000px;
    height: 160px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.benefit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.benefit-card:hover .benefit-card-inner {
    transform: rotateY(180deg);
}

.benefit-card-front,
.benefit-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.benefit-card-front {
    background: #ffffff;
}

.benefit-card-back {
    background: #ffffff;
    transform: rotateY(180deg);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.benefit-icon i {
    font-size: 40px;
    color: #374151;
}

.benefit-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.benefit-sub {
    font-size: 13px;
    font-weight: 400;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

/* Promo banner */
.promo-banner {
    background: #bd335c;
    color: #ffffff;
    border-radius: 0 0 20px 20px;
    padding: 60px 48px;
    margin: 0 0 64px;
    box-shadow: 0 18px 46px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(189, 51, 92, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(91, 91, 240, 0.15) 0%, transparent 50%);
    filter: blur(40px);
    z-index: 0;
    opacity: 0.6;
}

.promo-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.promo-text-small {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.95);
}

.promo-text-large {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #ffffff;
}

.promo-cta {
        background: linear-gradient(135deg, #ff6b8a 0%, #ffb148 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(190, 48, 92, 0.4);
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-cta:hover {
    background: linear-gradient(135deg, #ff6b8a 0%, #ffb148 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(190, 48, 92, 0.4);
}

/* Services features */
.services-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #f8fbff 100%);
    padding: 100px 48px 120px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(189, 51, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 177, 72, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #bd335c 0%, #ffb148 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(189, 51, 92, 0.1) inset;
    animation: cardFloat 6s ease-in-out infinite;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.5s; }
.service-card:nth-child(3) { animation-delay: 1s; }
.service-card:nth-child(4) { animation-delay: 1.5s; }
.service-card:nth-child(5) { animation-delay: 2s; }
.service-card:nth-child(6) { animation-delay: 2.5s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(2deg); }
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(189, 51, 92, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(-3deg) scale(1.03);
    border-color: rgba(189, 51, 92, 0.4);
    box-shadow: 
        0 20px 50px rgba(189, 51, 92, 0.25),
        0 0 30px rgba(255, 177, 72, 0.15),
        0 0 0 2px rgba(189, 51, 92, 0.2) inset;
    background: linear-gradient(145deg, #ffffff 0%, #fff5f7 100%);
    animation: none;
}

.service-icon {
    font-size: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 12px rgba(189, 51, 92, 0.3));
}

.service-icon i {
    font-size: 56px;
    background: linear-gradient(135deg, #bd335c 0%, #ffb148 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(15deg) rotateZ(-5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 177, 72, 0.5));
}

.service-card:hover .service-icon i {
    background: linear-gradient(135deg, #ffb148 0%, #bd335c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #111827;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover h4 {
    color: #bd335c;
    transform: scale(1.05);
}

.service-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: #374151;
}

/* Why Section - Screenshot Design */
.why-section {
    background: #ffffff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.why-header {
    background: #ffffff;
    padding: 60px 64px 40px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.why-heading {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #be305c 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.3;
}

.why-content {
    background: linear-gradient(135deg, #fef3e7 0%, #fff5eb 50%, #fef7ed 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.why-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0px 10px 0px 60px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
}

.why-check-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #be305c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
}

.why-feature-item:hover .why-check-icon {
    background: #ff6b8a;
    transform: scale(1.1);
}

.why-check-icon i {
    font-size: 12px;
    color: #ffffff;
}

.why-feature-item span {
    flex: 1;
}

.why-cta-btn {
    background: linear-gradient(135deg, #be305c 0%, #ff6b8a 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(190, 48, 92, 0.25);
    transition: all 0.3s ease;
    align-self: center;
    position: relative;
    overflow: hidden;
}

.why-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.why-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.why-cta-btn:hover {
    background: linear-gradient(135deg, #ff6b8a 0%, #ffb148 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(190, 48, 92, 0.4);
}

.why-cta-btn:active {
    transform: translateY(0);
}

.why-right {
    position: relative;
}

.why-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-creative-design {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #be305c 0%, #ff6b8a 50%, #ffb148 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(190, 48, 92, 0.3);
}

.why-gradient-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulseCircle 4s ease-in-out infinite;
}

.why-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.why-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 1s;
}

.why-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes pulseCircle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.why-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
    padding: 40px;
}

.why-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    animation: iconFloat 6s ease-in-out infinite;
}

.why-icon-item:nth-child(1) { animation-delay: 0s; }
.why-icon-item:nth-child(2) { animation-delay: 0.5s; }
.why-icon-item:nth-child(3) { animation-delay: 1s; }
.why-icon-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.why-icon-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-icon-item i {
    font-size: 60px;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.why-icon-item span {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.why-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 28px;
    color: #be305c;
    animation: sparkleFloat 4s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(190, 48, 92, 0.4));
}

.sparkle-1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 20%;
    right: 12%;
    color: #ffffff;
    font-size: 24px;
    animation-delay: 0.5s;
}

.sparkle-3 {
    top: 8%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle-4 {
    bottom: 25%;
    left: 12%;
    color: #ffffff;
    font-size: 22px;
    animation-delay: 1.5s;
}

.sparkle-5 {
    top: 45%;
    right: 8%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

/* Stats band */
/* Stats Section - Light Professional Style with Animated Counters */
.stats-section {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f4f8fe 100%);
    color: #111827;
    padding: 100px 48px 120px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(189, 51, 92, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 177, 72, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 64px;
}

.stats-heading {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px;
    line-height: 1.2;
        max-width: 900px;
    margin: 0px auto 30px auto;
    width: 800px;
}

.stats-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: #ffffff;
    border: 2px solid #e5ecf5;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(189, 51, 92, 0.02) 0%, rgba(255, 177, 72, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: #bd335c;
    box-shadow: 0 12px 40px rgba(189, 51, 92, 0.12);
    background: #ffffff;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon i {
    color: #bd335c;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card:hover .stat-icon i {
    color: #ffb148;
}

.stat-value {
    font-size: 56px;
    font-weight: 800;
    color: #bd335c;
    margin: 0;
    line-height: 1;
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-value {
    color: #ffb148;
}

.stat-suffix {
    font-size: 56px;
    font-weight: 800;
    color: #bd335c;
    display: inline-block;
    margin-left: 4px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-suffix {
    color: #ffb148;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
    margin: 16px 0 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #111827;
}

/* Stories Section - Dark Gradient with Hover Content */
.stories-section {
    padding: 100px 48px 120px;
    background-image: url("/assets/img/bg/ReplaceColor.png");;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
      /*background-image: url("/assets/img/bg/ReplaceColor.png");*/
}

.stories-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stories-heading {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 56px;
    line-height: 1.2;
    text-align: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.story-card {
    perspective: 1000px;
    height: 140px;
}

.story-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.story-card:hover .story-card-inner {
    transform: rotateY(180deg);
}

.story-card-front,
.story-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.story-card-front {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-card-back {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: rotateY(180deg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 18px;
}

.story-icon {
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.story-icon i {
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.2));
}

/* Colorful icons matching screenshot */
.story-card:nth-child(1) .story-icon i { color: #be305c; }
.story-card:nth-child(2) .story-icon i { color: #be305c; }
.story-card:nth-child(3) .story-icon i { color: #be305c; }
.story-card:nth-child(4) .story-icon i { color: #be305c; }
.story-card:nth-child(5) .story-icon i { color: #be305c; }
.story-card:nth-child(6) .story-icon i { color: #be305c; }
.story-card:nth-child(7) .story-icon i { color: #be305c; }
.story-card:nth-child(8) .story-icon i { color: #be305c; }
.story-card:nth-child(9) .story-icon i { color: #be305c; }

.story-title {
    font-size: 17px;
    font-weight: 600;
    color: #be305c;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.story-desc {
      font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    
}

/* Process */
/* Process Section - Zig-Zag Animated Design */
.process-section {
    padding: 100px 48px 120px;
    background: #ffffff;
    position: relative;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.process-heading {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #be305c 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0 0 60px;
    line-height: 1.2;
    width: 100%;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    min-height: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.process-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 380px;
    flex-shrink: 0;
}

.process-line {
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #be305c 0px,
        #be305c 8px,
        transparent 8px,
        transparent 16px
    );
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    transform: translateX(-50%);
    z-index: 0;
    animation: lineFlow 2s linear infinite;
    flex-shrink: 0;
}

@keyframes lineFlow {
    0% { background-position: 0 0; }
    100% { background-position: 0 16px; }
}

.process-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.process-card.fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(190, 48, 92, 0.2);
    border-color: #be305c;
}

.process-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    background: #be305c;
    transform: scale(1.1);
}

.process-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.process-icon-box i {
    font-size: 32px;
    color: #be305c;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
    background: #fef2f5;
    transform: scale(1.05);
}

.process-card:hover .process-icon-box i {
    color: #be305c;
    transform: rotate(5deg);
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.3;
    flex: 1;
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.3;
    flex: 1;
}

.process-desc {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section - Screenshot Design */
.faq-section {
    padding: 80px 48px 100px;
    background: #f5f5f5;
    position: relative;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #be305c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 12px;
    text-align: center;
}

.faq-heading {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #be305c 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 48px;
    line-height: 1.2;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.faq-hidden {
    display: none;
}

.faq-item.faq-hidden.show {
    display: block;
    animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: #1f2937;
    flex-shrink: 0;
    margin-left: 16px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #1f2937;
    color: #ffffff;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    color: #4b5563;
    display: none;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 20px 18px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.faq-load-more {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.faq-load-more:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blogs */
/* Blog Section - Creative Animated Slider */
.blog-section {
    padding: 80px 48px 0px 48px;
    background: linear-gradient(180deg, #F6FAFF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.blog-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 16px;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(135deg, #bd335c, #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-description {
    font-size: 17px;
    color: #6b7280;
    margin: 0 auto 56px;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
}

.blog-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.blog-slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.blog-grid {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.blog-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
    animation: blogCardFadeIn 0.6s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes blogCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(189, 51, 92, 0.15);
    border-color: rgba(189, 51, 92, 0.3);
}

.blog-thumb {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #bd335c 0%, #ff6b8a 50%, #ffb148 100%);
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-overlay-top-left {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-logo {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.blog-overlay-top-right {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.blog-partner {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: #3b82f6;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 12px;
}

.blog-category {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    display: block;
}

.blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    font-size: 12px;
    color: #bd335c;
}

.blog-date,
.blog-author {
    transition: color 0.3s ease;
}

.blog-card:hover .blog-date,
.blog-card:hover .blog-author {
    color: #bd335c;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px;
    line-height: 1.4;
    flex: 1;
    transition: color 0.3s ease;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-title a:hover {
    color: #bd335c;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #bd335c;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #ff6b8a;
    gap: 12px;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

.blog-footer {
    text-align: center;
    margin-top: 48px;
}

.blog-view-all-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #bd335c 0%, #ff6b8a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(189, 51, 92, 0.25);
}

.blog-view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(189, 51, 92, 0.4);
    background: linear-gradient(135deg, #ff6b8a 0%, #ffb148 100%);
}

.blog-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-nav:hover {
    background: linear-gradient(135deg, #bd335c 0%, #ff6b8a 100%);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(189, 51, 92, 0.3);
}

.blog-nav:active {
    transform: scale(0.95);
}

.blog-nav i {
    font-size: 18px;
    color: #1f2937;
    transition: color 0.3s ease;
}

.blog-nav:hover i {
    color: #ffffff;
}

.blog-nav-prev {
    margin-right: 0;
}

.blog-nav-next {
    margin-left: 0;
}

/* Tablet */
@media (max-width: 1080px) {
    .hero {
        padding: 56px 40px 80px;
    }
    .hero-inner {
        gap: 36px;
    }
    .title-primary {
        font-size: 56px;
    }
    .title-secondary {
        font-size: 44px;
    }
    .subtitle {
        font-size: 20px;
    }
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    /* Reset stagger on tablet for balanced rows */
    .feature-card {
        transform: none;
    }
    .pencil-wrapper {
        right: 42%; /* keep leftward shift on tablet */
        top: 22%;
        transform: rotate(-5deg) scale(0.92);
    }
    .trusted-section {
        padding: 64px 32px 80px;
    }
    .excellence-header {
        margin-bottom: 40px;
    }
    .trusted-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .excellence-intro {
        font-size: 16px;
    }
    .excellence-content {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 48px;
    }
    .excellence-right {
        position: static;
    }
    .feature-highlights {
        padding: 24px;
    }
    .logo-slide {
        min-width: 150px;
        height: 90px;
        padding: 15px 20px;
    }
    
    .logo-slider-track {
        gap: 30px;
        animation-duration: 35s;
    }
    .trusted-brands {
        margin-top: 48px;
        padding-top: 40px;
    }
    .benefits-section {
        padding: 80px 32px 100px;
    }
    .benefits-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }
    .benefits-heading {
        font-size: 36px;
        margin-bottom: 0;
    }
    .benefits-header-cards {
        width: 100%;
    }
    .benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
    .benefit-card {
        height: 180px;
    }
    .benefit-card-front,
    .benefit-card-back {
        padding: 20px 16px;
    }
    .benefit-icon {
        font-size: 42px;
        height: 50px;
        margin-bottom: 12px;
    }
    .benefit-icon i {
        font-size: 42px;
    }
    .benefit-title {
        font-size: 15px;
    }
    .benefit-sub {
        font-size: 13px;
    }
    .service-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
    .why-header {
        padding: 48px 32px 0;
    }
    .why-heading {
        font-size: 32px;
    }
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 32px 64px;
    }
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-image-wrapper {
        height: 400px;
    }
    .why-icon-grid {
        gap: 24px;
        padding: 32px;
    }
    .why-icon-item {
        padding: 20px;
    }
    .why-icon-item i {
        font-size: 28px;
    }
    .why-icon-item span {
        font-size: 13px;
    }
    .promo-banner {
        padding: 48px 32px;
    }
    .promo-text-small {
        font-size: 18px;
    }
    .promo-text-large {
        font-size: 32px;
    }
    .promo-cta {
        padding: 12px 28px;
        font-size: 15px;
    }
    .section-title {
        font-size: 26px;
    }
    .services-section {
        padding: 72px 32px 80px;
    }
    .why-header {
        padding: 40px 32px 0;
    }
    .why-heading {
        font-size: 30px;
    }
    .why-content {
        padding: 48px 32px 64px;
    }
    .process-section {
        padding: 72px 32px;
    }
    .faq-section {
        padding: 72px 32px;
    }
    .faq-subtitle {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .faq-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .faq-load-more {
        padding: 12px 28px;
        font-size: 15px;
    }
    .blog-section {
        padding: 64px 32px 80px;
    }
    .blog-heading {
        font-size: 32px;
    }
    .blog-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .blog-container {
        gap: 16px;
    }
    .blog-nav {
        width: 40px;
        height: 40px;
    }
    .stats-section {
        padding: 80px 32px 100px;
    }
    .stats-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .stats-intro {
        font-size: 16px;
    }
    .stats-header {
        margin-bottom: 48px;
    }
    .stories-section {
        padding: 80px 32px 100px;
    }
    .stories-heading {
        font-size: 36px;
        margin-bottom: 48px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .stat-card {
        padding: 32px 24px;
    }
    .stat-icon {
        font-size: 40px;
        height: 50px;
        margin-bottom: 16px;
    }
    .stat-icon i {
        font-size: 40px;
    }
    .stat-value {
        font-size: 48px;
    }
    .stat-suffix {
        font-size: 48px;
    }
    .stat-label {
        font-size: 14px;
    }
    .stories-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
    .story-card {
        height: 130px;
    }
    .story-card-front,
    .story-card-back {
        padding: 18px 16px;
    }
    .story-icon {
        font-size: 32px;
        width: 50px;
        height: 50px;
    }
    .story-icon i {
        font-size: 32px;
    }
    .story-title {
        font-size: 16px;
    }
    .story-desc {
        font-size: 13px;
    }
    .process-container {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
    }
    .process-line {
        display: none;
    }
    .process-column {
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    .process-card {
        min-height: 160px;
    }
    .blog-heading {
        font-size: 32px;
    }
    .blog-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .blog-container {
        gap: 16px;
    }
    .blog-card {
        flex: 0 0 calc(50% - 16px);
        min-width: 280px;
    }
    .blog-thumb {
        height: 240px;
    }
    .blog-nav {
        width: 44px;
        height: 44px;
    }
    .blog-heading {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 42px 22px 64px;
    }
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-left,
    .hero-right {
        flex: 1 1 auto;
        width: 100%;
    }
    .subtitle {
        font-size: 18px;
    }
    .title-primary {
        font-size: 44px;
    }
    .title-secondary {
        font-size: 36px;
        margin-bottom: 22px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    /* Reset stagger on mobile */
    .feature-card {
        transform: none;
    }
    .pencil-wrapper {
        display: none;
    }
    .phone-row {
        flex-direction: column;
    }
    .phone-row select,
    .phone-row input[readonly],
    .phone-row input[type="text"] {
        width: 100%;
    }
    .trusted-section {
        padding: 48px 20px 64px;
    }
    .excellence-header {
        margin-bottom: 32px;
    }
    .trusted-heading {
        font-size: 28px;
        margin-bottom: 14px;
    }
    .excellence-intro {
        font-size: 15px;
    }
    .excellence-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .challenge-card,
    .solution-card {
        padding: 20px;
    }
    .challenge-icon,
    .solution-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    .challenge-card h4,
    .solution-card h4 {
        font-size: 20px;
    }
    .challenge-card p,
    .solution-card p {
        font-size: 15px;
    }
    .feature-highlights {
        padding: 20px;
    }
    .highlight-item {
        padding: 16px 0;
    }
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .highlight-content h5 {
        font-size: 16px;
    }
    .highlight-content p {
        font-size: 13px;
    }
    .logo-slide {
        min-width: 120px;
        height: 80px;
        padding: 12px 15px;
    }
    
    .logo-slider-track {
        gap: 20px;
        animation-duration: 30s;
    }
    
    .brand-style1 img {
        max-height: 50px;
    }
    .trusted-brands {
        margin-top: 40px;
        padding-top: 32px;
    }
    .brands-label {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .benefits-section {
        padding: 64px 20px 80px;
    }
    .benefits-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    .benefits-heading {
        font-size: 28px;
        margin-bottom: 0;
    }
    .benefits-header-cards {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .benefit-card {
        height: 160px;
    }
    .benefit-card-front,
    .benefit-card-back {
        padding: 18px 14px;
    }
    .benefit-icon {
        font-size: 36px;
        height: 45px;
        margin-bottom: 10px;
    }
    .benefit-icon i {
        font-size: 36px;
    }
    .benefit-title {
        font-size: 14px;
    }
    .benefit-sub {
        font-size: 12px;
    }
    .service-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .stories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .story-card {
        padding: 24px 18px;
        min-height: 160px;
    }
    .story-icon {
        font-size: 36px;
        height: 50px;
        margin-bottom: 12px;
    }
    .story-icon i {
        font-size: 36px;
    }
    .story-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .story-desc {
        font-size: 13px;
    }
    .process-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .process-line {
        display: none;
    }
    .process-column {
        gap: 24px;
        max-width: 100%;
    }
    .process-card {
        padding: 20px 18px;
        min-height: 160px;
    }
    .process-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .process-icon-box {
        width: 60px;
        height: 60px;
    }
    .process-icon-box i {
        font-size: 28px;
    }
    .process-title {
        font-size: 16px;
    }
    .process-desc {
        font-size: 13px;
    }
    .blog-heading {
        font-size: 28px;
    }
    .blog-description {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .blog-section {
        padding: 60px 24px 80px;
    }
    .blog-container {
        gap: 12px;
    }
    .blog-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .blog-nav {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .blog-nav-prev {
        left: -10px;
    }
    .blog-nav-next {
        right: -10px;
    }
    .blog-thumb {
        height: 200px;
    }
    .promo-banner {
        padding: 40px 24px;
    }
    .promo-text-small {
        font-size: 16px;
    }
    .promo-text-large {
        font-size: 28px;
    }
    .promo-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .services-section {
        padding: 60px 20px 72px;
    }
    .why-header {
        padding: 40px 20px 0;
    }
    .why-heading {
        font-size: 26px;
    }
    .why-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px 56px;
    }
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .why-feature-item {
        font-size: 15px;
    }
    .why-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }
    .why-image-wrapper {
        height: 300px;
    }
    .process-section {
        padding: 60px 20px;
    }
    .faq-section {
        padding: 60px 20px;
    }
    .faq-subtitle {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .faq-heading {
        font-size: 28px;
        margin-bottom: 32px;
    }
    .faq-text {
        font-size: 15px;
    }
    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
    .faq-answer {
        font-size: 14px;
        padding: 0 18px 16px;
    }
    .faq-load-more {
        padding: 12px 24px;
        font-size: 14px;
    }
    .blog-section {
        padding: 60px 20px 72px;
    }
    .stats-section {
        padding: 64px 20px 80px;
    }
    .stats-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .stats-intro {
        font-size: 15px;
    }
    .stats-header {
        margin-bottom: 40px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-card {
        padding: 28px 20px;
    }
    .stat-icon {
        font-size: 36px;
        height: 45px;
        margin-bottom: 14px;
    }
    .stat-icon i {
        font-size: 36px;
    }
    .stat-value {
        font-size: 42px;
    }
    .stat-suffix {
        font-size: 42px;
    }
    .stat-label {
        font-size: 13px;
    }
    .stories-section {
        padding: 64px 20px 80px;
    }
    .stories-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .stories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .story-card {
        height: 120px;
    }
    .story-card-front,
    .story-card-back {
        padding: 16px 14px;
    }
    .story-icon {
        font-size: 28px;
        width: 45px;
        height: 45px;
    }
    .story-icon i {
        font-size: 28px;
    }
    .story-title {
        font-size: 15px;
    }
    .story-desc {
        font-size: 12px;
    }
    .story-icon {
        font-size: 36px;
        height: 50px;
        margin-bottom: 12px;
    }
    .story-icon i {
        font-size: 36px;
    }
    .story-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .story-desc {
        font-size: 13px;
    }
}


p.subtitle {
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
    padding-bottom: 10px;
    text-transform: capitalize;
    width: 80%;
}

h1.title-primary {
    font-size: 56px;
    line-height: 58px;
}

h2.title-secondary {
    color: #1e1c1c;
    font-size: 36px;
    font-weight: 800;
    line-height: 44px;
}