.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(1, 119, 191, 0.12));
    padding: 80px 8%;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    left: auto;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 119, 191, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}
/* LEFT SIDE */
.hero-content {
    flex: 1;
}
.hero-tag {
    display: inline-block;
    color: #2B7CFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.hero-content h1 {
    margin-bottom: 25px;
}
.outline-text {
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #000;
}
.outline-orange {
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #c5141b;
}
.filled-black {
    font-size: 72px;
    font-weight: 900;
    color: #000;
}
.filled-orange {
    font-size: 72px;
    font-weight: 900;
    color: #2B7CFF;

}
.hero-desc {
    max-width: 700px;
    /* 500px */
    color: #666;
    font-size: 18px;
    margin-top: 20px;
}
.hero-btn {
     display: inline-block;
     padding: 16px 34px;
    /* background: var(--blue);
    color: #fff; */
     background: linear-gradient(
        135deg,
        #1b6fff,
        #3b89ff
    ); 
     box-shadow:
        0 0 20px rgba(59,137,255,.55);
     color: white;
     text-decoration: none;
     border-radius: 30px;
     font-weight: 600;
     transition: 0.3s ease; 
}
.hero-btn:hover {
     transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(59, 137, 255, 0.7);
        filter: brightness(1.1);  
}
/* RIGHT SIDE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translate3d(0, 80px, 0) scale(0.96);
    animation: heroFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}
.hero-image img {
    width: 100%;
    max-width: 950px;
    object-fit: contain;
}
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 80px, 0) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1400px) {
    .outline-text,
    .outline-orange {
        font-size: 80px;
    }
    .filled-black,
    .filled-orange {
        font-size: 64px;
    }
    .hero-image img {
        max-width: 800px;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding: 80px 6%;
    }
    .outline-text,
    .outline-orange {
        font-size: 70px;
    }
    .filled-black,
    .filled-orange {
        font-size: 58px;
    }
    .hero-image img {
        max-width: 650px;
    }
    .hero-container {
        gap: 40px;
    }
    .hero-tag {
        font-size: 18px;
    }
    .hero-desc {
        font-size: 16px;
        max-width: 100%;
    }
}
@media (max-width: 992px) {
    .hero {
        padding: 70px 5%;
        min-height: auto;
    }
    .hero-container {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }
    .hero-content {
        width: 100%;
    }
    .outline-text,
    .outline-orange {
        font-size: 60px;
    }
    .filled-black,
    .filled-orange {
        font-size: 52px;
    }
    .hero-tag {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .hero-image {
        order: 1;
    }
    .hero-desc {
        max-width: 100%;
        font-size: 16px;
        margin-top: 15px;
    }
    .hero-image img {
        max-width: 500px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 60px 5%;
    }
    .hero-container {
        gap: 25px;
    }
    .outline-text,
    .outline-orange {
        font-size: 55px;
    }
    .filled-black,
    .filled-orange {
        font-size: 44px;
    }
    .hero-tag {
        font-size: 15px;
        margin-bottom: 12px;
    }
    .hero-desc {
        font-size: 15px;
        margin-top: 12px;
    }
    .hero-btn {
        padding: 13px 26px;
        font-size: 14px;
    }
    .outline-text {
        -webkit-text-stroke: 1.5px #000;
    }
    .outline-orange {
        -webkit-text-stroke: 1.5px #c5141b;
    }
}
@media (max-width: 576px) {
    .hero {
        padding: 50px 4%;
    }
    .hero-container {
        gap: 20px;
    }
    .outline-text,
    .outline-orange {
        font-size: 44px;
    }
    .filled-black,
    .filled-orange {
        font-size: 36px;
    }
    .hero-tag {
        font-size: 13px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }
    .hero-desc {
        font-size: 14px;
        margin-top: 10px;
        line-height: 1.6;
    }
    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 15px;
    }
    .outline-text {
        -webkit-text-stroke: 1.5px #000;
    }
    .outline-orange {
        -webkit-text-stroke: 1.5px #c5141b;
    }
}
/* Small phones (max 430px) */
@media (max-width: 430px) {
    .hero {
        padding: 40px 4%;
    }
    .outline-text,
    .outline-orange {
        font-size: 36px;
    }
    .filled-black,
    .filled-orange {
        font-size: 30px;
    }
    .hero-tag {
        font-size: 12px;
    }
    .hero-desc {
        font-size: 13px;
    }
    .hero-btn {
        padding: 11px 22px;
        font-size: 13px;
        border-radius: 25px;
    }
    .outline-text {
        -webkit-text-stroke: 1px #000;
    }
    .outline-orange {
        -webkit-text-stroke: 1px #c5141b;
    }
}
/* Very small phones (max 360px) */
@media (max-width: 360px) {
    .hero {
        padding: 35px 3%;
    }
    .outline-text,
    .outline-orange {
        font-size: 30px;
    }
    .filled-black,
    .filled-orange {
        font-size: 26px;
    }
    .hero-tag {
        font-size: 11px;
    }
    .hero-desc {
        font-size: 12px;
    }
    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    .outline-text {
        -webkit-text-stroke: 1px #000;
    }
    .outline-orange {
        -webkit-text-stroke: 1px #c5141b;
    }
}
/* ================= SERVICES ================= */
.seo-services-section {
    padding: 90px 0;
    background: #FAFAFA;
}
.section-badge {
    display: inline-block;
    margin-bottom: 12px;
    color: #2B7CFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.section-title {
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 70px;
    font-weight: 900;
}
.text-red {
    color: transparent;
    -webkit-text-stroke: 2px #c5141b !important;
}
.text-blue {
    color: #2B7CFF !important;
}
.section-desc {
    color: #666;
    font-size: 1.05rem;
    max-width: 1000px;
    margin: 0 auto 50px;
    line-height: 1.4;
}
.section-header {
    margin-bottom: 50px;
}
.seo-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.seo-card:hover {
    border-color: #2B7CFF;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(1, 119, 191, 0.1);
}
.seo-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(1, 119, 191, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2B7CFF;
    transition: 0.3s;
    flex-shrink: 0;
}
.seo-card:hover .seo-card-icon {
    background: #2B7CFF;
    color: #fff;
}
.seo-category-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.5;
}
.seo-card-body p {
    font-size: 0.92rem; 
    color: #777;
    line-height: 1.6;
    margin-bottom: 16px;
}
.seo-link {
    color: #2B7CFF;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    margin-top: auto;
}
.seo-link:hover {
    color: #2B7CFF !important;
    gap: 10px;
}
.seo-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.seo-cta-card {
    background: linear-gradient(135deg, #2B7CFF, #0199e8) !important;
    border: none !important;
    justify-content: center;
    align-items: flex-start;
}
.seo-cta-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}
.seo-cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(1, 119, 191, 0.3) !important;
}
/* === Staggered card animation === */
.seo-card-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease var(--seo-delay, 0s),
        transform 0.5s ease var(--seo-delay, 0s);
}
.seo-card-col.seo-animate-in {
    opacity: 1;
    transform: translateY(0);
}
/* === SEO Toggle: only new classes, nothing existing changed === */
.seo-card-hidden {
    display: none;
}
.seo-card-hidden.seo-card-visible {
    display: block;
    animation: seoFadeUp 0.3s ease forwards;
}
@keyframes seoFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.seo-toggle-btn {
    background: transparent;
    border: 2px solid #2B7CFF;
    color: #2B7CFF;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}
.seo-toggle-btn:hover {
    background: var(--text-blue);
    border: none;
    color: #fff;
}
/* ================= STAGGER (IMPORTANT) ================= */
.services-content-heading {
    opacity: 0;
    transform: translate3d(40px, 0, 0) scale(0.98);
    filter: blur(6px);
    transition:
        opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.services-content-heading.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* ================= RESPONSIVE - TABLET (max 991px) ================= */
@media (max-width: 991px) {
    .section-title {
        font-size: 48px;
    }
    .section-desc {
        font-size: 1rem;
        margin: 0 auto 40px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .seo-services-section {
        padding: 70px 0;
    }
    .seo-card {
        padding: 26px 20px;
    }
    .seo-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
    .seo-category-title {
        font-size: 17px;
    }
}
/* ================= RESPONSIVE - SMALL TABLET (max 767px) ================= */
@media (max-width: 767px) {
    .section-title {
        font-size: 36px;
        line-height: 1.3;
    }
    .section-badge {
        font-size: 16px;
    }
    .section-desc {
        font-size: 0.95rem;
        margin: 0 auto 32px;
        line-height: 1.5;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .seo-services-section {
        padding: 60px 0;
    }
    .seo-card {
        padding: 22px 18px;
    }
    .seo-category-title {
        font-size: 16px;
    }
    .seo-cta-title {
        font-size: 1rem;
    }
    .seo-toggle-btn {
        font-size: 0.9rem;
        padding: 9px 26px;
    }
}
/* ================= RESPONSIVE - MOBILE (max 575px) ================= */
@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
        line-height: 1.25;
    }
    .section-badge {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    .section-desc {
        font-size: 0.9rem;
        margin: 0 auto 28px;
    }
    .section-header {
        margin-bottom: 28px;
    }
    .seo-services-section {
        padding: 50px 0;
    }
    .seo-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    .seo-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    .seo-category-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .seo-card-body p {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }
    .seo-link {
        font-size: 0.85rem;
    }
    .seo-cta-title {
        font-size: 0.95rem;
    }
    .seo-toggle-btn {
        font-size: 0.85rem;
        padding: 8px 22px;
    }
    /* Reduce stagger delay on mobile so it doesn't feel slow */
    .seo-card-col {
        transition: opacity 0.4s ease var(--seo-delay, 0s),
            transform 0.4s ease var(--seo-delay, 0s);
    }
}
/* ================= RESPONSIVE - VERY SMALL (max 375px) ================= */
@media (max-width: 375px) {
    .section-title {
        font-size: 24px;
    }
    .section-badge {
        font-size: 13px;
    }
    .seo-services-section {
        padding: 40px 0;
    }
    .seo-card {
        padding: 18px 14px;
    }
    .seo-category-title {
        font-size: 14px;
    }
    .seo-card-body p {
        font-size: 0.82rem;
    }
}
/* ================= EXTRA SMALL SCREENS (max 320px) ================= */
@media (max-width: 320px) {
    .section-title {
        font-size: 20px;
        line-height: 1.2;
    }
    .section-badge {
        font-size: 11px;
        letter-spacing: 0.3px;
        margin-bottom: 8px;
    }
    .section-desc {
        font-size: 0.78rem;
        margin: 0 auto 20px;
        line-height: 1.4;
    }
    .section-header {
        margin-bottom: 20px;
    }
    .seo-services-section {
        padding: 30px 0;
    }
    .seo-card {
        padding: 14px 12px;
        border-radius: 10px;
    }
    .seo-card-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    .seo-category-title {
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .seo-card-body p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .seo-link {
        font-size: 0.78rem;
    }
    .seo-cta-title {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    .seo-toggle-btn {
        font-size: 0.78rem;
        padding: 7px 16px;
        border-radius: 40px;
    }
    /* Disable stagger delay on tiny screens — feels laggy */
    .seo-card-col {
        --seo-delay: 0s !important;
        transition: opacity 0.3s ease,
            transform 0.3s ease;
    }
}
/* ================= ACCESSIBILITY - Reduce Motion ================= */
@media (prefers-reduced-motion: reduce) {
    .seo-card-col {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .seo-card-col.seo-animate-in {
        opacity: 1;
        transform: none;
    }
    .seo-card-hidden.seo-card-visible {
        animation: none;
    }
}
/* ================= WHY CHOOSE US ================= */
.why-section {
    padding: 120px 0;
    background: #FAFAFA;
}
.why-section-title {
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 900;
    font-size: clamp(22px, 4vw, 70px);
}
.why-text-blue {
    color: #2B7CFF !important;
}
.why-text-red {
    color: transparent;
    -webkit-text-stroke: 2px #c5141b !important;
}
.why-section-desc {
    color: #666;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 0 50px;
    line-height: 1.4;
}
.why-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translate3d(50px, 0, 0) scale(0.96);
    transition:
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.why-item.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}
/* Stagger Effect */
.why-item:nth-child(1) {
    transition-delay: .10s;
}
.why-item:nth-child(2) {
    transition-delay: .22s;
}
.why-item:nth-child(3) {
    transition-delay: .34s;
}
.why-item:nth-child(4) {
    transition-delay: .46s;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.why-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(1, 119, 191, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B7CFF;
    font-size: 1.2rem;
}
.why-item strong {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}
.why-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #777;
    margin: 0;
}
/* ================= STAGGER (IMPORTANT) ================= */
.why-content-heading {
    opacity: 0;
    transform: translate3d(40px, 0, 0) scale(0.98);
    filter: blur(6px);
    transition:
        opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-content-heading.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}
/* ================= WHY SECTION RESPONSIVE ================= */
/* --- Tablet Landscape (max 991px) --- */
@media (max-width: 991px) {
    .why-section {
        padding: 70px 0;
    }
    .why-section-title {
        font-size: clamp(20px, 3.5vw, 48px);
        margin-bottom: 10px;
    }
    .why-list {
        margin-top: 22px;
        gap: 16px;
    }
    .why-item strong {
        font-size: 16px;
    }
    .why-item p {
        font-size: 15px;
    }
    .why-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1.1rem;
    }
}
/* --- Tablet Portrait (max 767px) --- */
@media (max-width: 767px) {
    .why-section {
        padding: 60px 0;
    }
    .why-section-title {
        font-size: clamp(22px, 6vw, 36px);
        line-height: 1.3;
        margin-bottom: 10px;
    }
    /* Image moves to top, stack layout */
    .why-section .col-lg-6:first-child {
        text-align: center;
    }
    .why-section img {
        max-width: 80%;
        margin: 0 auto;
    }
    .why-list {
        margin-top: 20px;
        gap: 14px;
    }
    .why-item strong {
        font-size: 15px;
    }
    .why-item p {
        font-size: 14px;
    }
    .why-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
        border-radius: 8px;
    }
}
/* --- Mobile (max 575px) --- */
@media (max-width: 575px) {
    .why-section {
        padding: 50px 0;
    }
    .why-section-title {
        font-size: clamp(20px, 7vw, 28px);
        line-height: 1.25;
    }
    .why-section img {
        max-width: 100%;
        border-radius: 12px !important;
    }
    .why-list {
        margin-top: 16px;
        gap: 12px;
    }
    .why-item {
        gap: 12px;
    }
    .why-item strong {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .why-item p {
        font-size: 13px;
        line-height: 1.5;
    }
    .why-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
}
/* --- Small Mobile (max 375px) --- */
@media (max-width: 375px) {
    .why-section {
        padding: 40px 0;
    }
    .why-section-title {
        font-size: 20px;
        line-height: 1.2;
    }
    .why-list {
        gap: 10px;
        margin-top: 14px;
    }
    .why-item {
        gap: 10px;
    }
    .why-item strong {
        font-size: 13px;
    }
    .why-item p {
        font-size: 12px;
    }
    .why-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.9rem;
        border-radius: 7px;
    }
}
/* --- Extra Small (max 320px) --- */
@media (max-width: 320px) {
    .why-section {
        padding: 30px 0;
    }
    .why-section-title {
        font-size: 18px;
        line-height: 1.2;
    }
    .why-list {
        gap: 8px;
        margin-top: 12px;
    }
    .why-item {
        gap: 8px;
    }
    .why-item strong {
        font-size: 12px;
        margin-bottom: 2px;
    }
    .why-item p {
        font-size: 11px;
        line-height: 1.4;
    }
    .why-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
}
/* --- Accessibility: Reduce Motion --- */
@media (prefers-reduced-motion: reduce) {
    .why-icon,
    .why-item {
        transition: none;
    }
}
/* ================= Services  Button Important ================= */

.btn-white {
    background: #fff;
    color: #2B7CFF;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}
.btn-white:hover {
    background: var(--red);
    color: #fff;
}/*
.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-weight: 500;
    transition: 0.3s;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--blue);
}*/
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .cta-box {
        padding: 40px 20px;
    }
    .cta-box h6 {
        font-size: 1.5rem;
    }
}
/* ================= PROCESS TIMELINE ================= */
.process-section {
    padding: 90px 0;
    background: #FAFAFA;
}
.process-section-title {
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 70px;
    font-weight: 900;
}
.process-text-red {
    color: transparent;
    -webkit-text-stroke: 2px #c5141b !important;
}
.process-text-blue {
    color: #2B7CFF !important;
}
/* == process-content-heading  animation == */
.process-content-heading {
    opacity: 0;
    transform: translate3d(0, 70px, 0) scale(0.95);
    filter: blur(10px);
    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-content-heading.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}
.process-section-desc {
    color: #666;
    font-size: 1.05rem;
    max-width: 1000px;
    margin: 0 auto 50px;
    line-height: 1.4;
}
.timeline-wrapper {
    position: relative;
    padding: 40px 0 20px;
}
.timeline-line {
    position: absolute;
    top: 62px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(to right, var(--blue), rgba(1, 119, 191, 0.15));
    z-index: 0;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 4px 8px;
}
.timeline-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #2B7CFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
    flex-shrink: 0;
}
.timeline-dot span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2B7CFF;
    transition: 0.3s;
}
.timeline-step:hover .timeline-dot,
.timeline-dot.active {
    background: #2B7CFF;
    box-shadow: 0 0 0 6px rgba(1, 119, 191, 0.15);
}
.timeline-step:hover .timeline-dot span,
.timeline-dot.active span {
    color: #fff;
}
.timeline-content strong {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.timeline-content p {
    margin-top: 4px !important;
    font-size: 0.82rem;
    color: #888;
    line-height: 1.55;
    margin: 0;
}
/* ================= PROCESS TIMELINE ANIMATION ================= */
/* Initial hidden state */
.timeline-step {
    opacity: 0;
    transform: scale(0.6);
    transition: none;
}
/* Bouncy pop state */
.timeline-step.pop-in {
    animation: timelinePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes timelinePop {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        opacity: 1;
        transform: scale(1.08);
    }
    80% {
        transform: scale(0.96);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* Dot pulse after pop */
.timeline-step.pop-in .timeline-dot {
    animation: dotPulse 0.4s ease forwards;
    animation-delay: var(--dot-delay, 0s);
}
@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0px rgba(1, 119, 191, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(1, 119, 191, 0.15);
    }
    100% {
        box-shadow: 0 0 0 6px rgba(1, 119, 191, 0.0);
    }
}
/* Line draw animation */
.timeline-line {
    width: 0%;
    transition: width 1s ease;
}
.timeline-line.line-drawn {
    width: calc(100% - 16%);
}
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .timeline-step {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .timeline-line {
        width: calc(100% - 16%);
        transition: none;
    }
}
/* ================= PROCESS TIMELINE RESPONSIVE ================= */
/* --- Tablet Landscape (max 991px) --- */
@media (max-width: 991px) {
    .process-section {
        padding: 70px 0;
    }
    .process-section-title {
        font-size: 48px;
    }
    .process-section-desc {
        font-size: 1rem;
        margin: 0 auto 40px;
    }
    .timeline-line {
        display: none;
    }
    .timeline-dot {
        width: 46px;
        height: 46px;
    }
    .timeline-dot span {
        font-size: 0.8rem;
    }
    .timeline-content strong {
        font-size: 0.9rem;
    }
    .timeline-content p {
        font-size: 0.78rem;
    }
}
/* --- Tablet Portrait (max 767px) --- */
@media (max-width: 767px) {
    .process-section {
        padding: 60px 0;
    }
    .process-section-title {
        font-size: 36px;
        line-height: 1.3;
    }
    .process-section-desc {
        font-size: 0.95rem;
        margin: 0 auto 32px;
    }
    /* Hide horizontal line — steps go into 2-column grid */
    .timeline-line {
        display: none;
    }
    .timeline-wrapper {
        padding: 20px 0;
    }
    .timeline-step {
        padding: 0 12px 30px;
    }
    .timeline-dot {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }
    .timeline-dot span {
        font-size: 0.78rem;
    }
    .timeline-content strong {
        font-size: 0.88rem;
    }
    .timeline-content p {
        font-size: 0.76rem;
    }
}
/* --- Mobile (max 575px) --- */
@media (max-width: 575px) {
    .process-section {
        padding: 50px 0;
    }
    .process-section-title {
        font-size: 28px;
        line-height: 1.25;
    }
    .process-section-desc {
        font-size: 0.9rem;
        margin: 0 auto 28px;
    }
    .timeline-line {
        display: none;
    }
    .timeline-wrapper {
        padding: 16px 0;
    }
    .timeline-step {
        padding: 0 8px 24px;
    }
    .timeline-dot {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        border-width: 2px;
    }
    .timeline-dot span {
        font-size: 0.75rem;
    }
    .timeline-step:hover .timeline-dot,
    .timeline-dot.active {
        box-shadow: 0 0 0 4px rgba(1, 119, 191, 0.15);
    }
    .timeline-content strong {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }
    .timeline-content p {
        font-size: 0.72rem;
        line-height: 1.5;
    }
}
/* --- Small Mobile (max 375px) --- */
@media (max-width: 375px) {
    .process-section {
        padding: 40px 0;
    }
    .process-section-title {
        font-size: 22px;
    }
    .process-section-desc {
        font-size: 0.85rem;
        margin: 0 auto 22px;
    }
    .timeline-step {
        padding: 0 6px 20px;
    }
    .timeline-dot {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }
    .timeline-dot span {
        font-size: 0.7rem;
    }
    .timeline-content strong {
        font-size: 0.78rem;
    }
    .timeline-content p {
        font-size: 0.68rem;
        line-height: 1.45;
    }
}
/* --- Extra Small (max 320px) --- */
@media (max-width: 320px) {
    .process-section {
        padding: 30px 0;
    }
    .process-section-title {
        font-size: 18px;
        line-height: 1.2;
    }
    .process-section-desc {
        font-size: 0.78rem;
        margin: 0 auto 18px;
        line-height: 1.4;
    }
    .timeline-wrapper {
        padding: 10px 0;
    }
    .timeline-step {
        padding: 0 4px 16px;
    }
    .timeline-dot {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
        border-width: 2px;
    }
    .timeline-dot span {
        font-size: 0.65rem;
    }
    .timeline-content strong {
        font-size: 0.72rem;
        margin-bottom: 2px;
    }
    .timeline-content p {
        font-size: 0.62rem;
        line-height: 1.4;
    }
}
/* --- Accessibility: Reduce Motion --- */
@media (prefers-reduced-motion: reduce) {
    .timeline-dot {
        transition: none;
    }
    .timeline-dot span {
        transition: none;
    }
}


 /* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
    position: relative;
    background: #FAFAFA;
    padding: 110px 6%;
    overflow: hidden;
}
.testimonial-section .container {
    position: relative;
    z-index: 2;
}
.testimonial-top {
    max-width: 1100px;
    margin: 0 auto 70px;
}
.testimonial-title {
    font-size: 75px;
    line-height: 0.95;
    font-weight: 900;
    text-align: center;
    color: #111;
    margin-bottom: 35px;

}
.testimonial-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--red);
}
.testimonial-title strong {
    color: #2B7CFF;
}
/* ================= animations ================= */
.testimonial-content-heading {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.92);
    filter: blur(8px);
    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}
.testimonial-content-heading.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}
.testimonial-description {
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    color: #666;
    max-width: 1000px;
    margin: 0 auto 50px;
}
/* ================= SWIPER ================= */
.testimonialSwiper {
    padding-bottom: 70px;
    overflow: hidden;
}
.testimonialSwiper .swiper-slide {
    height: auto;
    padding-bottom: 20px;
}
.testimonial-card {
    background: #f9f9f9;
    border: 1px solid #dddddd;
    padding: 40px 35px;
    min-height: 370px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s ease;
}
.testimonial-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}
.active-card {
    background: #fff;
}
.testimonial-text {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 650;
    color: #111;
    font-style: italic;
    margin-bottom: 40px;
}
/* ================= USER ================= */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 18px;
}
.testimonial-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(1, 119, 191, 0.1);
    color: #2B7CFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}
