/* Variables */


:root {
    --primaryColor: #6dc7ff;
    --secondaryColor: #b388ff;
    --darkBg: #050816;
    --darkBgSoft: #0a1022;
    --surfaceColor: #ffffff;
    --surfaceMuted: #f5f9ff;
    --textColor: #0d1326;
    --mutedText: #5f6c8f;
    --borderColor: rgba(109, 199, 255, 0.2);
}


/* General Styles */

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    position: relative;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a,
button {
    display: inline-block;
    font: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

img,
svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

section > div > div {
    position: relative;
    z-index: 9;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.overlay {
    position: relative;
    color: #fff;
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background: linear-gradient(
        to right,
        rgba(17, 103, 92, 0.95),
        rgba(28, 81, 150, 0.75)
    );
}

.overlay h2::before {
    background-color: #fff;
}

.btn {
    padding: 0.75rem 2rem;
    margin: 1rem 0 0;
    background: var(--primaryColor);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--primaryColor);
    border-radius: 10px;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
    transition: 0.25s ease;
    will-change: transform;
}

.btn:hover {
    background-color: transparent;
    color: var(--primaryColor);
    border: 2px solid var(--primaryColor);
}

.image-shadow {
    filter: drop-shadow(4px 8px 8px rgba(3, 166, 150, 0.5));
}

.anchor {
    position: absolute;
    top: -60px;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

h1 {
    font-size: 3rem;
}

h2 {
    position: relative;
    font-size: 2.5rem;
    margin: 0 0 1.5em;
    text-transform: capitalize;
}

h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.5em;
    width: 1.5em;
    height: 3px;
    border-radius: 5px;
    transform: translateX(-50%);
    background-color: var(--primaryColor);
}

h2.left::before {
    left: 0;
    transform: none;
}

h3 {
    font-size: 2rem;
    margin: 0 0 0.75rem;
}

h4 {
    font-size: 1.5rem;
    margin: 0 0 0.5em;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 1.25rem;
}

/* Navigation Bar */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--primaryColor);
    z-index: 999;
}

.nav-container {
    position: relative;
    padding: 0.5rem 0;
    background-color: #080808;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    width: 86px;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem 2rem;
    list-style: none;
}

.nav-link {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.2s ease;
    transform: translateY(2px);
    background-color: transparent;
    border: none;
}

.nav-link:hover,
.nav-list li.active > .nav-link {
    color: var(--primaryColor);
}

.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    margin-top: 5px;
    background: var(--primaryColor);
    transition: width 0.5s;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
}

.nav-link:hover:after,
.nav-list li.active > .nav-link::after {
    width: 100%;
}

/* Hamburger */

.hamburger {
    display: none;
}

.hamburger {
    width: 28px;
    height: 32px;
    margin-top: 10px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primaryColor);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 8px;
}

.hamburger span:nth-child(4) {
    top: 16px;
}

header.open .hamburger span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

header.open .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

header.open .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header.open .hamburger span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* Hero Section */

.hero-section {
    position: relative;
    background: url(../images/other-bg.webp) center no-repeat;
    background-size: cover;
    text-align: left;
}

body:not(.homepage) .hero-section {
    padding-top: 10rem;
}

.homepage .hero-section {
    display: flex;
    align-items: center;
    min-height: 75vh;
    margin-top: 50px;
}

.homepage .hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../images/wave.svg) no-repeat bottom/100%;
    z-index: 2;
    pointer-events: none;
}

.homepage .hero-content h1 {
    font-size: 4rem;
    color: var(--primaryColor);
    margin-bottom: 1rem;
}

.homepage .hero-content h1 span {
    color: var(--secondaryColor);
}

