/* =============================================================
   MAIN STYLESHEET
   Clean build — no Bootstrap _rfs.scss / reboot.scss
   Design, colors, font sizes, and responsiveness preserved.
   ─────────────────────────────────────────────────────────────
   TABLE OF CONTENTS
   01. Google Font Import
   02. Global Reset & Base
   03. Layout Containers
   04. Typography (base)
   05. Banner / Hero Section
   06. About Company Section
   07. About Mission Section
   08. Global Brand Section
   09. Smart Technology Section
   10. Service Pricing Section
   11. Trusted Global Clients Section
   12. Customer Testimonial Section
   13. Blog Insights Section
   14. Workflow Section
   15. Why Choose Us Section
   16. ISI Pricing Section
   17. Core Services Section
   18. Scale CTA Section
   19. Contact Section
   20. Portfolio / Work Gallery Section
   21. Blog / Resource List
   22. Careers — We Are Hiring Section
   23. Free Trial — Features & Form
   24. Industries — Commercial & Retail
   25. Enterprise / Testimonial Hero
   26. Blog Reading
   27. Image Post Processing (PPS)
   28. Job Opening / Resume Submit
   29. Testimonial Section (Index)
   30. Free Sample CTA Section
   31. Responsive Breakpoints
       31a. ≥ 1440px
       31b. 1200px – 1439px
       31c.  992px – 1199px
       31d.  768px –  991px
       31e.  472px –  767px
       31f.  ≤ 480px
============================================================= */


/* =============================================================
   01. GOOGLE FONT IMPORT
============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');


/* =============================================================
   02. GLOBAL RESET & BASE
============================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-width: 320px;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', sans-serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
}


/* =============================================================
   03. LAYOUT CONTAINERS
============================================================= */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.all-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.custom-container {
    padding-left: 20px;
    padding-right: 20px;
}


/* =============================================================
   04. TYPOGRAPHY (BASE)
============================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

h1 { font-size: 70px; }
h2 { font-size: 65px; }
h3 { font-size: 36px; }
h4 { font-size: 28px; }
h5 { font-size: 45px; }
h6 { font-size: 18px; }

p {
    font-size: 27px;
    margin-bottom: 15px;
}

li {
    font-size: 25px;
}


/* =============================================================
   05. BANNER / HERO SECTION
============================================================= */
.banner-header-section {
    overflow: hidden;
}

.banner-header-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 80px;
}

.banner-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-header-content {
    width: 52%;
}

.banner-header-content h1 {
    line-height: 1.12;
    font-weight: 800;
    color: #1d47a7;
    margin-bottom: 35px;
    text-align: left;
}

.banner-header-content h1 span {
    color: #1da1f2;
    font-size: 58px;
}

.banner-header-content p {
    line-height: 1.8;
    color: #222222;
    margin-bottom: 40px;
    text-align: justify;
}

.banner-header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
     margin-top: 20px;
}

.banner-header-primary-btn {
    padding: 16px 28px;
    background: #E2393F;
    color: #ffffff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.4s ease;
    text-decoration: none;
}

.banner-header-primary-btn:hover {
    background: #E2393F;
}

.banner-header-secondary-btn {
    padding: 15px 28px;
    border: 2px solid #111111;
    color: #111111;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: background 0.4s ease, color 0.4s ease;
    text-decoration: none;
}

.banner-header-secondary-btn:hover {
    background: #111111;
    color: #ffffff;
}

.banner-header-image {
    position: relative;
    max-width: 600px;
}

.banner-header-image img {
    border-radius: 50px;
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
}

.banner-header-center-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #111111;
}

.banner-header-drag-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-header-arrow {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
}

.banner-header-drag-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 18px;
    font-weight: 700;
    color: #111111;
}

.banner-header-bottom-lines {
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    padding-right: 20px;
    margin-top: 16px;
}

.banner-header-bottom-lines span {
    width: 17px;
    height: 3px;
    background: #bdbdbd;
    border-radius: 30px;
}

.banner-header-bottom-lines span.active {
    width: 25px;
    background: #179CD8;
}


/* =============================================================
   06. ABOUT COMPANY SECTION
============================================================= */
.about-company-section {
    padding: 90px;
    overflow: hidden;
}

.about-company-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
}

.about-company-top-title {
    text-align: center;
    margin-bottom: 45px;
    font-weight: 400;
    color: #179CD8;
    line-height: 1;
}

.about-company-grid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    margin-top: 90px;
}

.about-company-left {
    flex: 1;
    max-width: 560px;
}

.about-company-left h2 {
    font-weight: 800;
    color: #154998;
    line-height: 1.05;
    margin: 0 0 35px;
    text-align: left;
}

.about-company-left p {
    font-weight: 400;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 25px;
    text-align: justify;
}

.about-company-right {
    flex: 1;
    max-width: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-company-card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-company-card {
    width: 100%;
    min-height: 320px;
    background: #ffffff;
    border: 1px solid #179CD845;
    border-radius: 40px;
    box-shadow: 0px -1px 7.1px 3px #179CD826;
    padding: 40px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.about-company-card:hover {
    transform: translateY(-8px);
}

.about-company-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 25px;
}

.about-company-card h3 {
    font-weight: 800;
    color: #154998;
    margin: 0 0 15px;
}

.about-company-card p {
    font-size: 22px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
}

.about-company-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.about-company-btn {
    width: 220px;
    height: 60px;
    background: #E2393F;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-company-btn:hover {
    background: #E2393F;
    transform: translateY(-3px);
}


/* =============================================================
   07. ABOUT MISSION SECTION
============================================================= */
.about-mission-section {
    padding: 50px 14px;
}

.about-mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-mission-column h1 {
    text-align: center;
    color: #0d4da1;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.about-mission-column p {
    color: #1f1f1f;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.9;
    text-align: justify;
}

.who-we-are-text-bottom p {
    line-height: 1.8;
    text-align: justify;
}


/* =============================================================
   08. GLOBAL BRAND SECTION
============================================================= */
.global-brand-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.global-brand-title {
    width: 100%;
    text-align: center;
    font-weight: 800;
    line-height: 1;
    color: #154998;
    margin-bottom: 60px;
}

.global-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.global-brand-card {
    width: 100%;
    min-height: 280px;
    background: #ffffff;
    border: 1px solid #cbe9ff;
    border-radius: 40px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.global-brand-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 28px;
}

.global-brand-card h3 {
    font-size: 22px;
    line-height: 34px;
    color: #222222;
    font-weight: 700;
}


/* =============================================================
   09. SMART TECHNOLOGY SECTION
============================================================= */
.smart-technology-section {
    width: 100%;
    padding: 80px 20px 120px;
    background: #ffffff;
}

.smart-technology-top-title h5 {
    width: 100%;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    color: #179CD8;
    margin-bottom: 45px;
    line-height: 1.18;
    font-size: 38px;
}

.smart-technology-main-title {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #154998;
}

.smart-technology-description {
    width: 100%;
    max-width: 1307px;
    margin: 0 auto 60px;
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
    color: #2d2d2d;
}

.smart-technology-subtitle {
    width: 100%;
    text-align: center;
    font-weight: 800;
    line-height: 1;
    color: #154998;
    margin-top: 90px;
    margin-bottom: 90px;
}

.smart-technology-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(257px, 1fr));
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
    align-items: stretch;
}

.smart-technology-card {
    width: 100%;
    min-height: 320px;
    background: #ffffff;
    border: 1px solid #179CD845;
    border-radius: 40px;
    box-shadow: 0px -1px 7.1px 3px #179CD826;
    padding: 40px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smart-technology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.smart-technology-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 28px;
}

.smart-technology-card h3 {
    font-size: 22px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
}


/* =============================================================
   10. SERVICE PRICING SECTION
============================================================= */
.service-pricing-section {
    width: 100%;
    max-width: 1312px;
    margin: auto;
    font-family: 'Manrope', sans-serif;
}

.service-pricing-top-title {
    width: 100%;
    text-align: center;
    font-size: 39px;
    font-weight: 400;
    color: #179CD8;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.service-pricing-description {
    width: 100%;
    max-width: 1313px;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.4;
    color: #2d2d2d;
    margin-bottom: 70px;
    text-align: justify;
}

.service-pricing-card-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 257px);
    justify-content: space-between;
    margin-bottom: 70px;
}

.service-pricing-card {
    width: 257px;
    height: 336px;
    background: #ffffff;
    border: 1px solid #179CD845;
    border-radius: 40px;
    box-shadow: 0px -1px 7.1px 3px #179CD826;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-pricing-card:hover {
    transform: translateY(-8px);
}

.service-pricing-card-content {
    width: 176px;
    text-align: center;
}

.service-pricing-card-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: #1e1e1e;
    line-height: 1.15;
    margin-bottom: 8px;
}

.service-pricing-start {
    display: block;
    font-size: 30px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 38px;
    text-align: center;
}

.service-pricing-card-content h2 {
    font-size: 35px;
    font-weight: 800;
    color: #154998;
    line-height: 1;
    margin-bottom: 8px;
}

.service-pricing-card-content p {
    font-size: 22px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 20px;
    text-align: center;
}

.service-pricing-card-content a {
    width: 148px;
    height: 36px;
    background: #963E97;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.service-pricing-factors {
    width: 100%;
    max-width: 1312px;
    margin-bottom: 55px;
}

.service-pricing-factors h2 {
    font-size: 40px;
    font-weight: 800;
    color: #154998;
    margin-bottom: 38px;
}

.service-pricing-factors ul {
    padding-left: 28px;
    list-style: disc;
}

.service-pricing-factors li {
    font-weight: 400;
    line-height: 1.45;
    color: #2d2d2d;
    margin-bottom: 28px;
}

.service-pricing-factors li strong {
    font-weight: 900;
}

.service-pricing-bottom-text {
    width: 100%;
    text-align: center;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.4;
    color: #2d2d2d;
    margin-bottom: 40px;
}

.service-pricing-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.service-pricing-contact-btn {
    width: 208px;
    height: 52px;
    background: #E2393F;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.service-pricing-contact-btn:hover {
    transform: translateY(-3px);
}


/* =============================================================
   11. TRUSTED GLOBAL CLIENTS SECTION
============================================================= */
.trusted-global-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

.trusted-global-logos {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-global-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-global-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trusted-global-item-one   { width: 148px; height: 113px; }
.trusted-global-item-two   { width: 248px; height: 61px; }
.trusted-global-item-three { width: 236px; height: 91px; }
.trusted-global-item-four  { width: 188px; height: 97px; }
.trusted-global-item-five  { width: 174px; height: 174px; }


/* =============================================================
   12. CUSTOMER TESTIMONIAL SECTION
============================================================= */
.customer-testimonial-section {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.customer-testimonial-card {
    position: relative;
    width: 1011px;
    min-height: 347px;
    margin: auto;
    background: #ffffff;
    border: 2px solid #D9F1FF;
    border-radius: 40px;
    padding: 70px 80px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.customer-testimonial-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.quote-left-img {
    position: absolute;
    top: 75px;
    left: 135px;
    width: 45px;
    height: auto;
    opacity: 0.25;
}

.quote-right-img {
    position: absolute;
    left: 285px;
    bottom: 150px;
    width: 45px;
    height: auto;
    opacity: 0.25;
}

.customer-testimonial-text {
    margin: 0;
    padding-left: 70px;
    color: #222;
    font-size: 25px;
    line-height: 1.45;
    font-weight: 400;
    text-align: justify;
}

.customer-profile-image {
    width: 181px;
    height: 226px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 10px;
}

.customer-profile-image img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.customer-rating-stars {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.customer-rating-stars span {
    font-size: 20px;
    line-height: 1;
    color: #F4C300;
}

.customer-open-quote {
    position: absolute;
    top: -18px;
    left: -38px;
    width: 37px;
    height: 37px;
}

.customer-open-quote img,
.customer-close-quote img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.28;
}

.customer-open-quote img {
    transform: rotate(180deg);
}

.customer-close-quote {
    position: relative;
    display: inline-block;
    width: 37px;
    height: 37px;
    top: 18px;
    left: 6px;
}

.customer-footer-wrapper {
    width: 100%;
    margin-top: 34px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.customer-details {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color: #154998;
    margin-bottom: 8px;
}

.customer-role {
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #2B2B2B;
}

.customer-role span {
    color: #179CD8;
}

.customer-action-wrapper {
    display: flex;
    align-items: center;
    gap: 42px;
    padding-bottom: 2px;
}

.customer-read-story {
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #2B2B2B;
    display: flex;
    align-items: center;
    gap: 14px;
}

.customer-story-arrow {
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
}

.customer-story-arrow::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: #179CD8;
    top: 7px;
    left: 0;
}

.customer-story-arrow::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #179CD8;
    border-right: 2px solid #179CD8;
    right: 0;
    top: 3px;
    transform: rotate(45deg);
}

.customer-slider-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-slider-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(23, 156, 216, 0.12);
    background: #ffffff;
    color: #154998;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(23, 156, 216, 0.25);
    transition: background 0.3s ease, color 0.3s ease;
}

.customer-slider-btn:hover {
    background: #179CD8;
    color: #ffffff;
}

.portfolio-btn-wrap {
    margin-top: 40px;
    text-align: center;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 450px;
    height: 42px;
    background: #EE3D3D;
    color: #ffffff;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(238, 61, 61, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.portfolio-btn:hover {
    background: #d92f2f;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =============================================================
   13. BLOG INSIGHTS SECTION
============================================================= */
.blog-insights-section {
    width: 100%;
    padding: 80px 0 100px;
}

.blog-insights-small-title {
    width: 100%;
    text-align: center;
    font-size: 39px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #179CD8;
    margin-bottom: 40px;
}

.blog-insights-main-title {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 45px;
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: #154998;
}

.blog-insights-meta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-insights-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 300;
    color: #4d4d4d;
}

.blog-insights-content-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.blog-insights-text-content {
    width: 50%;
}

.blog-insights-text-content p {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.8;
    color: #2D2D2D;
    margin: 0;
    text-align: justify;
}

.blog-insights-image-box {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.blog-insights-image-box img {
    border-radius: 40px;
    object-fit: cover;
    height: 100%;
}

.blog-insights-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.blog-insights-btn {
    width: 300px;
    height: 56px;
    background: #E2393F;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.blog-insights-btn:hover {
    background: #154998;
    transform: translateY(-3px);
}


/* =============================================================
   14. WORKFLOW SECTION
============================================================= */
.isi-workflow-section {
    padding: 80px 0;
    overflow: hidden;
}

.isi-workflow-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0F4EA5;
    margin-bottom: 70px;
}

.isi-workflow-wrapper {
    position: relative;
}

.isi-workflow-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 320px;
    z-index: 1;
}