/* ================= INFO ================= */
.testimonial-info strong {
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 600;
}
.testimonial-info span {
    color: #999;
    font-size: 14px;
    font-weight: 600;
}
/* ================= PAGINATION ================= */
.testimonialSwiper .swiper-pagination {
    position: relative !important;
    margin-top: 25px;
    bottom: 25px !important;
}
.testimonialSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #999;
    opacity: 1;
    transition: 0.3s ease;
}
.testimonialSwiper .swiper-pagination-bullet-active {
    background: #2B7CFF;
    width: 28px;
    border-radius: 30px;
}
/* ================= SCROLLBAR ================= */
.testimonialSwiper .swiper-scrollbar {
    background: #ddd;
    height: 4px;
}
.testimonialSwiper .swiper-scrollbar-drag {
    background: #2B7CFF;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
    .testimonial-section {
        padding: 90px 4%;
    }
    .testimonial-title {
        font-size: 60px;
    }
    .testimonial-description {
        font-size: 17px;
    }
    .testimonial-top {
        margin: 0 auto 55px;
    }
    .testimonial-text {
        font-size: 18px;
    }
    .testimonial-info strong {
        font-size: 18px;
    }
}
@media(max-width:1200px) {
    .testimonial-title {
        font-size: 70px;
    }
    .testimonial-text {
        font-size: 23px;
    }
}
@media(max-width:992px) {
    .testimonial-section {
        padding: 70px 3%;
    }
    .testimonial-title {
        font-size: 48px;
        line-height: 1;
    }
    .testimonial-title span {
        -webkit-text-stroke: 1.5px var(--red);
    }
    .testimonial-description {
        font-size: 16px;
    }
    .testimonial-top {
        margin: 0 auto 45px;
    }
    .testimonial-card {
        padding: 30px 25px;
        min-height: 320px;
    }
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .testimonial-logo {
        width: 50px;
        height: 50px;
        font-size: 17px;
    }
    .testimonial-info strong {
        font-size: 16px;
    }
    .testimonial-info span {
        font-size: 13px;
    }
}
/* Tablet Portrait / Large Phone (≤ 767px) */
@media (max-width: 767px) {
    .testimonial-section {
        padding: 56px 3%;
    }
    .testimonial-title {
        font-size: 44px;
        line-height: 1.05;
        margin-bottom: 24px;
    }
    .testimonial-title span {
        -webkit-text-stroke: 1px var(--red);
    }
    .testimonial-description {
        font-size: 15px;
        font-weight: 500;
    }
    .testimonial-top {
        margin: 0 auto 36px;
    }
    .testimonial-card {
        padding: 26px 22px;
        min-height: 280px;
        border-radius: 12px;
    }
    .testimonial-text {
        font-size: 15px;
        margin-bottom: 22px;
    }
    .testimonial-user {
        gap: 14px;
    }
    .testimonial-logo {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }
    .testimonial-info strong {
        font-size: 15px;
    }
    .testimonial-info span {
        font-size: 12px;
    }
    .testimonialSwiper {
        padding-bottom: 60px;
    }
}
/* Small Phone (≤ 575px) */
@media (max-width: 575px) {
    .testimonial-section {
        padding: 44px 4%;
    }
    .testimonial-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    .testimonial-description {
        font-size: 14px;
        line-height: 1.6;
    }
    .testimonial-top {
        margin: 0 auto 28px;
    }
    .testimonial-card {
        padding: 22px 18px;
        min-height: auto;
        border-radius: 10px;
    }
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .testimonial-user {
        gap: 12px;
    }
    .testimonial-logo {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
    .testimonial-info strong {
        font-size: 14px;
    }
    .testimonial-info span {
        font-size: 12px;
    }
    .testimonialSwiper {
        padding-bottom: 50px;
    }
}
/* Very Small Phone (≤ 400px) */
@media (max-width: 400px) {
    .testimonial-section {
        padding: 32px 3%;
    }
    .testimonial-title {
        font-size: 35px;
    }
    .testimonial-description {
        font-size: 13px;
    }
    .testimonial-card {
        padding: 18px 14px;
    }
    .testimonial-text {
        font-size: 13px;
    }
    .testimonial-logo {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
    .testimonial-info strong {
        font-size: 13px;
    }
}
/* Ultra Small Phone (≤ 360px) */
@media (max-width: 360px) {
    .testimonial-section {
        padding: 26px 3%;
    }
    .testimonial-title {
        font-size: 30px;
        line-height: 1.1;
    }
    .testimonial-title span {
        -webkit-text-stroke: 0.8px var(--red);
    }
    .testimonial-description {
        font-size: 12.5px;
    }
    .testimonial-card {
        padding: 16px 12px;
        border-radius: 8px;
    }
    .testimonial-text {
        font-size: 12.5px;
        margin-bottom: 14px;
    }
    .testimonial-logo {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    .testimonial-info strong {
        font-size: 12.5px;
    }
    .testimonial-info span {
        font-size: 11px;
    }
}


/* ================= APPLE FAQ SECTION ================= */
.apple-faq-section {
    background: #FAFAFA; 
    padding: 80px 7% 120px 7%;
}
.apple-faq-top {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 80px;
}
.apple-faq-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2B7CFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px
}
.apple-faq-title {
    font-size: 70px;
    line-height: 0.95;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 35px;
}
.faq-text-red {
    color: transparent;
    -webkit-text-stroke: 2px var(--red);
}
.faq-text-blue {
    color: #2B7CFF !important;
}
.faq-left,
.faq-right {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transition:
        opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-left {
    transform: translateX(-80px);
}
.faq-right {
    transform: translateX(80px);
}
.faq-left.active,
.faq-right.active {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}
/* ================= DESCRIPTION ================= */
.apple-faq-description {
    font-size: 20px;
    line-height: 1.2;
    color: #666;
    max-width: 760px;
    margin: auto;
}
.apple-faq-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}
.apple-faq-item {
    border-top: 1px solid #d2d2d7;
    padding: 35px 0;
    transition: 0.35s ease;
}
.apple-faq-item:last-child {
    border-bottom: 1px solid #d2d2d7;
}
.apple-faq-question {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    cursor: pointer;
}
.faq-number {
    min-width: 55px;
    color: #2c2c2e;
    font-size: 18px;
    font-weight: 600;
    margin-top: 6px;
}
.apple-faq-question strong {
    flex: 1;
    color: #1d1d1f;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -1px;
}
.faq-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #d2d2d7 !important;
    background: #fff !important;
    color: #1d1d1f !important;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.35s ease;
}
.active-faq .faq-icon {
    background: #2B7CFF !important;
    border-color: #2B7CFF !important;
    color: #fff !important;
    transform: rotate(45deg);
}
.apple-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 85px;
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        margin-top 0.35s ease;
}
.active-faq .apple-faq-answer {
    max-height: 500px; 
    opacity: 1;
    margin-top: 20px;  
}
.apple-faq-answer p {
    max-width: 850px;
    color: #6e6e73;
    font-size: 19px;
    line-height: 1.5;
}
.apple-faq-item:hover {
    padding-left: 10px;
}
/* ================= RESPONSIVE ================= */
 @media(max-width:1200px) {
    .apple-faq-section { padding:70px 5% 90px; }
    .apple-faq-top { margin-bottom:65px;}
    .apple-faq-title {  font-size:58px;}
    .apple-faq-description { font-size:18px; }
    .apple-faq-question strong { font-size: 30px; } }
 @media (max-width: 992px) {
    .apple-faq-section { padding:65px 4% 80px; }
    .apple-faq-top {margin-bottom:55px;}
    .apple-faq-tag { font-size:17px;}
    .apple-faq-title { font-size: 47px;  line-height:1.1; }
    .apple-faq-description {font-size:17px; line-height:1.6;}
    .apple-faq-question { gap:20px; }
    .apple-faq-question strong { font-size: 26px; }
    .faq-number { min-width:45px; font-size:17px; }
    .apple-faq-answer { margin-left: 65px; } 
    .apple-faq-answer p { font-size:18px; } }
 @media (max-width: 768px) {
    .apple-faq-section { padding:60px 20px 70px; }
    .apple-faq-top { margin-bottom: 45px; }
    .apple-faq-tag {  font-size: 16px; }
    .apple-faq-title { font-size:38px; line-height:1.2; margin-bottom:25px; }
    .faq-text-red {-webkit-text-stroke:1.5px var(--red); }
    .apple-faq-description { font-size:15px; line-height:1.7; }
    .apple-faq-item { padding:25px 0; }
    .apple-faq-question { gap: 15px; }
    .apple-faq-question strong { font-size: 20px; line-height: 0; }
    .faq-number { min-width: 38px; font-size: 15px; }
    .faq-icon { width: 40px; height: 40px; font-size: 20px; }
    .apple-faq-answer { margin-left: 55px; }
    .apple-faq-answer p { font-size: 17px; }
    .apple-faq-item:hover {padding-left: 0; } }
 @media (max-width: 576px) {
    .apple-faq-section {  padding:50px 15px 60px; }
    .apple-faq-top { margin-bottom: 50px; }
    .apple-faq-title { font-size: 32px; line-height: 1.1; }
    .faq-text-red { -webkit-text-stroke:1px var(--red); }
    .apple-faq-description { font-size: 16px; }
    .apple-faq-item { padding: 25px 0; }
    .apple-faq-question { gap: 12px; }
    .faq-number { min-width: 32px; font-size: 14px; margin-top: 2px; }
    .apple-faq-question strong { font-size: 19px; line-height: 1.5; }
    .faq-icon { width: 38px; height: 38px; font-size: 20px; }
    .apple-faq-answer { margin-left: 47px; }
    .apple-faq-answer p { font-size: 15px; line-height: 1.7; } }
 @media (max-width: 480px) {
    .apple-faq-title { font-size: 28px; }
    .apple-faq-tag { font-size: 14px; }
    .apple-faq-description { font-size: 15px; }
    .apple-faq-question strong { font-size: 18px; }
    .faq-icon { width: 34px; height: 34px; font-size: 18px; }
    .apple-faq-answer { margin-left: 0; margin-top: 15px; }
    .active-faq .apple-faq-answer { margin-top: 15px; }
    .apple-faq-answer p { font-size: 14px;} }
 @media (max-width: 360px) {
    .apple-faq-section { padding: 25px 4% 40px; }
    .apple-faq-title { font-size: 24px; line-height: 1.15; }
    .apple-faq-tag { font-size: 13px; letter-spacing: 0.5px; }
    .apple-faq-description { font-size: 14px; }
    .apple-faq-question { gap: 10px; }
    .faq-number { min-width: 26px; font-size: 13px; }
    .apple-faq-question strong { font-size: 16px; line-height: 1.5; }
    .faq-icon { width: 30px; height: 30px; font-size: 16px; }
    .apple-faq-answer p { font-size: 13px; line-height: 1.7; } }
@media (max-width:320px){
    .apple-faq-title { font-size:22px; }
    .apple-faq-description { font-size:12px; }
    .apple-faq-question strong{ font-size:14px; }
}