/* ================= BRAND COLORS ================= */
:root {
    --blue: #0177BF;
    --red: #ED1B24;
    --white: #ffffff;
    --text-color: #666;
    --text-blue: #38bdf8;
    --section-color: #FAFAFA;

}

/* ================= HERO ================= */

 .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: 80px;
     font-weight: 900;
     color: #000;
 }

 .filled-orange {
     font-size: 80px;
     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: 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: 700px;
     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 SECTION ================= */
.services-section {
    padding: 90px 0;
    background: #FAFAFA;
}

.section-badge {
    /* background: rgba(1, 119, 191, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500; */
    display: inline-block;
    color: #2B7CFF; 
    margin-bottom: 12px;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    /* font-size: 2.6rem;
    font-weight: 700; */
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;

    font-size: 70px;
    font-weight: 900;
}
.service-outline-orange{
    color: transparent;
     -webkit-text-stroke: 2px #c5141b;
}

.service-text-blue{
    color: #2B7CFF; 
}

.section-desc {
    color: #666;
    font-size: 1.05rem;
    /*1rem */
    max-width: 1000px;
    /* 600 */
    margin: 0 auto 50px;
    line-height: 1.4;
    /* 1.7 */
}

.section-header {
    margin-bottom: 50px;
}

.services-wrapper {
    border: 1px solid #eeeeee;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ---- LEFT TABS ---- */
.services-tabs {
    border-right: 1px solid #eeeeee;
    background: #f8f9fa;
}

.tab-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    border-bottom: 1px solid #eeeeee;
    font-weight: 500;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
}

.tab-item:last-child {
    border-bottom: none;
}

.tab-item i {
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    color: #2B7CFF; 
}

.tab-item:hover {
    color: #2B7CFF;
    background: rgba(1, 119, 191, 0.04);
    padding-left: 34px;
}

.tab-item:hover i {
    opacity: 1;
    transform: translateX(0);
}

.tab-item.active {
    color: #2B7CFF;
    background: #fff;
    font-weight: 600;
    border-left: 3px solid #2B7CFF;
    padding-left: 25px;
}

.tab-item.active i {
    opacity: 1;
    transform: translateX(0);
}

/* ---- RIGHT CONTENT ---- */
.services-content {
    padding: 48px 48px;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.tab-content {
    display: none;
    animation: fadeSlide 0.35s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content strong {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.tab-content p {
    font-size: 0.97rem;
    color: #666;
    line-height: 1.60;
    /*1.75 */
    margin-bottom: 24px;
    max-width: 700px;
    /* 520 */
}

/* ---- FEATURE LIST ---- */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: #444;
    font-weight: 500;
}

.feature-list li i {
    color: #2B7CFF;
    font-size: 1rem;
    min-width: 18px;
}

/* ================= button ================= */

.btn-primary {

     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;
}

.btn-primary:hover {

        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(59, 137, 255, 0.7);
        filter: brightness(1.1); 
}


/* Medium Desktop (max-width: 1199px) */
@media (max-width: 1199px) {
    .section-title {
        font-size: 56px;
    }

    .section-badge {
        font-size: 17px;
    }

    .services-content {
        padding: 40px 36px;
    }

    .tab-content strong {
        font-size: 1.5rem;
    }
}


/* Tablet Landscape (max-width: 991px) */
@media (max-width: 991px) {
    .services-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 44px;
    }

    .section-badge {
        font-size: 15px;
    }

    .section-desc {
        font-size: 0.97rem;
        margin-bottom: 36px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    /* Stack tabs on top, content below */
    .services-wrapper {
        flex-direction: column;
    }

    .services-tabs {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        display: flex;
        flex-wrap: wrap;
        background: #f8f9fa;
    }

    .tab-item {
        flex: 1 1 auto;
        justify-content: center;
        padding: 14px 16px;
        border-bottom: none;
        border-right: 1px solid #eeeeee;
        font-size: 0.88rem;
        text-align: center;
    }

    .tab-item i {
        display: none;
    }

    .tab-item:last-child {
        border-right: none;
    }

    .tab-item.active {
        border-left: none;
        border-bottom: 3px solid #2B7CFF
        ;
        padding-left: 16px;
    }

    .tab-item:hover {
        padding-left: 16px;
    }

    .services-content {
        padding: 36px 32px;
        min-height: auto;
        align-items: flex-start;
    }

    .feature-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}


/* Tablet Portrait / Large Phone (max-width: 767px) */
@media (max-width: 767px) {
    .services-section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .section-badge {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 0.92rem;
        margin-bottom: 28px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    /* Tabs scroll horizontally */
    .services-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-item {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 12px 18px;
        font-size: 0.85rem;
        border-right: 1px solid #eeeeee;
        justify-content: center;
    }

    .tab-item.active {
        border-left: none;
        border-bottom: 3px solid #2B7CFF;
        padding-left: 18px;
    }

    .tab-item:hover {
        padding-left: 18px;
    }

    .services-content {
        padding: 28px 24px;
    }

    .tab-content strong {
        font-size: 1.3rem;
    }

    .tab-content p {
        font-size: 0.92rem;
        margin-bottom: 18px;
    }

    .feature-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 24px;
    }

    .feature-list li {
        font-size: 0.88rem;
    }
}


/* Small Phone (max-width: 575px) */
@media (max-width: 575px) {
    .services-section {
        padding: 44px 0;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-badge {
        font-size: 11px;
    }

    .section-desc {
        font-size: 0.87rem;
        margin-bottom: 22px;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .services-wrapper {
        border-radius: 12px;
    }

    .tab-item {
        padding: 10px 14px;
        font-size: 0.80rem;
    }

    .services-content {
        padding: 22px 18px;
    }

    .tab-content strong {
        font-size: 1.15rem;
        margin-bottom: 10px;
        display: block;
    }

    .tab-content p {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }

    /* Single column list on small phones */
    .feature-list {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 20px;
    }

    .feature-list li {
        font-size: 0.85rem;
    }

    .btn-primary {
        font-size: 0.88rem;
        padding: 9px 20px !important;
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Very Small Phone (max-width: 400px) */
@media (max-width: 400px) {
    .services-section {
        padding: 32px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-badge {
        font-size: 10px;
    }

    .section-desc {
        font-size: 0.83rem;
    }

    .tab-item {
        padding: 9px 12px;
        font-size: 0.76rem;
    }

    .services-content {
        padding: 18px 14px;
    }

    .tab-content strong {
        font-size: 1.05rem;
    }

    .tab-content p {
        font-size: 0.84rem;
    }

    .feature-list li {
        font-size: 0.82rem;
        gap: 7px;
    }
}


/* Ultra Small Phone (max-width: 360px) */
@media (max-width: 360px) {
    .services-section {
        padding: 26px 0;
    }

    .section-title {
        font-size: 19px;
    }

    .section-badge {
        font-size: 9px;
        letter-spacing: 0;
    }

    .section-desc {
        font-size: 0.80rem;
    }

    .tab-item {
        padding: 8px 10px;
        font-size: 0.72rem;
    }

    .services-content {
        padding: 14px 12px;
    }

    .tab-content strong {
        font-size: 0.98rem;
    }

    .tab-content p {
        font-size: 0.80rem;
        line-height: 1.5;
    }

    .feature-list li {
        font-size: 0.78rem;
    }

    .btn-primary {
        font-size: 0.82rem;
        padding: 8px 16px !important;
    }
}

/* ================= RESPONSIVE ================= 
@media (max-width: 991px) {
    .services-wrapper {
        flex-direction: column;
    }

    .services-tabs {
        border-right: none;
        border-bottom: 1px solid #eee;
        display: flex;
        overflow-x: auto;
        background: #f8f9fa;
    }

    .tab-item {
        border-bottom: none;
        border-right: 1px solid #eee;
        white-space: nowrap;
        padding: 16px 20px;
        min-width: fit-content;
        font-size: 0.9rem;
    }

    .tab-item:last-child {
        border-right: none;
    }

    .tab-item.active {
        border-left: none;
        border-bottom: 3px solid var(--blue);
        padding-left: 20px;
    }

    .tab-item i {
        display: none;
    }

    .services-content {
        padding: 32px 24px;
        min-height: auto;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
} 

@media (max-width: 576px) {
    .tab-content strong {
        font-size: 1.4rem;
    }
} */



/* ================= WHY CHOOSE US — CLEAN & FINAL ================= */

.why-section {
    padding: 90px 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-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;
}

.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;
}

/* ── Tablet Landscape (≤ 991px) ── */
@media (max-width: 991px) {
    .why-section {
        padding: 70px 0;
    }

    .why-section-desc {
        font-size: 0.97rem;
        margin: 0 0 36px;
    }

    .why-section .col-lg-6 img {
        max-height: 380px;
        object-fit: cover;
        width: 100%;
    }

    .why-list { gap: 16px; margin-top: 20px; }

    .why-item strong { font-size: 16px; }
    .why-item p      { font-size: 14px; }
}

/* ── Tablet Portrait / Large Phone (≤ 767px) ── */
@media (max-width: 767px) {
    .why-section { padding: 56px 0; }

    .why-section-desc {
        font-size: 0.92rem;
        margin: 0 0 24px;
        line-height: 1.5;
    }

    .why-section .col-lg-6 img {
        max-height: 300px;
        object-fit: cover;
        width: 100%;
    }

    .why-list  { gap: 14px; margin-top: 16px; }
    .why-item  { gap: 12px; }

    .why-icon {
        width: 36px; height: 36px;
        min-width: 36px;
        font-size: 1.05rem;
        border-radius: 8px;
    }

    .why-item strong { font-size: 15px; }
    .why-item p      { font-size: 13.5px; line-height: 1.45; }
}

/* ── Small Phone (≤ 575px) ── */
@media (max-width: 575px) {
    .why-section { padding: 44px 0; }

    .why-section-desc {
        font-size: 0.88rem;
        margin: 0 0 20px;
    }

    .why-section .col-lg-6 img {
        max-height: 240px;
        border-radius: 12px !important;
    }

    .why-list  { gap: 12px; margin-top: 14px; }
    .why-item  { gap: 10px; }

    .why-icon {
        width: 34px; height: 34px;
        min-width: 34px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .why-item strong { font-size: 14px; }
    .why-item p      { font-size: 13px; line-height: 1.45; }
}

/* ── Very Small Phone (≤ 400px) ── */
@media (max-width: 400px) {
    .why-section { padding: 32px 0; }

    .why-section-desc { font-size: 0.83rem; }

    .why-section .col-lg-6 img { max-height: 200px; }

    .why-item { gap: 8px; }

    .why-icon {
        width: 30px; height: 30px;
        min-width: 30px;
        font-size: 0.9rem;
    }

    .why-item strong { font-size: 13.5px; }
    .why-item p      { font-size: 12.5px; }
}

/* ── Ultra Small Phone (≤ 360px) ── */
@media (max-width: 360px) {
    .why-section { padding: 26px 0; }

    .why-section-desc { font-size: 0.80rem; }

    .why-section .col-lg-6 img { max-height: 170px; }

    .why-item { gap: 8px; }

    .why-icon {
        width: 28px; height: 28px;
        min-width: 28px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .why-item strong { font-size: 13px; }
    .why-item p      { font-size: 12px; line-height: 1.4; }
}



 /* ================= 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: 80px;
    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-title {
        font-size: 68px;
    }
    .apple-faq-question strong {
        font-size: 30px;
    }
}
@media (max-width: 992px) {
    .apple-faq-section {
        padding: 90px 5%;
    }
    .apple-faq-title {
        font-size: 60px;
    }
    .apple-faq-question strong {
        font-size: 26px;
    }
    .apple-faq-answer {
        margin-left: 70px;
    }
}
@media (max-width: 768px) {
    .apple-faq-section {
        padding: 80px 5%;
    }
    .apple-faq-top {
        margin-bottom: 60px;
    }
    .apple-faq-tag {
        font-size: 16px;
    }
    .apple-faq-title {
        font-size: 48px;
        line-height: 1.05;
    }
    .apple-faq-description {
        font-size: 18px;
    }
    .apple-faq-question {
        gap: 20px;
    }
    .apple-faq-question strong {
        font-size: 22px;
        line-height: 1.4;
    }
    .faq-number {
        min-width: 40px;
        font-size: 16px;
    }
    .faq-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    .apple-faq-answer {
        margin-left: 60px;
    }
    .apple-faq-answer p {
        font-size: 17px;
    }
    .apple-faq-item:hover {
        padding-left: 0;
    }
}
@media (max-width: 576px) {
    .apple-faq-section {
        padding: 70px 20px;
    }
    .apple-faq-top {
        margin-bottom: 50px;
    }
    .apple-faq-title {
        font-size: 38px;
        line-height: 1.1;
    }
    .apple-faq-description {
        font-size: 16px;
    }
    .apple-faq-item {
        padding: 25px 0;
    }
    .apple-faq-question {
        gap: 15px;
    }
    .faq-number {
        min-width: 32px;
        font-size: 15px;
        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: 32px;
    }
    .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: 60px 16px;
    }
    .apple-faq-title {
        font-size: 28px;
        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;
    }
}