.isi-workflow-grid {
    position: relative;
    z-index: 2;
}

.isi-workflow-card {
    text-align: center;
}

.isi-workflow-card-down {
    margin-top: 160px;
}

.isi-workflow-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.isi-workflow-card h3 {
    font-size: 28px;
    color: #114AA5;
    font-weight: 700;
    margin-bottom: 15px;
}

.isi-workflow-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 260px;
    margin: 0 auto;
}


/* =============================================================
   15. WHY CHOOSE US SECTION
============================================================= */
.isi-why-container {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.isi-why-top-title {
    font-size: 20px;
    font-weight: 500;
    color: #1da1f2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.isi-why-main-title {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f4ca3;
}

.isi-why-description {
    margin: 0 auto 60px;
    font-size: 27px;
    line-height: 1.7;
    color: #2f2f2f;
}

.isi-why-subtitle {
    font-size: 48px;
    font-weight: 800;
    color: #0f4ca3;
    margin-bottom: 60px;
}

.isi-why-grid {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 45px;
    justify-content: center;
}

.isi-why-card {
    width: 100%;
    background: #fff;
    border: 1px solid #179CD845;
    border-radius: 40px;
    box-shadow: 0px -1px 7.1px 3px #179CD826;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.isi-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.isi-why-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 25px;
}

.isi-why-card h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}


/* =============================================================
   16. ISI PRICING SECTION
============================================================= */
.isi-pricing-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 20px;
}

.isi-pricing-top-title {
    text-align: center;
    color: #2fa8ff;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.isi-pricing-description {
    max-width: 950px;
    margin: 0 auto 60px;
    text-align: left;
    font-size: 26px;
    line-height: 1.5;
    color: #2f2f2f;
}

.isi-pricing-card-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.isi-price-card {
    width: 240px;
    min-height: 310px;
    background: #fff;
    border: 2px solid #d9eef8;
    border-radius: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.isi-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.isi-price-card-content {
    text-align: center;
}

.isi-price-card h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #1d2433;
    margin-bottom: 5px;
    padding: 20px;
}

.isi-price-start {
    display: block;
    font-size: 18px;
    color: #2f2f2f;
    margin-bottom: 35px;
}

.isi-price-card h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f4ca3;
    margin-bottom: 5px;
}

.isi-price-card p {
    font-size: 18px;
    color: #333;
    margin-bottom: 18px;
}

.isi-price-card a {
    display: inline-block;
    min-width: 120px;
    background: #a043a8;
    color: #fff;
    font-size: 15px;
    padding: 7px 20px;
    border-radius: 50px;
    transition: background 0.3s ease;
    margin-bottom: 20px;
    text-decoration: none;
}

.isi-price-card a:hover {
    background: #8c3195;
}

.isi-pricing-factors {
    max-width: 1100px;
    margin: 0 auto;
}

.isi-pricing-factors h2 {
    color: #0f4ca3;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 35px;
}

.isi-pricing-factors ul {
    padding-left: 30px;
    list-style: disc;
}

.isi-pricing-factors li {
    font-size: 27px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.isi-pricing-factors strong {
    font-weight: 800;
}

.isi-pricing-bottom-text {
    margin: 60px auto 40px;
    text-align: center;
    font-size: 27px;
    line-height: 1.5;
    color: #333;
}

.isi-pricing-btn-wrap {
    text-align: center;
}

.isi-pricing-contact-btn {
    display: inline-block;
    background: #E2393F;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 38px;
    border-radius: 50px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.isi-pricing-contact-btn:hover {
    background: #E2393F;
}


/* =============================================================
   17. CORE SERVICES SECTION
============================================================= */
.core-services-main-title {
    text-align: center;
    margin-bottom: 30px;
}

.core-services-main-title h2 {
    font-size: 64px;
    font-weight: 700;
    color: #114ba3;
    line-height: 1.2;
}

.core-services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.core-service-card {
    background: #ffffff;
    border: 1px solid #179CD845;
    border-radius: 40px;
    box-shadow: 0px -1px 7.1px 3px #179CD826;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.core-service-icon {
    margin-bottom: 30px;
}

.core-service-icon img {
    width: 500px;
    height: 100px;
    object-fit: contain;
}

.core-service-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 25px;
    word-wrap: break-word;
}

.core-service-card p {
    font-size: 22px;
    line-height: 1.9;
    color: #2d3748;
    margin-bottom: 50px;
    word-wrap: break-word;
    text-align: justify;
}

.core-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 14px 24px;
    border: 1.5px solid #6b7280;
    border-radius: 30px;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.core-service-btn:hover {
    background: #114ba3;
    border-color: #114ba3;
    color: #fff;
}


/* =============================================================
   18. SCALE CTA SECTION
============================================================= */
.scale-cta-section {
    padding: 100px 0;
}

.scale-cta-container {
    text-align: center;
    color: #114ba3;
    margin: 20px;
    
}

.scale-cta-container h1 {
    max-width: 1320px;
    margin: 0 auto 40px;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.3;
    color: #114ba3;
    word-wrap: break-word;
}
.scale-cta-container h2 {
    max-width: 1320px;
    margin: 0 auto 40px;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.3;
    color: #114ba3;
    word-wrap: break-word;
}


/* =============================================================
   19. CONTACT SECTION
============================================================= */
.isi-contact-bottom-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: flex-start;
    gap: 180px;
}

.isi-contact-heading h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0C4DA2;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.isi-contact-title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.isi-contact-title img {
    width: 35px;
    height: 35px;
    margin-top: 4px;
}

.isi-contact-title h3 {
    margin: 0;
    color: #179CD8;
    font-size: 28px;
    font-weight: 700;
}

.isi-contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 85px;
}

.isi-contact-info-box img {
    width: 22px;
    height: 22px;
    margin-top: 4px;
}

.isi-contact-info-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: #11A0F5;
    margin-bottom: 10px;
    line-height: 1.2;
}

.isi-contact-info-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #2D2D2D;
    margin: 0;
}

.isi-contact-form-box {
    background: #fff;
    border: 1px solid #D7EBFA;
    box-shadow: 0 0 2px rgba(23, 156, 216, 0.25);
    border-radius: 40px;
    padding: 40px;
}

.isi-contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0C4DA2;
    margin-bottom: 40px;
}

.isi-form-group {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 22px;
}

.isi-form-group label {
    font-size: 20px;
    font-weight: 500;
    color: #2F2F2F;
}

.isi-form-group input,
.isi-form-group select {
    width: 100%;
    height: 42px;
    border: 1px solid #7B8490;
    border-radius: 30px;
    padding: 0 18px;
    font-size: 16px;
    background: #fff;
    outline: none;
}

.isi-message-group {
    display: block;
    margin-top: 40px;
}

.isi-message-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
}

.isi-message-group textarea {
    width: 100%;
    height: 130px;
    border: 1px solid #7B8490;
    border-radius: 30px;
    padding: 18px;
    resize: none;
    font-size: 15px;
    outline: none;
}

.isi-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 35px;
}

.isi-checkbox-group input {
    margin-top: 4px;
}

.isi-checkbox-group label {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.isi-file-upload {
    margin-bottom: 30px;
}

.isi-file-upload label {
    display: block;
    font-size: 20px;
    color: #2F2F2F;
    margin-bottom: 10px;
}

.isi-file-upload span {
    display: block;
    font-size: 14px;
    color: #777;
}

.isi-file-upload input {
    width: 100%;
    height: 95px;
    border: 1px dashed #BFC7CF;
    border-radius: 25px;
    padding: 30px;
    cursor: pointer;
}

.isi-submit-btn {
    width: 100%;
    max-width: 460px;
    display: block;
    margin: 0 auto;
    height: 52px;
    border: none;
    border-radius: 40px;
    background: #EE3D43;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.isi-submit-btn:hover {
    background: #E2393F;
}

.isi-submit-btn--lg {
    max-width: 100%;
    height: 62px;
    border-radius: 999px;
    font-size: 24px;
    font-weight: 700;
}

.isi-contact-form-box small {
    display: block;
    margin-top: 15px;
    font-size: 11px;
    color: #999;
    line-height: 1.5;
}

.isi-contact-info-section {
    padding: 80px 0;
}

.isi-contact-info-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

.isi-contact-heading {
    font-weight: 700;
    color: #1248A0;
    margin-bottom: 60px;
}

.isi-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.isi-contact-card p {
    font-size: 20px;
    line-height: 1.6;
    color: #1e1e1e;
    margin-bottom: 25px;
}

.isi-footer-trust-section {
    background: #F7F7F7;
    padding: 70px 0;
}

.isi-footer-trust-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.isi-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.isi-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.isi-trust-item img  { width: 32px; height: 32px; }
.isi-trust-item span { font-size: 20px; color: #222; }

.isi-copyright {
    font-size: 18px;
    color: #222;
    margin: 0;
}


/* =============================================================
   20. PORTFOLIO / WORK GALLERY SECTION
============================================================= */
.our-work-section {
    padding: 80px 0;
    overflow: hidden;
}

.work-top-title {
    font-size: 24px;
    font-weight: 500;
    color: #179CD8;
    margin-bottom: 10px;
}

.work-main-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: #154998;
    margin-bottom: 25px;
}

.work-description {
    max-width: 900px;
    font-size: 22px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
}

.work-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 55px;
}

.work-filter-buttons a {
    min-width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9d9d9d;
    border-radius: 30px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
}

.work-filter-buttons a:hover {
    background-color: #154998;
    color: #fff;
}

.work-filter-buttons a.active {
    background: #E73E45;
    border-color: #E73E45;
    color: #fff;
}

.work-gallery {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 600px;
}