.homepage .hero-content h4 {
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 720px;
    color: #fff;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* About Section */

.about-section {
    padding-top: 2rem;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem 4rem;
}

.about > div {
    flex: 1 1 0;
}

/* Service Section */

.service-section {
    position: relative;
    width: 100%;
    color: #fff;
    background: url(../images/services-bg.webp) no-repeat center/cover;
    background-attachment: fixed;
}

.service-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-content h2 {
    position: relative;
    text-align: center;
    color: #fff;
}

.services {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0 0;
    margin-bottom: 2rem;
}

.services > div {
    flex: 1 1 calc(33.33% - 4rem);
    width: calc(33.33% - 4rem);
    max-width: 450px;
}

.industries .services > div {
    flex: 1 1 calc(50% - 2rem);
    width: calc(50% - 2rem);
}

.services > div h3 {
    text-transform: capitalize;
}

.service-icon {
    fill: var(--primaryColor);
    background-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 1.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services p {
    font-weight: 500;
}

.services a {
    font-size: 1.125rem;
    font-weight: 600;
}

.service-page .service-flex {
    margin-bottom: 2rem;
}

.service-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem 4rem;
    margin: 0 0 8rem;
}

.service-flex > div {
    flex: 1 1 0;
}

.service-2-content .service-flex:last-child {
    margin-bottom: 0;
}

.service-2-content .service-flex:nth-child(even) .service-img {
    order: 1;
}

.service-2-content .service-flex:nth-child(odd) .service-type h2::after {
    right: 0;
    left: unset;
}

.service-type h2 {
    position: relative;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 1em;
}

.service-type h2::before {
    left: 0;
    transform: none;
}

.service-type a {
    font-weight: 700;
    color: var(--primaryColor);
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--primaryColor);
    transition: color 0.25s ease;
}

.service-type a:hover {
    color: var(--secondaryColor);
}

.service-img {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 500px;
    height: auto;
}

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

.service-img::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 100%;
    height: 100%;
    background-color: #e6f6fc;
    z-index: -1;
}

.service-2-content .service-flex:nth-child(even) .service-img::before {
    left: unset;
    right: -5%;
}

/* Why Section */

.why {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.why > .why-img {
    flex: 1 1 40%;
}

.why > .why-text {
    flex: 1 1 60%;
}

.why-text > div {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.why-text > div svg {
    max-width: 30px;
    margin-top: 0.25rem;
    fill: var(--primaryColor);
}

/* Contact Section */

.contact-content {
    position: relative;
    z-index: 2;
}

.social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    margin-top: 2rem;
    list-style: none;
}

.social-list li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    height: 60px;
    background-color: #ecf0f1;
    border: 1px solid #ecf0f1;
    -webkit-transition: background-color 0.25s ease;
    -o-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
}

.social-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.social-list li a svg {
    width: 34px;
    -webkit-transition: fill 0.25s ease;
    -o-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
}

.social-list li:hover {
    background-color: #a8ceff;
}

.social-list li:hover a svg {
    fill: #fff;
}

.contact-us {
    margin-top: 2rem;
}

.contact-us-form {
    margin-top: 2rem;
}

.contact-us-form form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1rem;
}

.contact-us-form form input,
.contact-us-form form textarea {
    display: block;
    font: inherit;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0.75rem 1.25rem;
    background-color: #ecf0f1;
    color: #000;
    border: 2px solid #ffffff70;
    outline-color: var(--secondaryColor);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.contact-us-form form textarea {
    min-height: 120px;
    max-height: 240px;
    padding: 1rem 1.25rem;
    resize: vertical;
}

.contact-us-form form button {
    width: 100%;
    padding: 1rem;
    background: var(--secondaryColor);
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    border: 2px solid var(--secondaryColor);
    margin-top: 1rem;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    -o-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.contact-us-form form button:hover {
    color: var(--secondaryColor);
    background-color: transparent;
}

.contact-success,
.contact-error {
    display: none;
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
}

.contact-success {
    color: var(--primaryColor);
}

.contact-error {
    color: #c0392b;
}

.contact-error svg {
    display: inline-block;
    fill: var(--primaryColor);
    width: 25px;
    vertical-align: middle;
}

/* Footer  */

footer {
    padding: 50px 0;
    color: #fff;
    background-color: #080808;
    border-top: 1px solid #fff;
}

.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem 3rem;
}

.footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 1rem 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    -webkit-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
    transition: color 0.25s ease;
}

