.hero-container {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
 } 

 .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;
}

 /* LEFT SIDE */

 .hero-content {
     flex: 1;
 }

 .hero-tag {
     display: inline-block;

     color: #2B7CFF;    /* #0177BF; */ 
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 20px;
     letter-spacing: 1px;
 }

 .hero-content h1 {
     /* font-size: 68px;
            line-height: 1.1;
            color: #fff;
            font-weight: 800; */
     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;  /* #0177BF;*/

 }

 .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;
        /* text-align: center;*/
        gap: 30px;
        text-align: left;
     }


    .hero-content {
        width: 100%;
    }

    /*
     .hero-content h1 {
         font-size: 52px;
     } */

     .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%;
       /*  margin: 20px auto; */

        font-size: 16px;
        margin-top: 15px;
     }

/*
     .hero-content p {
         margin: auto auto 35px;
     } */

     .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: 65px;
    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;

     opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.35s ease;
}

.seo-card.show {
  transition-delay: 0.05s;
  opacity: 1;
  transform: translateY(0) scale(1);

}

.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; 
    margin-top: 4px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 16px;
}


/* ================= 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;
    }
}
/* ================= 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;
    }
    
}
/* ================= 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;
    }   
}


/* ================= PROCESS TIMELINE ================= */
.process-section {
    padding: 90px 0;
    background: #FAFAFA;
}
.process-section-title {
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 60px;
    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;
    }
}




/* ================= 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; }
}



/* ================= WHY CHOOSE US ================= */
.why-section {
    padding: 120px 0;
    background: #FAFAFA;
}
.why-section-title {
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 900;
    font-size: clamp(22px, 4vw, 60px);
}
.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;
    }
}




/* --- web development --- */

.tech-section {
    padding: 90px 0;
    background: #FAFAFA;
}

.tech-section-badge {
    display: inline-block;
    margin-bottom: 12px;
    color: #2B7CFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.tech-section-title {
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 65px;
    font-weight: 900;

}
.tech-text-red {
    color: transparent;
    -webkit-text-stroke: 2px #c5141b !important;
}
.tech-text-blue {
    color: #2B7CFF !important;
}

.tech-heading {
     opacity: 0;
     transform: translateX(100px) scale(.95);
     filter: blur(8px);

     transition:
         opacity 1s cubic-bezier(.22, .61, .36, 1),
         transform 1s cubic-bezier(.22, .61, .36, 1),
         filter 1s cubic-bezier(.22, .61, .36, 1);
 }

 .tech-heading.active {
     opacity: 1;
     transform: translateX(0) scale(1);
     filter: blur(0);
 }


.tech-section-desc {
    color: #666;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.4;
}

.tech-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 22px 10px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(40px);
}

.tech-card img {
    width: 46px;
    height: 46px;
} 

.tech-card i {
    font-size: 45px;
    display: block;
    margin-bottom: 3px;
}
.tech-card span {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

/* hover effect */
.tech-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #2B7CFF;
    box-shadow: 0 18px 40px rgba(43, 124, 255, 0.15);
}

/* show animation */
.tech-card.show {
    opacity: 1;
    transform: translateY(0);
}