.gallery-img {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-1 { width: 180px; height: 320px; left: 140px;  top: 150px; z-index: 1; }
.banner-2 { width: 220px; height: 420px; left: 220px;  top: 90px;  z-index: 2; }
.banner-3 {
    width: 1100px; height: 520px;
    left: 50%; top: 20px;
    transform: translateX(-50%);
    z-index: 5;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.banner-4 { width: 220px; height: 420px; right: 220px; top: 90px;  z-index: 2; }
.banner-5 { width: 180px; height: 320px; right: 140px; top: 150px; z-index: 1; }

.gallery-controls {
    width: 120px;
    height: 32px;
    margin: 0 auto 40px;
    border: 1px solid #179CD8;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}

.gallery-controls button {
    border: none;
    background: none;
    cursor: pointer;
}

.gallery-controls img {
    width: 14px;
}

.gallery-title {
    color: #154998;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 22px;
    color: #333;
    margin-bottom: 35px;
}

.view-details-btn {
    width: 500px;
    max-width: 100%;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E2393F;
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
}


/* =============================================================
   21. BLOG / RESOURCE LIST
============================================================= */
.isi-resource-content p {
    font-size: 28px;
    line-height: 1.8;
    color: #222;
    max-width: 700px;
    margin-bottom: 60px;
}

.isi-resource-meta {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.isi-resource-meta span {
    font-size: 22px;
    color: #B4B4B4;
}

.isi-resource-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 56px;
    background: #E2393F;
    color: #fff;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
}

.isi-resource-image {
    text-align: center;
}

.isi-resource-image img {
    width: 100%;
    max-width: 620px;
    margin: auto;
}

.isi-resource-tags {
    text-align: right;
}

.isi-resource-tags a {
    color: #2F9DF4;
    font-size: 22px;
    margin-left: 20px;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 10px 0 150px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.page-number {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f7682;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: color 0.3s ease;
    text-decoration: none;
}

.page-number.active {
    border: 1px solid #8bb5e8;
    border-radius: 50%;
    color: #1f4e94;
}

.dots {
    color: #6f7682;
    font-size: 18px;
}

.next-page {
    margin-left: 45px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6f7682;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.arrow {
    color: #00AEEF;
    font-size: 22px;
    line-height: 1;
}


/* =============================================================
   22. CAREERS — WE ARE HIRING SECTION
============================================================= */
.banner-header-section-1 {
    padding: 50px 30px;
}

.banner-header-container-1 {
    position: relative;
    overflow: hidden;
    max-width: 1750px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 70px;
}

.banner-header-container-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#ffd6d6 1px, transparent 1px),
        linear-gradient(90deg, #ffd6d6 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: 0;
}

.smart-technology-top-title-1 {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    color: #179CD8;
    text-align: center;
}

.smart-technology-top-title-1 h5 {
    margin: 0;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #179CD8;
}

.banner-header-wrapper-1 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.banner-header-wrapper-1 .banner-header-content {
    flex: 0 0 50%;
    width: auto;
}

.hiring-title {
    margin: 0 0 30px;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    color: #1D4AA8;
}

.hiring-content {
    margin: 0;
    max-width: 650px;
    font-size: 22px;
    line-height: 1.8;
    color: #111111;
}

.banner-header-image-1 {
    flex: 0 0 42%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-header-image-1 img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.job-card {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border: 2px solid #d8efff;
    border-radius: 30px;
    padding: 28px 32px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.job-title {
    color: #0f4ea8;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.job-meta {
    color: #4d4d4d;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.job-description {
    color: #333;
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: justify;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    height: 40px;
    background: #E2393F;
    color: #fff;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    transition: background 0.3s ease;
    text-decoration: none;
}

.apply-btn:hover {
    background: #E2393F;
    color: #fff;
}


/* =============================================================
   23. FREE TRIAL — FEATURES, FORM & TRUST
============================================================= */
.isi-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.isi-feature-item {
    text-align: center;
}

.isi-feature-item h3 {
    font-size: 60px;
    line-height: 1.25;
    font-weight: 700;
    color: #114AA5;
    margin-bottom: 55px;
}

.isi-feature-item p {
    font-size: 32px;
    line-height: 1.55;
    font-weight: 400;
    color: #1F1F1F;
    margin: 0;
}

.isi-contact-parameters-box {
    max-width: 900px;
    margin: auto;
    border: 1px solid #BFE4FF;
    border-radius: 40px;
    padding: 45px;
}

.isi-contact-form-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 28px;
}

.isi-contact-form-row label {
    font-size: 22px;
    color: #222;
}

.isi-contact-form-row input,
.isi-contact-form-row select {
    height: 56px;
    border: 1px solid #50535A;
    border-radius: 999px;
    padding: 0 20px;
    font-size: 18px;
    background: #fff;
    width: 100%;
}

.isi-message-wrapper {
    margin-top: 50px;
}

.isi-message-wrapper label {
    display: block;
    font-size: 22px;
    margin-bottom: 15px;
}

.isi-message-wrapper textarea {
    width: 100%;
    height: 180px;
    border: 1px solid #50535A;
    border-radius: 40px;
    padding: 25px;
    font-size: 18px;
    resize: none;
}

.isi-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.isi-upload-wrapper {
    margin-top: 50px;
}

.isi-upload-wrapper h4 {
    font-size: 26px;
    margin-bottom: 5px;
}

.isi-upload-box {
    height: 120px;
    border: 1px dashed #6D727A;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 20px;
}

.isi-upload-box span {
    color: #1DA1F2;
}

.isi-or-divider {
    text-align: center;
    font-size: 26px;
    margin: 35px 0;
}

.isi-link-section h4 { font-size: 24px; }
.isi-link-section p  { font-size: 16px; margin-bottom: 15px; }

.isi-link-section input {
    width: 100%;
    height: 56px;
    border: 1px dashed #6D727A;
    border-radius: 999px;
    text-align: center;
}

.isi-recaptcha-text {
    text-align: center;
    font-size: 12px;
    color: #8C8C8C;
    margin-top: 25px;
}


/* =============================================================
   24. INDUSTRIES — COMMERCIAL & RETAIL
============================================================= */
.cr-container {
    max-width: 1200px;
    margin: auto;
}

.cr-title {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    color: #0B4AA4;
    margin-bottom: 35px;
    line-height: 1.2;
}

.cr-description {
    max-width: 950px;
    margin: 0 auto 90px;
    text-align: center;
    font-size: 24px;
    line-height: 1.7;
    color: #111827;
    font-weight: 400;
}

.cr-card {
    padding: 20px 30px 15px;
    border: 1px solid rgba(23, 156, 216, 0.18);
    border-radius: 38px;
    box-shadow: 0 0 2px rgba(23, 156, 216, 0.18), 0 3px 10px rgba(23, 156, 216, 0.08);
    margin: 0 20px;
}

.cr-card-title {
    text-align: center;
    color: #0B4AA4;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

.cr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.cr-item h4 {
    color: #1F95D8;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cr-item p {
    font-size: 22px;
    line-height: 1.55;
    color: #232323;
    font-weight: 400;
    max-width: 290px;
    margin: auto;
    text-align: justify;
}

.cr-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 40px;
    margin: 60px auto 0;
    background: #E2393F;
    color: #fff;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cr-btn:hover {
    transform: translateY(-3px);
}


/* =============================================================
   25. ENTERPRISE / TESTIMONIAL HERO
============================================================= */
.ecs-label {
    display: block;
    text-align: center;
    color: #00C8FF;
    font-size: 24px;
    font-weight: 600;
    padding-top: 30px;
    margin-bottom: 20px;
}

.ecs-hero {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}

.ecs-left h1 {
    color: #0C4BA8;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 60px;
}

.ecs-avatar { max-width: 280px; }
.ecs-avatar img { width: 100%; }

.ecs-quote {
    font-size: 28px;
    line-height: 1.8;
    color: #071325;
    font-weight: 500;
    margin-bottom: 40px;
}

.ecs-author h4 {
    color: #0C4BA8;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ecs-author span {
    color: #00BFFF;
    font-size: 20px;
}

.ecs-stats {
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.ecs-stat h3 {
    color: #0C4BA8;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ecs-stat p {
    color: #242424;
    font-size: 28px;
    line-height: 1.5;
    max-width: 280px;
    margin: auto;
}

.ecs-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 100px;
    align-items: center;
}

.ecs-left img { width: 320px; }

.ecs-right p {
    line-height: 1.75;
    color: #111827;
    font-weight: 500;
    max-width: 900px;
    text-align: justify;
}

.quote {
    position: absolute;
    color: #d6d6d6;
    font-size: 110px;
    line-height: 1;
    font-weight: 700;
}

.quote-open  { left: -70px; top: -40px; }
.quote-close { right: 20px; bottom: 90px; }

.author-info {
    margin-top: 45px;
}

.author-info h4 {
    font-size: 38px;
    color: #1650AD;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    color: #12A8F6;
    font-size: 24px;
    font-weight: 400;
}

.ecs-section {
    padding: 50px 20px;
    text-align: center;
}

.ecs-section-label {
    color: #00C8FF;
    font-size: 26px;
    font-weight: 600;
    display: block;
    margin-bottom: 30px;
}

.ecs-section p {
    max-width: 1300px;
    margin: auto;
    font-size: 24px;
    line-height: 1.9;
    font-weight: 400;
    text-align: justify;
}


/* =============================================================
   26. BLOG READING
============================================================= */
.blog-def {
    color: #111827;
    padding: 50px;
    text-align: justify;
    font-size: 30px;
}

.blog-meta {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 40px;
}

.blog-meta li {
    color: #ACACAC;
    font-size: 20px;
    line-height: 1.5;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tags a {
    color: #16A5F4;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.intro-text {
    color: #222;
    font-size: 40px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 90px;
}

.content-title {
    text-align: center;
    color: #154998;
    font-size: 78px;
    font-weight: 700;
    margin-bottom: 60px;
}

.content-text {
    color: #222;
    line-height: 1.8;
}


/* =============================================================
   27. IMAGE POST PROCESSING (PPS)
============================================================= */
.pps-description {
    max-width: 1320px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 24px;
    line-height: 1.8;
    color: #232323;
}

.pps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 0 30px;
}

.pps-card {
    background: #fff;
    border: 2px solid #BDEBFF;
    border-radius: 45px;
    padding: 45px 30px 28px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pps-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(13, 77, 166, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pps-icon-box {
    margin-bottom: 30px;
}

.pps-icon-box img {
    width: 500px;
    height: 100px;
    object-fit: contain;
}

.pps-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: #1D2433;
    min-height: 90px;
    margin-bottom: 30px;
}

.pps-text {
   font-size: 22px;
    line-height: 1.9;
    color: #2d3748;
    text-align: left;
    margin-bottom: 50px;
    word-wrap: break-word;
    text-align: justify;
}

.pps-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    border: 1px solid #1D2433;
    border-radius: 50px;
    color: #1D2433;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.pps-btn:hover {
    background: #0D4DA6;
    border-color: #0D4DA6;
    color: #fff;
}


/* =============================================================
   28. JOB OPENING / RESUME SUBMIT
============================================================= */
.job-opening-hero {
    padding: 80px 20px 100px;
    text-align: center;
    background: #ffffff;
}

.job-category {
    color: #18A0F4;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.job-opening-title {
    color: #154998;
    font-size: 78px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.job-opening-meta {
    margin-top: 45px;
    color: #2d2d2d;
    font-size: 24px;
    font-weight: 400;
}

.candidate-section {
    padding: 0 20px;
    background: #fff;
}

.candidate-container {
    max-width: 1400px;
    margin: auto;
}

.candidate-title {
    color: #154998;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 28px;
}

.form-row label {
    color: #081733;
    font-size: 24px;
    font-weight: 500;
}

.form-row span {
    color: #ff4040;
}

.form-control-custom {
    width: 100%;
    height: 44px;
    border: 1.5px solid #A9AFB8;
    border-radius: 50px;
    padding: 0 25px;
    font-size: 18px;
    outline: none;
}

.address-box {
    height: 130px;
    resize: none;
    border-radius: 40px;
    padding: 20px 25px;
}

.city-pincode-wrapper {
    display: flex;
    gap: 30px;
}

.city-pincode-wrapper > input {
    flex: 1;
}

.pincode-field {
    flex: 1;
}

.pincode-field label {
    display: block;
    margin-bottom: 10px;
}

.full-section {
    margin-top: 55px;
}

.full-section h3 {
    color: #081733;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.full-section p {
    color: #4f5968;
    font-size: 16px;
    margin-bottom: 20px;
}

.upload-box {
    position: relative;
    width: 100%;
    height: 110px;
    border: 2px dashed #c5c9d0;
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fafafa;
}

.upload-box span {
    color: #1ea0f2;
    margin-left: 5px;
}

.upload-box input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.experience-box {
    width: 100%;
    height: 220px;
    border: 1.5px solid #A9AFB8;
    border-radius: 40px;
    resize: none;
    padding: 25px;
}

.submit-wrapper {
    text-align: center;
    margin-top: 70px;
}

.submit-btn {
    width: 710px;
    max-width: 100%;
    height: 50px;
    border: none;
    border-radius: 50px;
    background: #E2393F;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #E2393F;
}


/* =============================================================
   29. TESTIMONIAL SECTION (INDEX)
============================================================= */
.testimonial-section {
    padding: 80px 20px;
    background: #fff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #00A8F0;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.testimonial-card {
    border: 3px solid #D8F0FF;
    border-radius: 40px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-image {
    flex: 0 0 220px;
    text-align: center;
}

.testimonial-image img {
    width: 100%;
    max-width: 180px;
    margin: auto;
}

.testimonial-content {
    flex: 1;
    position: relative;
}

.testimonial-stars {
    text-align: right;
    color: #F7C400;
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.quote-icon {
    position: absolute;
    color: #c8c8c8;
    font-size: 70px;
    line-height: 1;
}

.quote-left  { top: 30px;   left: -40px; }
.quote-right { bottom: 90px; left: 210px; }

.testimonial-text {
    font-size: 27px;
    line-height: 1.5;
    color: #1f2937;
    margin: 0;
    max-width: 700px;
}

.testimonial-footer {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.testimonial-info h4 {
    font-size: 28px;
    font-weight: 700;
    color: #154998;
    margin-bottom: 8px;
}

.testimonial-info p {
    margin: 0;
    font-size: 22px;
    color: #333;
}

.testimonial-info span {
    color: #00A8F0;
}

.testimonial-actions {
    display: flex;
    align-items: center;
    gap: 35px;
}

.read-story {
    color: #222;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-story span {
    color: #00A8F0;
    font-size: 22px;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #cde9f7;
    background: #fff;
    color: #154998;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease, color 0.3s ease;
}

.slider-controls button:hover {
    background: #00A8F0;
    color: #fff;
}


/* =============================================================
   30. FREE SAMPLE CTA SECTION
============================================================= */
.free-sample-cta-section {
    width: 100%;
    padding: 30px 20px;
}

.free-sample-cta-card {
    position: relative;
    width: 100%;
    max-width: 1011px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #D9F1FF;
    border-radius: 40px;
    padding: 70px 80px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.free-sample-cta-content {
    text-align: center;
}

.free-sample-cta-text p {
    max-width: 760px;
    margin: 0 auto 40px;
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #1E293B;
}

.free-sample-cta-btn-wrap {
    display: flex;
    justify-content: center;
}

.free-sample-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: #E2393F;
    color: #ffffff;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.free-sample-cta-btn:hover {
    transform: translateY(-2px);
    background: #E2393F;
}

.free-sample-cta-btn span {
    font-size: 18px;
    line-height: 1;
}


/* =============================================================
   31. RESPONSIVE BREAKPOINTS
============================================================= */

/* ─── 31a. ≥ 1440px ─── */
@media (min-width: 1440px) {
    .banner-header-container        { padding: 90px; }
    .banner-header-content h1       { font-size: 70px; }
    .banner-header-content p        { font-size: 27px; }
    .about-mission-column h1        { font-size: 72px; }
    .about-mission-column p         { font-size: 28px; }
    .about-company-section          { padding: 90px; }
    .about-company-grid             { gap: 60px; margin-top: 90px; }
    .about-company-card             { min-height: 320px; }
    .global-brand-grid              { grid-template-columns: repeat(4, 1fr); }
    .smart-technology-main-title    { font-size: 48px; }
    .smart-technology-top-title h5  { font-size: 39px; }
    .service-pricing-card-wrapper   { grid-template-columns: repeat(4, 257px); }
    .service-pricing-card           { width: 257px; height: 336px; }
    .trusted-global-logos           { flex-wrap: nowrap; }
    .customer-testimonial-card      { width: 1011px; }
    .customer-testimonial-text      { font-size: 25px; }
    .blog-insights-main-title       { font-size: 50px; }
    .blog-insights-text-content p   { font-size: 27px; }
    .isi-contact-bottom-wrapper     { max-width: 1300px; gap: 180px; }
    .banner-3                       { width: 1100px; height: 520px; }
    .isi-resource-content p         { font-size: 28px; }
    .banner-header-container-1      { padding: 80px 100px; }
    .hiring-title                   { font-size: 72px; }
    .hiring-content                 { font-size: 22px; }
    .banner-header-image-1 img      { max-width: 650px; }
    .job-card                       { max-width: 850px; }
    .job-title                      { font-size: 38px; }
    .job-description                { font-size: 32px; }
    .isi-features-container         { gap: 80px; }
    .isi-feature-item h3            { font-size: 60px; }
    .isi-feature-item p             { font-size: 27px; }
    .who-we-are-text-bottom p       { font-size: 27px; line-height: 1.8; }
    .core-services-wrapper          { grid-template-columns: repeat(3, 1fr);  }
    .content-text                   { font-size: 27px; }
    .blog-def p                     { font-size: 27px; }
    .gallery-title{font-size: 72px;}
}

/* ─── 31b. 1200px – 1439px ─── */
@media (min-width: 1200px) and (max-width: 1439px) {
    .banner-header-container        { padding: 70px; }
    .banner-header-content h1       { font-size: 58px; }
    .banner-header-content p        { font-size: 24px; }
    .who-we-are-text-bottom p       { font-size: 22px; }
    .about-mission-container        { column-gap: 100px; margin: 30px; }
    .about-mission-column h1        { font-size: 60px; margin-bottom: 45px; }
    .about-mission-column p         { font-size: 24px; }
    .about-company-section          { padding: 70px; }
    .about-company-grid             { gap: 50px; margin-top: 70px; }
    .about-company-left h2          { font-size: 52px; }
    .about-company-left p           { font-size: 24px; }
    .about-company-card             { min-height: 280px; padding: 35px 20px; }
    .global-brand-section           { padding: 70px 20px; }
    .global-brand-grid              { gap: 22px; }
    .global-brand-card              { min-height: 250px; padding: 28px 16px; }
    .global-brand-card h3           { font-size: 20px; }
    .smart-technology-section       { padding: 70px 20px 100px; }
    .smart-technology-main-title    { font-size: 42px; line-height: 1.3; }
    .smart-technology-description   { font-size: 22px; }
    .service-pricing-section        { padding: 0 70px; }
    .service-pricing-card-wrapper   { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .service-pricing-card           { width: 100%; height: auto; min-height: 300px; }
    .service-pricing-description    { font-size: 22px; }
    .service-pricing-bottom-text    { font-size: 22px; }
    .trusted-global-section         { padding: 70px 20px; }
    .trusted-global-logos           { gap: 30px; }
    .customer-testimonial-card      { width: 90%; max-width: 950px; }
    .customer-testimonial-text      { font-size: 22px; }
    .blog-insights-main-title       { font-size: 44px; }
    .blog-insights-text-content p   { font-size: 24px; }
    .isi-contact-bottom-wrapper     { max-width: 1140px; gap: 120px; }
    .isi-contact-form-box           { padding: 35px; }
    .core-services-main-title h2    { font-size: 56px; }
    .core-service-card h3           { font-size: 32px; }
    .core-service-card p            { font-size: 22px; }
    .core-services-wrapper          { grid-template-columns: repeat(3, 1fr);  gap: 5px; margin: 20px; }
    .scale-cta-container h1         { font-size: 60px; }
    .scale-cta-container h2        { font-size: 60px; }
    .isi-pricing-description        { font-size: 22px; }
    .isi-price-card                 { width: 220px; }
    .isi-price-card h2              { font-size: 48px; }
    .isi-pricing-factors li         { font-size: 24px; }
    .isi-pricing-bottom-text        { font-size: 24px; }
    .isi-why-main-title             { font-size: 50px; }
    .isi-why-subtitle               { font-size: 40px; }
    .isi-why-grid                   { gap: 30px; }
    .banner-3                       { width: 900px; height: 450px; }
    .banner-2, .banner-4            { width: 180px; height: 340px; }
    .banner-1, .banner-5            { width: 140px; height: 260px; }
    .work-gallery                   { height: 520px; }
    .isi-resource-content p         { font-size: 24px; }
    .isi-resource-btn               { min-width: 220px; font-size: 22px; }
    .banner-header-container-1      { padding: 60px 70px; }
    .hiring-title                   { font-size: 64px; }
    .hiring-content                 { font-size: 20px; }
    .banner-header-image-1 img      { max-width: 550px; }
    .job-card                       { max-width: 800px; }
    .job-title                      { font-size: 34px; }
    .job-description                { font-size: 28px; }
    .portfolio-btn                  { min-width: 450px; }
    .isi-features-container         { gap: 60px; }
    .isi-feature-item h3            { font-size: 52px; margin-bottom: 40px; }
    .isi-feature-item p             { font-size: 28px; }
    .isi-contact-grid               { gap: 40px; }
    .content-text                   { font-size: 27px; }
    .blog-def p                     { font-size: 27px; }
    .isi-why-description            { font-size: 24px; }
    .blog-insights-content-wrapper {margin: 30px;}
    .pps-description{margin: 50px;}
    .pps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 20px;
}
    .work-gallery                   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; height: auto; }
    .gallery-img                    { position: relative !important; width: 100% !important; height: 240px !important; top: auto !important; left: auto !important; right: auto !important; transform: none !important; }
    .banner-3                       { grid-column: span 3; height: 380px !important; width: 100% !important; border-radius: 28px; }
    .work-main-title                { font-size: 52px; }
    .gallery-title{font-size: 60px;}
        .gallery-controls{margin-top: 50px;}
    
}
/* ─── 31c. 992px – 1199px ─── */
@media (min-width: 992px) and (max-width: 1199px) {
    h1 { font-size: 52px; }
    h2 { font-size: 42px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
    h6 { font-size: 16px; }
    p  { font-size: 25px; line-height: 1.7; }
    li { font-size: 18px; }
.smart-technology-top-title h5 {font-size: 35px;}
    .banner-header-section          { overflow: hidden; }
    .banner-header-container        { padding: 60px 30px; }
    .banner-header-wrapper          { flex-direction: row; align-items: center; flex-wrap: nowrap; gap: 40px; }
    .banner-header-content          { width: 52%; flex-shrink: 0; }
    .banner-header-image            { flex: 1; width: 48%; max-width: 520px; overflow: hidden; }
    .banner-header-image img        { width: 100%; height: auto; border-radius: 35px; }
    .banner-header-content h1       { font-size: 44px; line-height: 1.15; }
    .banner-header-content p        { font-size: 22px; line-height: 1.75; text-align: justify; }
    .who-we-are-text-bottom p       { font-size: 20px; }
    .banner-header-buttons          { flex-wrap: wrap; gap: 14px;  }
    .banner-header-primary-btn,
    .banner-header-secondary-btn    { font-size: 15px; padding: 13px 22px; white-space: nowrap; }

    .about-company-section          { padding: 60px 40px; }
    .about-company-grid             { flex-wrap: wrap; gap: 40px; margin-top: 50px; }
    .about-company-left,
    .about-company-right            { flex: 1 1 100%; max-width: 100%; }
    .about-company-left h2          { font-size: 42px; }
    .about-company-left p           { font-size: 22px; }
    .about-company-card-grid        { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .about-company-card             { min-height: 260px; border-radius: 30px; padding: 30px 18px; }
    .about-company-card h3          { font-size: 22px; }
    .about-company-card p           { font-size: 16px; }

    .about-mission-container        { column-gap: 60px; }
    .about-mission-column h1        { font-size: 48px; margin-bottom: 35px; }
    .about-mission-column p         { font-size: 22px; line-height: 1.8; margin: 0 20px; }

    .global-brand-section           { padding: 60px 20px; }
    .global-brand-grid              { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .global-brand-title             { font-size: 34px; margin-bottom: 38px; }
    .global-brand-card              { min-height: 230px; padding: 26px 16px; }
    .global-brand-card h3           { font-size: 18px; }

    .smart-technology-section       { padding: 60px 20px 80px; }
    .smart-technology-main-title    { font-size: 36px; max-width: 700px; }
    .smart-technology-description   { font-size: 18px; }
    .smart-technology-subtitle      { font-size: 30px; margin: 50px 0; }
    .smart-technology-grid          { grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
    .smart-technology-card          { min-height: 250px; padding: 28px 16px; border-radius: 28px; }
    .smart-technology-card h3       { font-size: 16px; }
    .smart-technology-card:nth-child(5),
    .smart-technology-card:nth-child(6) { grid-column: auto; }

    .service-pricing-section        { padding: 0 40px; }
    .service-pricing-top-title      { font-size: 28px; }
    .service-pricing-description    { font-size: 18px; margin-bottom: 45px; }
    .service-pricing-card-wrapper   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .service-pricing-card           { width: 100%; height: auto; min-height: 270px; border-radius: 28px; }
    .service-pricing-card-content h3 { font-size: 22px; }
    .service-pricing-card-content h2 { font-size: 28px; }
    .service-pricing-card-content p  { font-size: 16px; }
    .service-pricing-start          { font-size: 20px; margin-bottom: 20px; }
    .service-pricing-factors h2     { font-size: 30px; }
    .service-pricing-bottom-text    { font-size: 18px; }

    .trusted-global-section         { padding: 60px 20px; }
    .trusted-global-logos           { justify-content: center; gap: 30px; }
    .trusted-global-item-one        { width: 110px; height: 84px; }
    .trusted-global-item-two        { width: 180px; height: 44px; }
    .trusted-global-item-three      { width: 170px; height: 66px; }
    .trusted-global-item-four       { width: 140px; height: 72px; }
    .trusted-global-item-five       { width: 130px; height: 130px; }

    .customer-testimonial-section   { padding: 60px 50px 80px; }
    .customer-testimonial-card      { width: 95%; padding: 36px; }
    .customer-testimonial-text      { font-size: 20px; }

    .blog-insights-section          { padding: 60px 20px 80px; }
    .blog-insights-small-title      { font-size: 28px; }
    .blog-insights-main-title       { font-size: 36px; }
    .blog-insights-content-wrapper  { gap: 36px; }
    .blog-insights-text-content p   { font-size: 22px; }

    .isi-contact-bottom-wrapper     { grid-template-columns: 280px 1fr; gap: 60px; max-width: 960px; }
    .isi-contact-heading h3         { font-size: 24px; }
    .isi-contact-info-text h4       { font-size: 20px; }
    .isi-contact-info-text p        { font-size: 16px; }
    .isi-contact-form-box           { padding: 30px; }
    .isi-form-group                 { grid-template-columns: 140px 1fr; }

    .core-services-main-title h2    { font-size: 48px; }
    .core-services-wrapper          { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .core-service-card              { padding: 30px 18px; }
    .core-service-icon img          { width: 140px; height: 140px; }
    .core-service-card h3           { font-size: 30px; }
    .core-service-card p            { font-size: 22px; }
    .core-service-btn               { min-width: auto; width: 100%; font-size: 15px; }

    .scale-cta-section              { padding: 80px 0; }
    .scale-cta-container h1         { font-size: 48px; margin: 0 20px; }
    .scale-cta-container h2         { font-size: 48px; margin: 0 20px; }

    .isi-pricing-section            { padding: 80px 20px; }
    .isi-pricing-description        { font-size: 20px; margin-bottom: 50px; }
    .isi-price-card                 { width: 260px; }
    .isi-pricing-factors h2         { font-size: 30px; }
    .isi-pricing-factors li         { font-size: 22px; }
    .isi-pricing-bottom-text        { font-size: 22px; }

    .isi-why-main-title             { font-size: 42px; }
    .isi-why-description            { font-size: 22px; }
    .isi-why-subtitle               { font-size: 34px; }
    .isi-why-grid                   { grid-template-columns: repeat(2, 1fr); max-width: 640px; gap: 28px; }
    .isi-why-card:nth-child(5),
    .isi-why-card:nth-child(6)      { grid-column: auto; }

    .isi-workflow-line              { display: none; }
    .isi-workflow-card-down         { margin-top: 0px; }
    .isi-workflow-grid              { row-gap: 40px; }

    .work-gallery                   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; height: auto; }
    .gallery-img                    { position: relative !important; width: 100% !important; height: 240px !important; top: auto !important; left: auto !important; right: auto !important; transform: none !important; }
    .banner-3                       { grid-column: span 3; height: 380px !important; width: 100% !important; border-radius: 28px; }
    .work-main-title                { font-size: 52px; }

    .banner-header-container-1      { padding: 50px; }
    .banner-header-wrapper-1        { flex-direction: row; flex-wrap: wrap; gap: 40px; }
    .banner-header-wrapper-1 .banner-header-content { flex: 1 1 50%; width: auto; }
    .banner-header-image-1          { flex: 1 1 40%; }
    .banner-header-image-1 img      { max-width: 450px; width: 100%; }
    .hiring-title                   { font-size: 52px; }
    .hiring-content                 { font-size: 18px; line-height: 1.7; max-width: 100%; }

    .job-card                       { max-width: 700px; padding: 25px; border-radius: 22px; }
    .job-title                      { font-size: 30px; }
    .job-meta                       { font-size: 14px; }
    .job-description                { font-size: 24px; }
    .apply-btn                      { min-width: 250px; font-size: 18px; }

    .portfolio-btn                  { min-width: 440px; font-size: 18px; }
    .portfolio-btn-wrap             { margin-top: 35px; }

    .isi-features-container         { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .isi-feature-item h3            { font-size: 44px; margin-bottom: 28px; }
    .isi-feature-item p             { font-size: 24px; }

    .isi-contact-parameters-box     { padding: 35px; }
    .isi-contact-form-row           { grid-template-columns: 220px 1fr; }
    .isi-contact-grid               { gap: 30px; }
    .isi-trust-badges               { gap: 40px; }

    .pps-grid                       { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pps-title                      { font-size: 30px; min-height: auto; }
    .pps-text                       { font-size: 22px; min-height: auto; }
    .pps-icon-box img {        width: 140px;
        height: 140px;}

    .cr-grid                        { gap: 40px; }
    .cr-title                       { font-size: 46px; }
    .cr-description                 { font-size: 22px; }
    .cr-card                        { padding: 40px 25px; }
    .cr-card-title                  { font-size: 34px; }

    .ecs-hero                       { grid-template-columns: 1fr; gap: 60px; }
    .ecs-content                    { grid-template-columns: 1fr; gap: 60px; }
    .ecs-left                       { text-align: center; }
    .ecs-left img                   { margin: auto; }
    .quote                          { display: none; }
    .ecs-stats                      { grid-template-columns: repeat(3, 1fr); }

    .isi-resource-content p         { font-size: 22px; line-height: 1.7; }
    .isi-resource-btn               { min-width: 200px; height: 52px; font-size: 20px; }

    .free-sample-cta-card           { padding: 50px 40px; }

    .testimonial-card               { padding: 40px; gap: 30px; }
    .testimonial-text               { font-size: 22px; text-align: justify; }
    .quote-right                    { left: 160px; }

    .content-text                   { font-size: 25px; }
    .blog-def p                     { font-size: 25px; }
        .gallery-controls{margin-top: 50px;}
}

/* ─── 31d. 768px – 991px ─── */
@media (min-width: 768px) and (max-width: 991px) {
    h1 { font-size: 38px; }
    h2 { font-size: 32px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 28px; }
    h6 { font-size: 15px; }
    p  { font-size: 22px; line-height: 1.75; }
    li { font-size: 15px; }

    .banner-header-section          { overflow: hidden; }
    .banner-header-container        { padding: 50px 24px; }
    .banner-header-wrapper          { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 30px; }
    .banner-header-content          { align-items: center; gap: 20px;flex-wrap: wrap;width: 370px;} 
    .banner-header-image            { flex: 1 1 44%; max-width: 420px; overflow: hidden; }
    .banner-header-image img        { width: 100%; height: auto; border-radius: 28px; }
    .banner-header-content h1       { font-size: 40px; line-height: 1.3; margin-bottom: 20px; }
    .banner-header-content p        { font-size: 22px; line-height: 1.8; text-align: justify; }
    .banner-header-buttons          { flex-wrap: wrap; gap: 12px; }
    .banner-header-primary-btn,
    .banner-header-secondary-btn    { font-size: 14px; padding: 12px 20px; white-space: nowrap; }

    .about-company-section          { padding: 50px 24px; }
    .about-company-grid             { flex-direction: column; gap: 30px; margin-top: 36px; }
    .about-company-left,
    .about-company-right            { max-width: 100%; flex: 1 1 100%; }
    .about-company-left h2          { font-size: 30px; }
    .about-company-left p           { font-size: 22px; }
    .about-company-card-grid        { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .about-company-card             { min-height: 210px; border-radius: 24px; padding: 24px 16px; }
    .about-company-card img         { width: 65px; height: 65px; }
    .about-company-card h3          { font-size: 28px; }
    .about-company-card p           { font-size: 22px; }
.smart-technology-top-title h5 {font-size: 40px;} 
    .about-mission-container        { grid-template-columns: 1fr; gap: 50px; }
    .about-mission-column h1        { font-size: 40px; margin-bottom: 22px; text-align: center; }
    .about-mission-column p         { font-size: 22px; line-height: 1.8; text-align: justify; margin: 0 100px; }
    .who-we-are-text-bottom p       { font-size: 22px; }

    .global-brand-section           { padding: 50px 20px; }
    .global-brand-grid              { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .global-brand-title             { font-size: 30px; margin-bottom: 35px; }
    .global-brand-card              { min-height: 200px; border-radius: 26px; padding: 22px 14px; }
    .global-brand-card img          { width: 70px; height: 70px; }
    .global-brand-card h3           { font-size: 16px; line-height: 24px; }

    .smart-technology-section       { padding: 50px 20px 70px; }
    .smart-technology-main-title    { font-size: 30px; line-height: 1.3; }
    .smart-technology-description   { font-size: 16px; }
    .smart-technology-subtitle      { font-size: 26px; margin: 35px 0; }
    .smart-technology-grid          { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
    .smart-technology-card          { min-height: 210px; padding: 22px 14px; border-radius: 24px; }
    .smart-technology-card img      { width: 64px; height: 64px; margin-bottom: 14px; }
    .smart-technology-card h3       { font-size: 16px; }
    .smart-technology-card:nth-child(5),
    .smart-technology-card:nth-child(6) { grid-column: auto; }

    .service-pricing-section        { padding: 0 24px; }
    .service-pricing-top-title      { font-size: 22px; margin-bottom: 26px; }
    .service-pricing-description    { font-size: 15px; margin-bottom: 36px; }
    .service-pricing-card-wrapper   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-pricing-card           { width: 100%; height: auto; min-height: 250px; border-radius: 24px; }
    .service-pricing-card-content h3 { font-size: 20px; }
    .service-pricing-card-content h2 { font-size: 26px; }
    .service-pricing-card-content p  { font-size: 14px; }
    .service-pricing-start          { font-size: 18px; margin-bottom: 18px; }
    .service-pricing-factors h2     { font-size: 26px; margin-bottom: 22px; }
    .service-pricing-bottom-text    { font-size: 15px; }

    .trusted-global-section         { padding: 50px 20px; }
    .trusted-global-logos           { justify-content: center; gap: 25px; }
    .trusted-global-item-one        { width: 90px;  height: 68px; }
    .trusted-global-item-two        { width: 150px; height: 37px; }
    .trusted-global-item-three      { width: 140px; height: 54px; }
    .trusted-global-item-four       { width: 110px; height: 57px; }
    .trusted-global-item-five       { width: 100px; height: 100px; }

    .customer-testimonial-section   { padding: 50px 20px 70px; }
    .customer-testimonial-card      { width: 96%; padding: 32px 24px; }
    .customer-testimonial-text      { font-size: 17px; margin-top: 14px; }

    .blog-insights-section          { padding: 50px 20px 70px; }
    .blog-insights-small-title      { font-size: 22px; }
    .blog-insights-main-title       { font-size: 28px; margin-bottom: 20px; }
    .blog-insights-content-wrapper  { flex-direction: column; gap: 26px; }
    .blog-insights-text-content,
    .blog-insights-image-box        { width: 100%; }
    .blog-insights-image-box        { justify-content: center; }
    .blog-insights-text-content p   { font-size: 22px; margin: 20px 30px; }

    .isi-contact-bottom-wrapper     { grid-template-columns: 1fr; gap: 44px; margin-top: 44px; }
    .isi-contact-info-box           { margin-bottom: 45px; }
    .isi-contact-form-box           { padding: 30px; }
    .isi-form-group                 { grid-template-columns: 130px 1fr; gap: 14px; }
    .isi-form-group label           { font-size: 17px; }

    .core-services-main-title h2    { font-size: 38px; }
    .core-service-card p            { font-size: 22px; line-height: 1.55; margin-bottom: 28px; }
    .core-services-wrapper          { grid-template-columns: repeat(2, 1fr);  }
    .pps-icon-box img {width: 100%;
        height: 90px;}
        

    .scale-cta-section              { padding: 80px 0; }
    .scale-cta-container h1         { font-size: 38px; }
      .scale-cta-container h2        { font-size: 38px; }


    .isi-pricing-section            { padding: 80px 20px; }
    .isi-pricing-description        { text-align: center; font-size: 18px; }
    .isi-price-card                 { width: 240px; }
    .isi-pricing-factors h2         { font-size: 28px; }
    .isi-pricing-factors li         { font-size: 22px; text-align: justify; }
    .isi-pricing-bottom-text        { font-size: 22px; }

    .isi-why-main-title             { font-size: 36px; }
    .isi-why-description            { font-size: 22px; }
    .isi-why-subtitle               { font-size: 28px; }
    .isi-why-grid                   { grid-template-columns: repeat(2, 1fr); max-width: 580px; gap: 22px; }
    .isi-why-card:nth-child(5),
    .isi-why-card:nth-child(6)      { grid-column: auto; }

    .isi-workflow-line              { display: none; }
    .isi-workflow-card-down         { margin-top: 0; }
    .isi-workflow-card              { max-width: 350px; margin: auto; }

    .work-gallery                   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; height: auto; }
    .gallery-img                    { position: relative !important; width: 100% !important; height: 260px !important; top: auto !important; left: auto !important; right: auto !important; transform: none !important; }
    .banner-3                       { grid-column: span 2; height: 380px !important; width: 100% !important; border-radius: 28px; }
    .work-main-title                { font-size: 44px; }
    .work-filter-buttons a          { min-width: 220px; }

    .banner-header-container-1      { padding: 36px; }
    .smart-technology-top-title-1 h5 { font-size: 26px; }
    .banner-header-wrapper-1        { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
    .banner-header-wrapper-1 .banner-header-content { flex: 0 0 100%; max-width: 100%; width: 100%; }
    .banner-header-image-1          { flex: 0 0 100%; }
    .banner-header-image-1 img      { max-width: 420px; width: 100%; }
    .hiring-title                   { font-size: 44px; }
    .hiring-content                 { font-size: 17px; max-width: 100%; }

    .job-card                       { max-width: 100%; padding: 22px; border-radius: 22px; }
    .job-title                      { font-size: 26px; }
    .job-meta                       { font-size: 13px; }
    .job-description                { font-size: 20px; line-height: 1.6; }
    .apply-btn                      { min-width: 200px; height: 42px; font-size: 17px; }

    .portfolio-btn                  { min-width: 340px; height: 44px; font-size: 18px; }

    .isi-features-container         {  gap: 36px; }
    .isi-feature-item h3            { font-size: 38px; margin-bottom: 18px; }
    .isi-feature-item p             { font-size: 20px; }

    .isi-contact-parameters-box     { padding: 30px; }
    .isi-contact-form-row           { grid-template-columns: 1fr; gap: 10px; }
    .isi-contact-grid               { gap: 28px; }
    .isi-trust-badges               { flex-wrap: wrap; gap: 28px; }

    .pps-grid                       { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .pps-title                      { font-size: 30px; min-height: auto; }
    .pps-text                       { font-size: 22px; min-height: auto; }

    .cr-grid                        { grid-template-columns: 1fr; gap: 36px; }
    .cr-title                       { font-size: 40px; }
    .cr-description                 { font-size: 22px; margin: 0 30px; }
    .cr-card                        { padding: 36px 22px;margin: 0 100px;  }
    .cr-card-title                  { font-size: 32px; }

    .ecs-hero                       { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .ecs-content                    { grid-template-columns: 1fr; gap: 50px; }
    .ecs-left img                   { margin: auto; }
    .ecs-right                      { text-align: center; }
    .quote                          { display: none; }
    .ecs-stats                      {  gap: 36px; }
    .ecs-stat h3                    { font-size: 44px; }

    .isi-resource-content p         { font-size: 18px; line-height: 1.7; }
    .isi-resource-tags a            { font-size: 17px; margin: 0 10px; }
    .pagination-wrapper             { gap: 14px; padding: 10px 0 100px; }

    .form-row                       { grid-template-columns: 1fr; gap: 10px; }
    .city-pincode-wrapper           { flex-direction: column; }

    .free-sample-cta-card           { padding: 50px 40px; }

    .testimonial-card               { text-align: center; padding: 35px 25px; }
    .testimonial-stars              { text-align: center; }
    .testimonial-image              { flex: unset; }
    .testimonial-content            { width: 100%; }
    .testimonial-text               { text-align: justify; font-size: 22px; }
    .quote-left, .quote-right       { display: none; }
    .testimonial-footer             { flex-direction: column; align-items: center; text-align: center; }
    .testimonial-actions            { flex-direction: column; gap: 20px; }

    .content-text                   { font-size: 24px; text-align: justify; }
    .blog-def p                     { font-size: 24px; }

    .banner-header-content h1 span {font-size: 35px;}
    .cr-item p{max-width: 500px; font-size: 22px;}
        .gallery-controls{margin-top: 50px;}
        .core-service-icon img { width: 100%;height: 90px;}
        .core-service-card h3{font-size: 30px;}
       

}

/* ─── 31e. 472px – 767px ─── */
@media (min-width: 472px) and (max-width: 767px) {
    h1 { font-size: 26px; }
    h2 { font-size: 24px; }
    h3 { font-size: 19px; }
    h4 { font-size: 17px; }
    h5 { font-size: 34px; }
    h6 { font-size: 14px; }
    p  { font-size: 22px; line-height: 1.7; margin-bottom: 12px; }
    li { font-size: 13px; }
 .smart-technology-top-title h5 {font-size: 35px;}
    .banner-header-section          { overflow: hidden; }
    .banner-header-container        { padding: 32px 18px; }
    .banner-header-wrapper          { flex-direction: column; gap: 24px; }
    .banner-header-content,
    .banner-header-image            { width: 100%; max-width: 100%; flex: unset; }
    .banner-header-image            { overflow: hidden; }
    .banner-header-image img        { width: 100%; height: 560; border-radius: 22px; }
    .banner-header-content h1       { font-size: 45px; line-height: 1.2; margin-bottom: 18px; }
    .banner-header-content p        { font-size: 22px; line-height: 1.75; text-align: justify; }
    .banner-header-buttons          { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .banner-header-primary-btn,
    .banner-header-secondary-btn    { font-size: 15px; padding: 11px 20px; white-space: nowrap; }
    .who-we-are-text-bottom p       { font-size: 22px; line-height: 1.7; text-align: justify; }

    .about-company-section          { padding: 36px 18px; }
    .about-company-grid             { flex-direction: column; gap: 22px; margin-top: 26px; }
    .about-company-left,
    .about-company-right            { max-width: 100%; flex: 1 1 100%; }
    .about-company-left h2          { font-size: 30px; }
    .about-company-left p           { font-size: 22px; }
    .about-company-card-grid        { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .about-company-card             { min-height: 190px; border-radius: 20px; padding: 20px 12px; }
    .about-company-card img         { width: 52px; height: 52px; margin-bottom: 12px; }
    .about-company-card h3          { font-size: 17px; }
    .about-company-card p           { font-size: 16px; }

    .about-mission-container        { grid-template-columns: 1fr; gap: 44px; }
    .about-mission-column h1        { font-size: 32px; margin-bottom: 18px; }
    .about-mission-column p         { font-size: 22px; line-height: 1.75; margin:  0 50px; }

    .global-brand-section           { padding: 36px 16px; }
    .global-brand-grid              { grid-template-columns: repeat(2, 1fr); gap: 13px; }
    .global-brand-title             { font-size: 30px; margin-bottom: 26px; }
    .global-brand-card              { min-height: 170px; border-radius: 20px; padding: 18px 10px; }
    .global-brand-card img          { width: 50px; height: 50px; }
    .global-brand-card h3           { font-size: 14px; line-height: 20px; }

    .smart-technology-section       { padding: 36px 16px 55px; }
    .smart-technology-main-title    { font-size: 35px; line-height: 1.3; }
    .smart-technology-description   { font-size: 13px; }
    .smart-technology-subtitle      { font-size: 20px; margin: 26px 0; }
    .smart-technology-grid          { grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 22px; }
    .smart-technology-card          { min-height: 175px; padding: 18px 11px; border-radius: 20px; }
    .smart-technology-card img      { width: 54px; height: 54px; margin-bottom: 14px; }
    .smart-technology-card h3       { font-size: 14px; }
    .smart-technology-card:nth-child(5),
    .smart-technology-card:nth-child(6) { grid-column: auto; }

    .service-pricing-section        { padding: 0 18px; }
    .service-pricing-top-title      { font-size: 18px; margin-bottom: 20px; }
    .service-pricing-description    { font-size: 13px; margin-bottom: 28px; }
    .service-pricing-card-wrapper   { grid-template-columns: repeat(2, 1fr); gap: 13px; margin-bottom: 36px; }
    .service-pricing-card           { width: 100%; height: auto; min-height: 215px; border-radius: 20px; }
    .service-pricing-card-content h3 { font-size: 17px; }
    .service-pricing-card-content h2 { font-size: 22px; }
    .service-pricing-card-content p  { font-size: 12px; }
    .service-pricing-start          { font-size: 16px; margin-bottom: 16px; }
    .service-pricing-factors h2     { font-size: 20px; }
    .service-pricing-factors li     { font-size: 13px; margin-bottom: 16px; }
    .service-pricing-bottom-text    { font-size: 13px; }

    .trusted-global-section         { padding: 36px 16px; }
    .trusted-global-logos           { justify-content: center; gap: 10px; }
    .trusted-global-item-one        { width: 70px;  height: 53px; }
    .trusted-global-item-two        { width: 120px; height: 30px; }
    .trusted-global-item-three      { width: 110px; height: 42px; }
    .trusted-global-item-four       { width: 85px;  height: 44px; }
    .trusted-global-item-five       { width: 80px;  height: 80px; }

    .customer-testimonial-section   { padding: 36px 16px 56px; }
    .customer-testimonial-card      { width: 100%; padding: 26px 18px; }
    .customer-testimonial-text      { font-size: 14px; padding-left: 36px; }

    .blog-insights-section          { padding: 36px 16px 56px; }
    .blog-insights-small-title      { font-size: 18px; margin-bottom: 20px; }
    .blog-insights-main-title       { font-size: 22px; margin-bottom: 16px; }
    .blog-insights-content-wrapper  { flex-direction: column; gap: 22px; }
    .blog-insights-text-content,
    .blog-insights-image-box        { width: 100%; }
    .blog-insights-image-box        { justify-content: center; }
    .blog-insights-text-content p   { font-size: 22px; margin: 0 30px; }
    .blog-insights-btn              { width: 280px; height: 44px; font-size: 14px; }    

    .isi-contact-bottom-wrapper     { grid-template-columns: 1fr; gap: 36px; margin-top: 36px; padding: 0 18px; }
    .isi-contact-heading h3         { font-size: 22px; }
    .isi-contact-form-box           { padding: 22px; border-radius: 26px; }
    .isi-form-group                 { grid-template-columns: 1fr; gap: 8px; }
    .isi-form-group input,
    .isi-form-group select          { height: 42px; font-size: 14px; }
    .isi-message-group textarea     { height: 100px; }
    .isi-submit-btn                 { width: 100%; max-width: 100%; height: 46px; font-size: 15px; }

    .core-services-main-title h2    { font-size: 28px; }
    .core-service-card              { padding: 26px 18px; }
    .core-service-card h3           { font-size: 25px; }
    .core-service-card p            { font-size: 22px; }
    .core-services-wrapper          { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .core-service-btn               { min-width: 100%; font-size: 14px; }
    .pps-icon-box img{width: 100px;
    height: 80px;}

    .scale-cta-section              { padding: 65px 0; }
    .scale-cta-container h1         { font-size: 32px; margin: 0 20px; }
     .scale-cta-container h2       { font-size: 38px; margin: 0 20px; }

    .isi-pricing-section            { padding: 56px 14px; }
    .isi-price-card                 { width: 100%; max-width: 300px; min-height: 270px; }
    .isi-price-card h3              { font-size: 22px; }
    .isi-price-card h2              { font-size: 40px; }
    .isi-pricing-factors h2         { font-size: 30px; }
    .isi-pricing-factors li         { font-size: 22px; text-align: justify; }
    .isi-pricing-bottom-text        { font-size: 22px; }

    .isi-why-main-title             { font-size: 30px; }
    .isi-why-description            { font-size: 22px; text-align: justify; margin: 20px 30px; }
    .isi-why-subtitle               { font-size: 30px; margin-bottom: 36px; }
    .isi-why-grid                   { grid-template-columns: repeat(2, 1fr); max-width: 500px; gap: 18px; }
    .isi-why-card:nth-child(5),
    .isi-why-card:nth-child(6)      { grid-column: auto;min-height: 190px; border-radius: 20px; padding: 20px 12px; }

    .isi-workflow-line              { display: none; }
    .isi-workflow-title             { font-size: 30px; }
    .isi-workflow-card-down         { margin-top: 0; }
    .isi-workflow-card              { margin-bottom: 40px; }

    .work-gallery                   { display: grid; grid-template-columns: 1fr; gap: 14px; height: auto; }
    .gallery-img                    { position: relative !important; width: 100% !important; height: 240px !important; top: auto !important; left: auto !important; right: auto !important; transform: none !important; }
    .banner-3                       { grid-column: span 1; height: 280px !important; width: 100% !important; border-radius: 22px; }
    .work-main-title                { font-size: 34px; }
    .work-filter-buttons a          { width: 100%; min-width: 100%; }
    .view-details-btn               { width: 100%; }

    .portfolio-btn                  { width: 100%; min-width: 100%; font-size: 17px; height: 46px; }
    .apply-btn                      { width: 100%; min-width: 100%; font-size: 15px; }

    .banner-header-section-1        { padding: 28px 18px; }
    .banner-header-container-1      { padding: 28px; }
    .smart-technology-top-title-1 h5 { font-size: 22px; }
    .banner-header-wrapper-1        { flex-direction: column; align-items: center; text-align: center; gap: 28px; }
    .banner-header-wrapper-1 .banner-header-content { flex: 0 0 100%; max-width: 100%; width: 100%; }
    .banner-header-image-1          { flex: 0 0 100%; }
    .banner-header-image-1 img      { max-width: 340px; width: 100%; }
    .hiring-title                   { font-size: 36px; }
    .hiring-content                 { font-size: 15px; max-width: 100%; }

    .job-card                       { max-width: 100%; padding: 18px; border-radius: 18px; }
    .job-title                      { font-size: 22px; }
    .job-description                { font-size: 17px; }

    .isi-features-container         { grid-template-columns: 1fr; gap: 36px; }
    .isi-feature-item h3            { font-size: 34px; margin-bottom: 14px; }
    .isi-feature-item p             { font-size: 18px; }

    .isi-contact-parameters-box     { padding: 25px; border-radius: 25px; }
    .isi-contact-form-row           { grid-template-columns: 1fr; gap: 10px; }
    .isi-contact-grid               { grid-template-columns: 1fr; gap: 25px; }
    .isi-trust-badges               { flex-direction: column; gap: 20px; }

    .pps-grid                       { grid-template-columns: repeat(2, 1fr); gap: 14px;  margin: 0;}
    .pps-title                      { font-size: 25px; min-height: auto; }
    .pps-text                       { font-size: 22px; min-height: auto; }

    .cr-grid                        { grid-template-columns: 1fr; gap: 32px; }
    .cr-title                       { font-size: 34px; }
    .cr-description                 { font-size: 22px; margin:  0; }
    .cr-card                        { padding: 28px 18px; margin: 0 70px; }
    .cr-card-title                  { font-size: 26px; }

    .ecs-hero                       { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .ecs-content                    { grid-template-columns: 1fr; gap: 36px; }
    .ecs-left h1                    { font-size: 42px; }
    .ecs-left img                   { margin: auto; }
    .ecs-right p                    { font-size: 20px; text-align: justify; margin: 0 30px;}
    .quote                          { display: none; }
    .ecs-stats                      { grid-template-columns: 1fr; gap: 28px; }
    .ecs-stat h3                    { font-size: 38px; }

    .isi-resource-content p         { font-size: 17px; }
    .isi-resource-btn               { width: 100%; min-width: 100%; font-size: 17px; height: 48px; }
    .next-page                      { margin-left: 0; }

    .form-row                       { grid-template-columns: 1fr; gap: 8px; }
    .city-pincode-wrapper           { flex-direction: column; }
    .candidate-title                { font-size: 28px; }
    .submit-btn                     { font-size: 17px; }
    .job-opening-title              { font-size: 48px; }

    .free-sample-cta-card           { padding: 35px 20px; border-radius: 24px; }
    .free-sample-cta-btn            { padding: 12px 28px; font-size: 16px; }

    .testimonial-card               { flex-direction: column; text-align: center; padding: 35px 25px; }
    .testimonial-stars              { text-align: center; }
    .testimonial-image              { flex: unset; }
    .testimonial-content            { width: 100%; }
    .testimonial-text               { max-width: 100%; font-size: 20px; }
    .quote-left, .quote-right       { display: none; }
    .testimonial-footer             { flex-direction: column; align-items: center; text-align: center; }
    .testimonial-actions            { flex-direction: column; gap: 20px; }
    .testimonial-heading            { font-size: 28px; margin-bottom: 40px; }
    .testimonial-card               { border-radius: 25px; padding: 25px 20px; }
    .testimonial-image img          { max-width: 100%; height: 250px; } 
    .testimonial-stars              { font-size: 22px; }
    .testimonial-text               { font-size: 22px; text-align: justify; line-height: 1.7; }
    .testimonial-info h4            { font-size: 30px; }
    .testimonial-info p  ,.read-story           { font-size: 22px; }
    .slider-controls button         { width: 38px; height: 38px; font-size: 14px; }

    .content-text                   { font-size: 22px; text-align: justify; }
    .blog-def p                     { font-size: 22px; }
    .work-description {text-align: justify;}
        .gallery-controls{margin-top: 50px;}
       
    
}

/* ─── 31f. ≤ 480px ─── */
@media (max-width: 480px) {
    h1 { font-size: 22px; }
    h2 { font-size: 20px; }
    h3 { font-size: 17px; }
    h4 { font-size: 15px; }
    p  { font-size: 14px; margin-bottom: 10px; }
    li { font-size: 12px; }

    .banner-header-container        { padding: 28px 14px; }
    .banner-header-wrapper          { flex-direction: column; }
    .banner-header-content,
    .banner-header-image            { width: 100%; }
    .banner-header-content h1       { font-size: 44px; line-height: 1.2; }
    .banner-header-content p        { font-size: 22px; line-height: 1.6; text-align: justify; }
    .banner-header-buttons          { flex-direction: column; width: 100%; gap: 10px; }
    .banner-header-primary-btn,
    .banner-header-secondary-btn    { width: 100%; padding: 12px 18px; font-size: 14px; text-align: center; display: flex; justify-content: center; }
    .banner-header-image img        { width: 100%; border-radius: 20px; }
    .who-we-are-text-bottom p       { font-size: 22px; line-height: 1.6; text-align: justify; }

    .about-mission-container        { grid-template-columns: 1fr; gap: 40px; }
    .about-mission-column h1        { font-size: 30px; margin-bottom: 15px; }
    .about-mission-column p         { font-size: 22px; line-height: 1.7; margin: 0 30px; }

    .about-company-section          { padding: 28px 14px; }
    .about-company-grid             { flex-direction: column; gap: 20px; margin-top: 24px; }
    .about-company-left h2          { font-size: 31px; margin-bottom: 12px; line-height: 1.3; }
    .about-company-left p           { font-size: 22px; text-align: justify; }
    .about-company-card-grid        { grid-template-columns: 1fr; gap: 12px; }
    .about-company-card             { min-height: 160px; border-radius: 18px; padding: 18px 12px; }
    .about-company-card img         { width: 48px; height: 48px; margin-bottom: 10px; }
    .about-company-card h3          { font-size: 17px; }
    .about-company-card p           { font-size: 15px; }
    .about-company-btn              { width: 160px; height: 44px; font-size: 14px; }

    .global-brand-section           { padding: 28px 14px; }
    .global-brand-grid              { grid-template-columns: 1fr 1fr; gap: 12px; }
    .global-brand-title             { font-size: 30px; margin-bottom: 30px; line-height: 1.3; }
    .global-brand-card              { min-height: 150px; border-radius: 18px; padding: 16px 10px; }
    .global-brand-card img          { width: 45px; height: 45px; margin-bottom: 14px; }
    .global-brand-card h3           { font-size: 13px; line-height: 20px; }
     .isi-why-description            { font-size: 22px; text-align: justify;  }

    .smart-technology-section       { padding: 28px 14px 50px; }
    .smart-technology-top-title     { font-size: 30px; margin-bottom: 20px; }
    .smart-technology-top-title h5  { font-size: 25px; }
    .smart-technology-main-title    { font-size: 30px; margin-bottom: 20px; line-height: 1.3; }
    .smart-technology-description   { font-size: 12px; margin-bottom: 30px; }
    .smart-technology-subtitle      { font-size: 18px; margin: 20px 0; }
    .smart-technology-grid          { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
    .smart-technology-card          { min-height: 150px; padding: 16px 10px; border-radius: 18px; }
    .smart-technology-card img      { width: 48px; height: 48px; margin-bottom: 12px; }
    .smart-technology-card h3       { font-size: 13px; }

    .service-pricing-section        { padding: 0 14px; }
    .service-pricing-top-title      { font-size: 17px; }
    .service-pricing-description    { font-size: 12px; }
    .service-pricing-card-wrapper   { grid-template-columns: 1fr; gap: 14px; }
    .service-pricing-card           { width: 100%; height: auto; min-height: 200px; border-radius: 18px; }
    .service-pricing-factors h2     { font-size: 18px; }
    .service-pricing-factors li     { font-size: 12px; }
    .service-pricing-bottom-text    { font-size: 12px; }

    .trusted-global-section         { padding: 28px 14px; }
    .trusted-global-logos           { gap: 4px; justify-content: center; }
    .trusted-global-item-one        { width: 55px; height: 42px; }
    .trusted-global-item-two        { width: 95px; height: 24px; }
    .trusted-global-item-three      { width: 88px; height: 34px; }
    .trusted-global-item-four       { width: 68px; height: 35px; }
    .trusted-global-item-five       { width: 62px; height: 62px; }

    .customer-testimonial-section   { padding: 28px 14px 50px; }
    .customer-testimonial-card      { width: 100%; padding: 24px 16px; }
    .customer-testimonial-text      { font-size: 14px; padding-left: 30px; }
    .quote-left-img                 { top: 50px; left: 50px; width: 30px; }
    .quote-right-img                { left: 150px; bottom: 80px; width: 30px; }
    .customer-name                  { font-size: 15px; }
    .customer-role                  { font-size: 12px; }

    .blog-insights-section          { padding: 28px 14px 50px; }
    .blog-insights-small-title      { font-size: 17px; }
    .blog-insights-main-title       { font-size: 20px; }
    .blog-insights-content-wrapper  { flex-direction: column; gap: 18px; }
    .blog-insights-text-content,
    .blog-insights-image-box        { width: 100%; }
    .blog-insights-text-content p, .free-sample-cta-text      { font-size: 22px; line-height: 1.9; }
    .blog-insights-btn              { width: 280px; height: 44px; font-size: 14px; }

    .isi-contact-bottom-wrapper     { grid-template-columns: 1fr; gap: 35px; padding: 0 15px; }
    .isi-contact-heading h3         { font-size: 22px; }
    .isi-contact-form-box           { padding: 20px; border-radius: 20px; }
    .isi-contact-form-box h3        { font-size: 20px; }
    .isi-form-group                 { grid-template-columns: 1fr; gap: 8px; }
    .isi-form-group input,
    .isi-form-group select          { height: 42px; font-size: 14px; }
    .isi-message-group textarea     { height: 100px; }
    .isi-submit-btn                 { width: 100%; max-width: 100%; height: 45px; font-size: 11px; }
    .isi-contact-info-box           { margin: 0 -20px; }

    .core-services-wrapper          { grid-template-columns: repeat(1, 1fr); }
    .core-services-main-title h2    { font-size: 25px; line-height: 1.3; }
    .core-service-card              { padding: 25px 15px; border-radius: 25px; }
    .core-service-icon img          { width: 140px; height: 80px; }
    .core-service-card h3           { font-size: 25px; }
    .core-service-card p            { font-size: 22px;}
    .core-service-btn               { min-width: 100%; font-size: 14px; }

    .scale-cta-section              { padding: 60px 0; }
    .scale-cta-container h1         { font-size: 30px; line-height: 1.4; }
     .scale-cta-container h2         { font-size: 30px; line-height: 1.4; }

    .isi-price-card                 { max-width: 100%; }
    .isi-price-card h2              { font-size: 38px; }
    .isi-pricing-factors h2         { font-size: 30px; }

    .isi-why-main-title             { font-size: 28px; }
    .isi-why-subtitle               { font-size: 30px; }
    .isi-why-card                   { min-height: 160px;border-radius: 18px;padding: 18px 12px; }

    .isi-workflow-section           { padding: 60px 0; }
    .isi-workflow-line              { display: none; }
    .isi-workflow-title             { font-size: 30px; margin-bottom: 40px; }
    .isi-workflow-card-down         { margin-top: 0; }
    .isi-workflow-icon              { width: 75px; height: 75px; }
    .isi-workflow-card h3           { font-size: 22px; }
    .isi-workflow-card p            { font-size: 18px; }

    .work-gallery                   { display: grid; grid-template-columns: 1fr; gap: 12px; height: auto; }
    .gallery-img                    { position: relative !important; width: 100% !important; height: 220px !important; top: auto !important; left: auto !important; right: auto !important; transform: none !important; }
    .gallery-title                  { font-size: 30px; }
    .gallery-subtitle               { font-size: 22px; }
    .view-details-btn               { width: 100%; font-size: 16px; }
    .work-main-title                { font-size: 30px; }
    .work-description               { font-size: 22px; text-align: justify; }

    .isi-resource-content p         { font-size: 16px; }
    .isi-resource-btn               { width: 100%; height: 48px; font-size: 16px; }
    .isi-resource-tags a            {  margin: 8px 0; font-size: 15px; }
    .pagination-wrapper             { gap: 10px; padding: 10px 0 60px; }
    .next-page                      { margin-left: 0; }

    .banner-header-section-1        { padding: 20px 15px; }
    .banner-header-container-1      { padding: 25px 20px; }
    .banner-header-wrapper-1        { flex-direction: column; text-align: center; gap: 25px; }
    .banner-header-wrapper-1 .banner-header-content { flex: 0 0 100%; max-width: 100%; width: 100%; }
    .hiring-title                   { font-size: 32px; }
    .hiring-content                 { font-size: 15px; }
    .banner-header-image-1 img      { max-width: 280px; }

    .job-card                       { padding: 15px; border-radius: 15px; }
    .job-title                      { font-size: 20px; }
    .job-meta                       { font-size: 11px; }
    .job-description                { font-size: 16px; }
    .apply-btn                      { width: 100%; height: 42px; font-size: 14px; }

    .portfolio-btn                  { width: 100%; height: 48px; font-size: 16px; min-width: unset; }

    .isi-features-container         { grid-template-columns: 1fr; gap: 30px; }
    .isi-feature-item h3            { font-size: 32px; }
    .isi-feature-item p             { font-size: 22px; }

    .isi-contact-parameters-box     { padding: 20px; border-radius: 20px; }
    .isi-contact-form-row           { grid-template-columns: 1fr; gap: 8px; }
    .isi-contact-form-row input,
    .isi-contact-form-row select    { height: 40px; font-size: 16px; }
    .isi-message-wrapper textarea   { height: 140px; }
    .isi-upload-box                 { height: 100px; font-size: 16px; }
    .isi-contact-grid               { grid-template-columns: 1fr; gap: 20px; }
    .isi-trust-badges               { flex-direction: column; gap: 15px; }
    .isi-trust-item span            { font-size: 16px; }
    .isi-copyright                  { font-size: 14px; }

    .pps-grid                       { grid-template-columns: 1fr; gap: 16px; margin:  0; }
    .pps-description                { text-align: justify; font-size: 22px; }
    .pps-title                      { font-size: 25px; min-height: auto; }
    .pps-text                       { font-size: 22px; min-height: auto; }

    .cr-grid                        { grid-template-columns: 1fr; gap: 30px; }
    .cr-title                       { font-size: 32px; }
    .cr-description                 { font-size: 22px; margin: 0 20px; text-align: justify; }
    .cr-item h4                     { font-size: 28px; }
    .cr-item p                      { font-size: 22px; }
    .cr-btn                         { width: 200px; height: 50px; font-size: 18px; }

    .ecs-hero                       { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .ecs-content                    { grid-template-columns: 1fr; gap: 30px; }
    .ecs-left h1                    { font-size: 40px; }
    .ecs-left img                   { margin: auto; width: 220px; }
    .ecs-right p                    { font-size: 18px; }
    .quote                          { display: none; }
    .ecs-stat h3                    { font-size: 36px; }
    .ecs-stat p                     { font-size: 18px; }
    .ecs-stats                      { grid-template-columns: 1fr; gap: 25px; }
    .author-info h4                 { font-size: 26px; }
    .author-info span               { font-size: 16px; }

    .form-row                       { grid-template-columns: 1fr; gap: 8px; }
    .form-row label,
    .full-section h3                { font-size: 18px; }
    .city-pincode-wrapper           { flex-direction: column; }
    .upload-box                     { height: 90px; font-size: 16px; }
    .submit-btn                     { width: 100%; font-size: 18px; }
    .candidate-title                { font-size: 26px; }
    .job-opening-title              { font-size: 40px; }
    .job-category                   { font-size: 18px; }
    .job-opening-meta               { font-size: 18px; }

    .blog-def                       { font-size: 20px; padding: 20px; }
    .blog-def p                     { font-size: 20px; text-align: justify; }
    .intro-text                     { font-size: 22px; margin-bottom: 40px; }
    .content-title                  { font-size: 38px; margin-bottom: 30px; }
    .content-text                   { font-size: 20px; text-align: justify; }

    .free-sample-cta-card           { padding: 35px 20px; border-radius: 24px; }
    .free-sample-cta-btn            { padding: 12px 28px; font-size: 16px; }

  .testimonial-card               { flex-direction: column; text-align: center; padding: 35px 25px; }
    .testimonial-stars              { text-align: center; }
    .testimonial-image              { flex: unset; }
    .testimonial-content            { width: 100%; }
    .testimonial-text               { max-width: 100%; font-size: 20px; }
    .quote-left, .quote-right       { display: none; }
    .testimonial-footer             { flex-direction: column; align-items: center; text-align: center; }
    .testimonial-actions            { flex-direction: column; gap: 20px; }
    .testimonial-heading            { font-size: 28px; margin-bottom: 40px; }
    .testimonial-card               { border-radius: 25px; padding: 25px 20px; }
    .testimonial-image img          { max-width: 500px;height: 150px; }
    .testimonial-stars              { font-size: 22px; }
    .testimonial-text               { font-size: 20px; line-height: 1.7; text-align: justify; }
    .testimonial-info h4            { font-size: 22px; }
    .testimonial-info p             { font-size: 20px; }
    .slider-controls button         { width: 38px; height: 38px; font-size: 14px; }

    .isi-pricing-factors li         { font-size: 20px; text-align: justify; }
    .isi-pricing-bottom-text { font-size: 22px; text-align: justify;}
    .banner-header-content h1 span {font-size: 35px;}
    .cr-card-title {font-size: 35px;}
    .gallery-controls{margin-top: 50px;}

}

/* ─── nth-child centering — 4-col layout only ─── */
@media (min-width: 1200px) {
    .smart-technology-card:nth-child(5) { grid-column: 2; }
    .smart-technology-card:nth-child(6) { grid-column: 3; }
    .isi-why-card:nth-child(5)          { grid-column: 2; }
    .isi-why-card:nth-child(6)          { grid-column: 3; }
}
/* ==========================================
   BASE STYLES (Desktop First)
========================================== */
/*------------------------faq------*/
.faq-card {
  background: #fff;
  border: 2px solid #ccecff;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  margin: 0 50px 28px ;
}

.faq-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-header span:first-child {
  flex: 1;
  color: #15489b;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #15489b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}

.faq-plus {
  color: #15489b;
  font-size: 34px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-content {
  padding: 0 40px 32px;
}

.faq-content p,
.faq-content li {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.faq-content ul {
  padding-left: 28px;
}

.faq-content strong {
  color: #111;
}
/* ==========================================
   LARGE DESKTOP (1440px+)
========================================== */

@media (min-width:1440px){

    .faq-wrapper{
        max-width:1440px;
    }

    .faq-card{
        border-radius:40px;
    }

    .faq-header{
        padding:32px 42px;
    }

    .faq-header span:first-child{
        font-size:32px;
    }

    .faq-icon{
        width:58px;
        height:58px;
        font-size:24px;
    }

    .faq-plus{
        font-size:38px;
    }

    .faq-content{
        padding:0 45px 35px;
    }

    .faq-content p,
    .faq-content li{
        font-size:20px;
        line-height:1.9;
    }
}

/* ==========================================
   DESKTOP (1200px - 1439px)
========================================== */

@media (min-width:1200px) and (max-width:1439px){

    .faq-wrapper{
        padding:0 30px;
    }

    .faq-card{
        border-radius:34px;
    }

    .faq-header{
        padding:28px 34px;
    }

    .faq-header span:first-child{
        font-size:28px;
    }

    .faq-content p,
    .faq-content li{
        font-size:20px;
    }
}

/* ==========================================
   SMALL LAPTOP (992px - 1199px)
========================================== */

@media (min-width:992px) and (max-width:1199px){

    .faq-wrapper{
        padding:0 25px;
    }

    .faq-card{
        border-radius:30px;
        margin-bottom:22px;
    }

    .faq-header{
        padding:24px 28px;
    }

    .faq-header span:first-child{
        font-size:24px;
    }

    .faq-icon{
        width:46px;
        height:46px;
        font-size:18px;
    }

    .faq-plus{
        font-size:35px;
    }

    .faq-content{
        padding:0 30px 26px;
    }

    .faq-content p{
        font-size:18px;
        line-height:1.7;
        text-align: justify;
    }
    .faq-content li{
        font-size:18px;
        line-height:1.7;
    }
}

/* ==========================================
   TABLET (768px - 991px)
========================================== */

@media (min-width:768px) and (max-width:991px){

    .faq-wrapper{
        padding:0 20px;
    }

    .faq-card{
        border-radius:24px;
        margin-bottom:18px;
    }

    .faq-header{
        padding:20px 22px;
        gap:15px;
    }

    .faq-header span:first-child{
        font-size:27px;
        line-height:1.4;
    }

    .faq-icon{
        width:42px;
        height:42px;
        font-size:17px;
    }

    .faq-plus{
        font-size:35px;
    }

    .faq-content{
        padding:0 22px 22px;
    }

    
    .faq-content li{
        font-size:18px;
        line-height:1.7;
    }
.faq-content p{
    font-size:18px;
        line-height:1.7;
        text-align: justify;
}
    .faq-content ul{
        padding-left:22px;
    }
}

/* ==========================================
   MOBILE LARGE (481px - 767px)
========================================== */

@media (min-width:481px) and (max-width:767px){

    .faq-wrapper{
        padding:0 15px;
    }

    .faq-card{
        border-radius:18px;
        margin-bottom:15px;
    }

    .faq-header{
        padding:18px;
        gap:12px;
        align-items:flex-start;
    }

    .faq-header span:first-child{
        font-size:25px;
        line-height:1.5;
    }

    .faq-icon{
        width:36px;
        height:36px;
        min-width:36px;
        font-size:14px;
    }

    .faq-plus{
        font-size:35px;
    }

    .faq-content{
        padding:0 18px 18px;
    }

    .faq-content p,
    .faq-content li{
        font-size:18px;
        line-height:1.7;
    }

    .faq-content ul{
        padding-left:18px;
    }
}

/* ==========================================
   MOBILE SMALL (320px - 480px)
========================================== */

@media (max-width:480px){

    .faq-wrapper{
        padding:0 12px;
    }

    .faq-card{
        border-radius:14px;
        margin-bottom:12px;
        border-width:1px;
    }

    .faq-header{
        padding:14px;
        gap:10px;
        align-items:flex-start;
    }

    .faq-header span:first-child{
        font-size:25px;
        line-height:1.5;
    }

    .faq-icon{
        width:32px;
        height:32px;
        min-width:32px;
        font-size:12px;
    }

    .faq-plus{
        font-size:35px;
    }

    .faq-content{
        padding:0 14px 16px;
    }

   
    .faq-content li{
        font-size:18px;
        line-height:1.7;
      
    }
 .faq-content p{
      font-size:18px;
        line-height:1.7;
        text-align: justify;

 }

    .faq-content ul{
        padding-left:16px;
    }
}

/* ==========================================
   EXTRA SMALL DEVICES (320px and below)
========================================== */

@media (max-width:360px){

    .faq-header span:first-child{
        font-size:22px;
    }

  
    .faq-content li{
        font-size:16px;
    }
  .faq-content p{
     font-size:16px;
     text-align: justify;
  }
    .faq-icon{
        width:28px;
        height:28px;
        min-width:28px;
        font-size:11px;
    }

    .faq-plus{
        font-size:35px;
    }
}

.contact-link {
    color: #179CD8;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
/*-------------------------------------------------------*/
@media (max-width: 991px) {
  .isi-contact-details {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .isi-contact-heading {
    font-size: 30px;
  }

  .isi-contact-info-box {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 15px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .isi-contact-info-box img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .isi-contact-info-text h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .isi-contact-info-text p {
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
  }
}
/* ====================================
   Small Mobile (320px - 480px)
==================================== */
@media (max-width: 480px) {
  .isi-contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .isi-contact-heading {
    font-size: 30px;
  }

  .isi-contact-info-box {
    background: #fff;
    border-radius: 15px;
    padding: 18px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .isi-contact-info-box img {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .isi-contact-info-text h4 {
    font-size: 15px;
  }

  .isi-contact-info-text p {
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
  }
}

/* ====================================
   Large Mobile (481px - 767px)
==================================== */
@media (min-width: 481px) and (max-width: 767px) {
  .isi-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .isi-contact-heading {
    font-size: 30px;
  }

  .isi-contact-info-box {
    flex: 0 0 calc(50% - 8px);
    background: #fff;
    border-radius: 15px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .isi-contact-info-box:last-child {
    flex: 0 0 100%;
  }

  .isi-contact-info-box img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
}

/* ====================================
   Tablet (768px - 991px)
==================================== */
@media (min-width: 768px) and (max-width: 991px) {
  .isi-contact-details {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .isi-contact-heading {
    font-size: 30px;
  }

  .isi-contact-info-box {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .isi-contact-info-box img {
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }

  .isi-contact-info-text h4 {
    font-size: 17px;
  }

  .isi-contact-info-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}