.footer-list li svg {
    width: 24px;
    margin-right: 10px;
}

.footer-list li p {
    margin-bottom: 0;
}

.footer-list li:hover {
    color: var(--primaryColor);
}

footer .social-list {
    margin-top: 1rem;
}

footer .social-list li {
    width: 36px;
    height: 36px;
}

footer .social-list li a svg {
    width: 26px;
}

.copyright {
    margin-top: 25px;
}

.copyright p {
    font-size: 0.875rem;
    padding: 15px 0;
    border-top: 1px solid #a0a0a0;
    text-align: center;
}

/* Media Queries */

@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    /* Service */

    .services {
        flex-wrap: wrap;
    }

    .services > div {
        flex: 1 1 calc(50% - 2rem);
        width: calc(50% - 2rem);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Typography */

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    /* Navigation Bar */

    .hamburger {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1.25rem 0;
        background-color: #080808;
        transform: translateY(-100%);
        transition: transform 0.5s;
        text-align: center;
        z-index: -1;
    }

    header.open .nav-list {
        transform: translateY(1px);
        box-shadow: 0 25px 34px 5px rgba(0, 0, 0, 0.06);
    }

    header.active .nav-list {
        left: -100%;
    }

    /* Hero Section */

    body:not(.homepage) .hero-section {
        padding-top: 8rem;
    }

    .homepage .hero-content h1 {
        font-size: 3.5rem;
    }

    /* About Section */

    .about {
        flex-direction: column;
    }

    /* Service Section */

    .service-flex {
        flex-direction: column;
        margin: 0 0 4rem;
    }

    .service-2-content .service-flex:nth-child(even) .service-img,
    .service-img {
        order: 2;
    }

    .service-2-content .service-flex:nth-child(odd) .service-type,
    .service-2-content .service-flex:nth-child(odd) .service-type h2 {
        text-align: left;
    }

    .service-2-content .service-flex:nth-child(odd) .service-type h2::after {
        right: unset;
        left: 0;
    }

    /* Why Section */

    .why {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    /* Hero Section */

    .homepage .hero-content h1 {
        font-size: 2.75rem;
    }

    /* Service Section */

    .services {
        flex-direction: column;
    }

    .services > div,
    .industries .services > div {
        flex: 1 1 100%;
        width: 100%;
    }

    .service-img img {
        width: 100%;
        max-width: 450px;
    }

    /* Footer  */

    .footer-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .footer-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    .btn {
        font-size: 1rem;
    }

    /* Typography */

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    h6 {
        font-size: 1rem;
    }

    .logo {
        width: 80px;
    }

    /* Hero Section */

    .homepage .hero-content h1 {
        font-size: 2rem;
    }

    .homepage .hero-content h4 {
        font-size: 1rem;
    }

    /* Contact Section */

    .contact-us-form form .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}


/* 2026 refresh */
body {
    color: var(--textColor);
    background:
        radial-gradient(circle at top left, rgba(109, 199, 255, 0.12), transparent 34%),
        radial-gradient(circle at top right, rgba(179, 136, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);
}

body.no-scroll {
    overflow: hidden;
}

p {
    color: var(--mutedText);
}

header {
    border-bottom: 1px solid rgba(109, 199, 255, 0.18);
}

.nav-container {
    background: rgba(5, 8, 22, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.logo {
    width: 92px;
}

.btn {
    background: linear-gradient(135deg, var(--primaryColor), var(--secondaryColor));
    border: 0;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(91, 159, 255, 0.28);
    text-shadow: none;
    color: #06111f;
    font-weight: 700;
    letter-spacing: 0.02em;
    transform: translateY(0);
}

.btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #7fd1ff, #c3a3ff);
    border: 0;
    transform: translateY(-2px);
}

.btn.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: none;
}

.btn.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.homepage .hero-section {
    min-height: 86vh;
    margin-top: 34px;
}

.hero-section::before {
    background:
        linear-gradient(130deg, rgba(5, 8, 22, 0.82), rgba(10, 16, 34, 0.72)),
        radial-gradient(circle at top right, rgba(109,199,255,0.18), transparent 30%);
}

.hero-content {
    max-width: 760px;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(10,16,34,0.5), rgba(10,16,34,0.22));
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 24px 70px rgba(4, 8, 20, 0.35);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #eaf5ff;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.homepage .hero-content h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.02;
    color: #f8fbff;
}

.homepage .hero-content h1 span {
    color: var(--primaryColor);
}

.homepage .hero-content h4 {
    margin-bottom: 1rem;
    color: #e8efff;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

.hero-intro,
.page-hero-intro {
    max-width: 56ch;
    color: rgba(236, 243, 255, 0.88);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
    list-style: none;
}

.hero-trust-list li {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #f4f7ff;
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 0.95rem;
}

.about,
.why,
.cta-strip-content {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(109, 199, 255, 0.15);
    box-shadow: 0 20px 60px rgba(31, 44, 86, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-img img,
.why-img img,
.service-img img {
    border-radius: 24px;
}

.about-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
    list-style: none;
}

.about-points li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--textColor);
    font-weight: 600;
}

.about-points li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primaryColor), var(--secondaryColor));
}

