@font-face {
    font-family: 'ProximaNovaBold';
    src: url('https://digivistian.com/assets/FontsFree-Net-Proxima-Nova-Bold.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    /* font-family: 'ProximaNovaBold', sans-serif; */
    font-family: 'Poppins', sans-serif;
}

:root {
    /* --primary-color: #FFD558; */
    --primary-color: #FF9C50;
    /* --secondary-color: #1B76BD; */
    --secondary-color: #0D5FB5;
    --third-color: #9F5DE0;
    --last-color: #080808;
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.layout {
    width: 70rem;
    margin: auto;
}

.pc {
    display: block;
}

.mobile {
    display: none;
}

a {
    text-decoration: none;
}

header img {
    width: 150px;
}

header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav a {
    text-decoration: none;
    color: var(--last-color);
    text-decoration: none;
    font-size: 18px;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.buttons a {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    border: none;
    border-radius: 2rem;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 20px;
}

.buttons a:nth-child(2) {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.banner {
    height: 500px;
    overflow: hidden;
}

.banner .banner-window {
    /* display: none; */
    position: relative;
    height: 100%;
}

.banner .banner-window img {
    position: absolute;
    object-fit: cover;
    z-index: -1;
    width: 100%;
}

.banner .banner-1 {
    display: block;
}

.banner-window .layout {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.banner-window .layout .details {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-window .layout .details h3 {
    font-size: 26px;
    color: var(--primary-color);
}

.banner-window .layout .details h1 {
    font-size: 48px;
}

.banner-window .layout .details p {
    font-size: 16px;
}

.banner-window .layout .details a {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    border-radius: 2rem;
    display: block;
    color: #fff;
    width: fit-content;
}

.banner .img-btn {
    position: absolute;
    transform: translateY(-50%);
    top: 45%;
    height: 100px;
    padding: 0 2rem;
    cursor: pointer;
    z-index: 1;
}

.banner .img-left-btn {
    left: 50px;
}

.banner .img-right-btn {
    right: 50px;
}

.services-section {
    padding: 56px 16px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    align-items: start;
    justify-items: center;
}

/* Card */
.service-card {
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .26s ease, color .18s ease;
    padding: 6px;
    outline: none;
}

.service-card img {
    width: 70px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .26s ease, color .18s ease;
    padding: 6px;
    outline: none;
}

.service-card:focus,
.service-card:hover {
    transform: translateY(-6px);
}

/* Title */
.title {
    margin: 0 0 10px 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.05;
    color: var(--navy);
}

/* Learn link */
.learn {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    margin-top: 6px;
    transition: transform .18s ease, opacity .18s ease;
}

.service-card:hover .title,
.service-card:focus .title {
    color: var(--navy);
}

.service-card:hover .learn,
.service-card:focus .learn {
    text-decoration: underline;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }
}

@media (max-width: 560px) {
    .container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 10px
    }

    .service-card {
        max-width: 480px
    }

    .icon {
        width: 72px;
        height: 72px
    }

    .title {
        font-size: 18px
    }
}

/* Focus visible for accessibility */
.service-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(241, 138, 67, 0.14);
    border-radius: 8px;
}

:root {
    --navy: #123b5a;
    --muted: #9aa7b0;
    --accent: #f18a43;
    --panel-bg: #f3eee9;
    /* light beige for highlighted stat */
    --max-width: 1200px;
    --gutter: 36px;
    --radius: 8px;
    --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

/* Header */
.page-header {
    text-align: center;
    padding: 32px 20px 10px;
    max-width: 1200px;
    margin: 0 auto 24px;
}

.lead-title {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 28px;
    font-weight: 700;
}

.lead-desc {
    margin: 0 auto;
    max-width: 980px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Main two-column layout */
.network-section .inner {
    max-width: var(--max-width);
    margin: 24px auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--gutter);
    align-items: start;
    align-content: start;
}

/* Left column */
.left-col .map-wrap {
    width: 100%;
    margin-bottom: 18px;
}

.left-col .map-wrap img {
    max-width: 100%;
}

.us-map {
    width: 100%;
    height: auto;
    display: block;
    max-width: 520px;
}

/* Position map and content neatly */
.content-block {
    margin-top: 18px;
    max-width: 640px;
}

.section-title {
    font-size: 32px;
    margin: 10px 0 12px;
    color: var(--navy);
    line-height: 1.05;
    font-weight: 700;
}

.section-copy {
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
    margin-bottom: 18px;
    max-width: 720px;
}

.btn-learn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.06);
}

/* Right column - vertical stats */
.right-col {
    position: relative;
    padding-left: 28px;
    height: 100%;
}

/* thin vertical rail/line */
.right-col .stats-rail {
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 6px;
    background: linear-gradient(#e9e6e4, #e9e6e4);
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

/* stat card */
.stat-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px;
    margin-bottom: 22px;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    outline: none;
    margin-left: 30px;
}

.stat-card:focus {
    box-shadow: 0 6px 16px rgba(18, 59, 90, 0.06);
    transform: translateY(-3px);
}

/* active state */
.stat-card.active {
    background: var(--panel-bg);
    box-shadow: 0 10px 30px rgba(18, 59, 90, 0.05);
    border-left: 6px solid var(--accent);
}

/* icon */
.stat-icon {
    width: 84px;
    height: 84px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: transparent;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 48px;
    height: 48px
}

/* muted style for inactive cards */
.muted {
    color: #c2c7c9;
    opacity: 0.75
}

/* body with number + label */
.stat-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
}

.stat-number {
    font-weight: 800;
    font-size: 34px;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    opacity: 0.9;
}

/* muted variants for inactive */
.stat-card:not(.active) .stat-number {
    color: #bfc6c9;
    font-weight: 700
}

.stat-card:not(.active) .stat-label {
    color: #bfc6c9;
    font-weight: 600
}

/* Responsive */
@media (max-width: 980px) {
    .network-section .inner {
        grid-template-columns: 1fr 360px;
    }

    .us-map {
        max-width: 440px
    }
}

@media (max-width: 740px) {
    .network-section .inner {
        grid-template-columns: 1fr;
    }

    .right-col {
        padding-left: 0;
    }

    .right-col .stats-rail {
        display: none;
    }

    .stat-card {
        margin-left: 0
    }

    .lead-title {
        font-size: 22px
    }

    .section-title {
        font-size: 26px
    }
}

/* Small details */
.hotspot {
    cursor: pointer;
    transition: transform .16s ease;
}

.hotspot:focus,
.hotspot:hover {
    transform: scale(1.12);
}

/* ---------- Partners bar (orange) ---------- */
.partners-bar {
    background: var(--accent);
    color: white;
    border-bottom: 4px solid rgba(0, 0, 0, 0.06);
}

.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.partners-title {
    margin: 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: 18px;
}

/* carousel container */
.partners-carousel {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 2rem 0;
}

.p-track-wrap {
    overflow: hidden;
    flex: 1 1 auto;
}

.p-track {
    display: flex;
    gap: 36px;
    align-items: center;
    padding: 10px 6px;
    margin: 0;
    list-style: none;
    transform: translateX(0);
    transition: transform .45s cubic-bezier(.2, .9, .3, 1);
    will-change: transform;
}

.p-item {
    flex: 0 0 auto;
    opacity: 0.95
}

.p-item img {
    display: block;
    height: 48px;
    width: auto;
    filter: brightness(0.95) contrast(0.95) invert(0)
}

/* nav buttons */
.p-nav {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .12s ease, transform .12s ease;
    opacity: 0.9;
}

.p-nav:focus {
    outline: 3px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
}

.p-nav:hover {
    transform: translateY(-3px)
}

/* ---------- Testimonial panel (dark) ---------- */
.testimonial-panel {
    background: var(--secondary-color);
    color: white;
    padding: 48px 18px;
    position: relative;
    overflow: hidden;
}

/* decorative big quotes via pseudo elements */
.testimonial-panel::before,
.testimonial-panel::after {
    content: '“';
    position: absolute;
    font-size: 220px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
    font-weight: 700;
    pointer-events: none;
}

.testimonial-panel::before {
    left: 48px;
    top: 18px;
    transform: rotate(0deg);
}

.testimonial-panel::after {
    right: 48px;
    bottom: 0;
    transform: scaleX(-1);
}

/* inner container */
.t-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

/* nav arrows for testimonials */
.t-nav {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: none;
    font-size: 40px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.t-nav:focus {
    outline: 3px solid rgba(241, 138, 67, 0.13);
    border-radius: 6px;
}

/* content area */
.t-content {
    text-align: center;
    color: white;
    padding: 8px 24px;
}

.t-sub {
    color: var(--accent);
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 14px;
}

.t-title {
    margin: 0 0 18px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* testimonial track */
.t-track-wrap {
    overflow: hidden;
}

.t-track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    transform: translateX(0);
    transition: transform .45s cubic-bezier(.2, .9, .3, 1);
}

.t-item {
    flex: 0 0 100%;
}

.quote {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.95);
}

.author {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* responsive adjustments */
@media (max-width: 900px) {
    .t-inner {
        padding: 0 12px;
    }

    .partners-inner {
        padding: 12px
    }

    .partners-title {
        display: none;
    }

    .p-item {
        gap: 18px
    }

    .testimonial-panel::before {
        font-size: 160px;
        left: 18px
    }

    .testimonial-panel::after {
        font-size: 160px;
        right: 18px
    }

    .t-title {
        font-size: 22px
    }
}

@media (max-width: 560px) {
    .stat-body {
        align-items: unset;
    }

    .banner-window .layout .details a {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }

    .p-track {
        gap: 20px
    }

    .p-item img {
        height: 40px
    }

    .t-nav {
        display: none
    }

    /* hide nav on small screens to reduce clutter */
    .testimonial-panel::before {
        display: none
    }

    .testimonial-panel::after {
        display: none
    }

    .t-title {
        font-size: 20px
    }

    .quote {
        font-size: 16px
    }
}

/* Footer */
.site-footer {
    background: var(--last-color);
    border-top: 1px solid rgba(18, 59, 90, 0.04);
}

.site-footer .col-links {
    margin: 0 auto;
}

/* main grid */
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
}

/* Column: headings */
.f-title {
    margin: 0 0 14px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Update text */
.col-update .f-text {
    margin: 0;
    line-height: 1.7;
    font-size: 13px;
    max-width: 520px;
    color: #fff;
}

/* link lists */
.f-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.f-list li {
    margin: 12px 0;
}

.f-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* company column */
.col-company .brand {
    margin-bottom: 18px;
}

.col-company .brand img {
    width: 100px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

/* phone */
.phone {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.phone .phone-ic {
    transform: translateY(1px);
}

/* social icons */
.social {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.social-btn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.social-btn svg {
    display: block;
}

/* bottom bar */
.footer-bottom {
    background: var(--bottom-gray);
    padding: 14px 0;
}

.bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    opacity: 0.95;
    display: flex;
    align-items: center;
    height: 40px;
}

.bottom-inner p {
    margin: 0;
    font-size: 13px;
    color: white;
    opacity: 0.9;
}

/* responsive adjustments */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-rows: auto;
    }

    .col-company {
        grid-column: 1 / -1;
        order: 4;
        padding-top: 6px;
    }
}

@media (max-width: 720px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 32px 18px;
        gap: 18px;
    }

    .col-company {
        order: 3;
    }

    .footer-bottom {
        margin-top: 18px;
    }

    .f-title {
        font-size: 16px;
    }

    .col-update .f-text {
        font-size: 13px;
    }
}

/* small focus states for accessibility */
a:focus,
button:focus {
    outline: 3px solid rgba(241, 138, 67, 0.16);
    border-radius: 4px;
}

/* Hero */
.contact-hero {
    padding: 44px 18px 26px;
    text-align: center;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.phone-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.phone-ic {
    width: 44px;
    height: 44px;
}

.phone-number .phone-large {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

/* subtext */
.hero-sub {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

/* Form section */
.form-section {
    padding: 34px 18px 80px;
}

.form-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Heading */
.form-heading {
    margin: 0 0 18px;
    margin-bottom: 2rem;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}

/* Grid rows */
.contact-form {
    display: block;
}

.row {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0;
}

.field.small {
    flex: 0 0 180px;
}

.field.full {
    width: 100%;
    margin-bottom: 14px;
}

/* labels */
.label-text {
    font-size: 13px;
    color: var(--navy);
    font-weight: 600;
}

.req {
    color: var(--accent);
    font-weight: 700;
    margin-left: 4px;
}

/* inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    background: #f3f6f9;
    border: 1px solid rgba(18, 59, 90, 0.08);
    padding: 11px 12px;
    border-radius: 3px;
    font-size: 14px;
    color: var(--navy);
    outline: none;
    transition: box-shadow .12s ease, border-color .12s ease;
}

select {
    height: 42px;
    -webkit-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.35) 50%), linear-gradient(135deg, rgba(0, 0, 0, 0.35) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(18, 59, 90, 0.18);
    box-shadow: 0 6px 18px rgba(18, 59, 90, 0.04);
}

/* error */
.error {
    color: #b83b2d;
    font-size: 13px;
    min-height: 18px;
}

/* submit */
.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.btn-submit {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 36px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.06);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Toast success */
.toast {
    position: fixed;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    background: white;
    color: var(--navy);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(18, 59, 90, 0.18);
    max-width: 420px;
    width: 90%;
    z-index: 1200;
    padding: 18px;
}

.toast-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 880px) {
    .row {
        flex-direction: column;
    }

    .field.small {
        flex: 1 1 100%;
    }

    .form-heading {
        text-align: center;
    }

    .form-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    .banner .banner-window{
        background: #083355;
    }

    .banner .banner-window img{
        display: none;
    }

    .content-block{
        text-align: center;
    }
    
    .phone-number .phone-large {
        font-size: 22px;
    }

    .phone-wrap {
        gap: 10px;
    }

    .hero-sub {
        padding: 0 8px;
        font-size: 13px;
    }
}

/* Additional responsive styles for full responsiveness */

@media (max-width: 1024px) {
    .layout {
        width: 100%;
        padding: 0 1rem;
    }

    header nav ul {
        gap: 1rem;
    }

    header nav a {
        font-size: 16px;
    }

    .buttons {
        gap: 0.5rem;
    }

    .buttons a {
        padding: 0.8rem 1.5rem;
        font-size: 18px;
    }

    .banner-window .layout .details h1 {
        font-size: 40px;
    }

    .banner-window .layout .details h3 {
        font-size: 22px;
    }

    .banner-window .layout .details p {
        font-size: 14px;
    }

    .services-section {
        padding: 40px 1rem;
    }

    .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .network-section .inner {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }

    .right-col {
        padding-left: 20px;
    }

    .stat-card {
        padding: 18px;
        gap: 14px;
    }

    .partners-inner {
        padding: 12px 1rem;
    }

    .p-track {
        gap: 28px;
    }

    .testimonial-panel {
        padding: 40px 1rem;
    }

    .t-title {
        font-size: 24px;
    }

    .quote {
        font-size: 16px;
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        padding: 40px 1rem;
    }

    .col-company {
        order: 2;
    }

    .contact-hero {
        padding: 30px 1rem 20px;
    }

    .form-section {
        padding: 30px 1rem 60px;
    }

    .row {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .layout {
        width: 100%;
        padding: 1rem;
    }

    header .layout {
        padding: 1rem;
    }

    header nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    header nav a {
        font-size: 14px;
    }

    .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .buttons a {
        padding: 0.8rem 1.5rem;
        font-size: 16px;
    }

    .banner-window .layout .details {
        width: 90%;
    }

    .banner-window .layout .details h1 {
        font-size: 32px;
    }

    .banner-window .layout .details h3 {
        font-size: 20px;
    }

    .banner-window .layout .details p {
        font-size: 13px;
    }

    .services-section {
        padding: 30px 1rem;
    }

    .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .network-section .inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 1rem;
    }

    .right-col {
        padding-left: 0;
    }

    .stat-card {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .partners-inner {
        padding: 12px 1rem;
    }

    .p-track {
        gap: 24px;
    }

    .testimonial-panel {
        padding: 30px 1rem;
    }

    .t-title {
        font-size: 22px;
    }

    .quote {
        font-size: 15px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 30px 1rem;
    }

    .col-company {
        order: 1;
    }

    .contact-hero {
        padding: 20px 1rem 15px;
    }

    .form-section {
        padding: 20px 1rem 50px;
    }

    .row {
        gap: 12px;
    }

    .site-footer .col-links {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .banner{
        height: 300px;
    }
    .banner-window .layout{
        height: 57%;
    }

    .layout {
        width: 100%;
        padding: 1rem;
    }

    header img {
        width: 120px;
    }

    header nav ul {
        gap: 0.5rem;
    }

    header nav a {
        font-size: 14px;
    }

    .buttons {
        gap: 0.5rem;
    }

    .buttons a {
        padding: 0.7rem 1.2rem;
        font-size: 14px;
    }

    .banner-window .layout .details {
        width: 100%;
    }

    .banner-window .layout .details h1 {
        font-size: 28px;
    }

    .banner-window .layout .details h3 {
        font-size: 18px;
    }

    .banner-window .layout .details p {
        font-size: 12px;
    }

    .services-section {
        padding: 20px 0.5rem;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 0.5rem;
    }

    .service-card img {
        width: 60px;
    }

    .title {
        font-size: 16px;
    }

    .network-section .inner {
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 24px;
    }

    .partners-carousel {
        gap: 8px;
    }

    .p-track {
        gap: 16px;
    }

    .p-item img {
        height: 36px;
    }

    .testimonial-panel {
        padding: 20px 0.5rem;
    }

    .t-title {
        font-size: 20px;
    }

    .quote {
        font-size: 15px;
    }

    .footer-inner {
        padding: 20px 0.5rem;
    }

    .brand img {
        width: 150px;
    }

    .contact-hero {
        padding: 15px 0.5rem 10px;
    }

    .phone-number .phone-large {
        font-size: 20px;
    }

    .form-section {
        padding: 15px 0.5rem 40px;
    }

    .form-inner {
        max-width: 100%;
    }
}

.swiper {
    width: 100%;
}

/* Thank You Page Styles */
.thank-you-page {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content h1 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.thank-you-content .button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thank-you-content .button:hover {
    background-color: var(--secondary-color);
}

/* Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 36px;
    }

    .thank-you-content p {
        font-size: 16px;
    }

    .thank-you-content .button {
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .thank-you-content h1 {
        font-size: 28px;
    }

    .thank-you-content p {
        font-size: 14px;
    }
}