.service-section {
    background-attachment: scroll;
}

.overlay::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(6, 10, 28, 0.92), rgba(18, 44, 96, 0.8));
}

.service-lead {
    max-width: 42rem;
    margin: 0 auto 1rem;
    color: rgba(245, 248, 255, 0.88);
}

.services > div {
    padding: 2rem 1.4rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.services > div:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(109, 199, 255, 0.35);
}

.service-icon {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,246,255,0.84));
    box-shadow: 0 12px 30px rgba(40, 74, 145, 0.16);
}

.service-section-2 .service-flex {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(109, 199, 255, 0.15);
    box-shadow: 0 20px 60px rgba(31, 44, 86, 0.08);
}

.service-type p {
    margin-bottom: 0;
}

.service-img::before {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(109,199,255,0.22), rgba(179,136,255,0.2));
}

.why-text > div {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(245, 249, 255, 0.9);
    border: 1px solid rgba(109, 199, 255, 0.15);
}

.contact-content {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(109, 199, 255, 0.15);
    box-shadow: 0 20px 60px rgba(31, 44, 86, 0.08);
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 2rem;
    align-items: start;
}

.social-list li {
    height: 72px;
    border-radius: 18px;
    background-color: rgba(245, 249, 255, 0.92);
    border: 1px solid rgba(109, 199, 255, 0.18);
}

.social-list li:hover {
    background-color: #d9ecff;
}

.contact-us {
    margin-top: 0;
}

.contact-us-form {
    margin-top: 0;
    padding: 1.2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(248,251,255,0.95), rgba(241,246,255,0.94));
    border: 1px solid rgba(109, 199, 255, 0.14);
}

.contact-us-form form input,
.contact-us-form form textarea {
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(109, 199, 255, 0.18);
}

.contact-us-form form button {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primaryColor), var(--secondaryColor));
    color: #06111f;
    font-weight: 700;
}

.contact-us-form form button:hover {
    background: linear-gradient(135deg, #7fd1ff, #c3a3ff);
    color: #06111f;
}

.cta-strip {
    padding-top: 0;
}

.cta-strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

footer {
    background: linear-gradient(180deg, #060915, #04070f);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-list li:hover,
.colored-text {
    color: var(--primaryColor);
}

@media (max-width: 992px) {
    .hero-content {
        padding: 1.5rem;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .cta-strip-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

    .about,
    .why,
    .contact-content,
    .service-section-2 .service-flex,
    .cta-strip-content {
        padding: 1.35rem;
        border-radius: 22px;
    }

    .hero-trust-list li {
        width: 100%;
    }

    .contact-us-form {
        padding: 1rem;
    }
}
