*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tropiline */
@font-face {
    font-family: 'TropilineRegula';
    src: url('../fonts/tropline/Tropiline-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TropilineSemiBold';
    src: url('../fonts/tropline/Tropiline-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TropilineBold';
    src: url('../fonts/tropline/Tropiline-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {


    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Tropiline', serif;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --primary: #2563eb;
    --secondary: #0f172a;
    --text: #1e293b;
    --bg: #ffffff;
    --gray: #64748b;
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
}

input:focus-visible {
    border: none;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

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

button {
    cursor: pointer;
    background: none;
}

.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 16px;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

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

.hidden {
    display: none;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.fade {
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 90px;
    z-index: 999;
}

/* Header */
.site-header {
    background: transparent;
    padding: 0px 0;
    margin: 0 auto;
}

.site-header {
    transition: background-color 0.3s ease;
}

.site-header.scroll_head {
    background-color: rgb(255 255 255 / 50%);
    backdrop-filter: blur(6px);
}

.site-header.scroll_head .nav a {
    color: rgb(0 0 0 / 70%);
}

.site-header.scroll_head .nav a:hover {
    color: rgb(0 0 0 / 100%);
}

.header-container {
    max-width: 1680px;
    margin: auto;
    padding: 0 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Logo */
.logo {
    color: #fff;
}

.logo img {
    height: 31px;
    width: auto;
    max-width: 165px;
    object-fit: cover;
}

.logo span {
    font-size: 22px;
    font-weight: 600;
}

.logo .bold {
    font-weight: 800;
}

.form-Chips .chip.active {
    background: #fff;
    color: #000;
    cursor: pointer;
}

.logo small {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.error-message {
    display: none;
}

/* Nav */
.nav {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 130px;
}

.nav a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.28px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Proxima Nova";
}

/* Right */
.header-actions {
    display: flex;
    align-items: center;
    gap: 72px;
}

.socials {
    display: flex;
    gap: 8px;
}

.socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.scroll_head .socials a {
    filter: brightness(0);
}

.socials.mob-socials {
    display: none;
}

.btn-quote {
    background: #ed1c24;
    color: #fff;
    padding: 17px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-family: "Proxima Nova";
    line-height: 1.1;
    letter-spacing: -0.28px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

/* =====================
   HAMBURGER
   ===================== */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
}

.mob-actions {
    display: none;
}

.close-btn {
    display: none;
}

.chatLink a {
    height: 55px;
    width: 55px;
    position: fixed;
    background: #25D366;
    top: auto;
    bottom: 50px;
    right: 25px;
    box-shadow: none;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.chatLink a img {
    width: 24px;
}

.dropdown {
    width: 100%;
    position: relative;

}

.dropdown-btn {
    width: 100%;
    padding: 12px 30px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    font-size: 12px;
    border-radius: 50px;
    font-weight: 600;
    /* text-transform: uppercase; */
}

.arrow {
    transition: 0.3s ease;
}

/* Dropdown Menu */
.dropdown-list {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: all 0.5s ease;
}

.dropdown-list li {
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.dropdown-list li:hover {
    background: #f2f2f2;
}

/* Active State */
.dropdown.active .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


span.arrow {
    position: absolute;
    right: 30px;
}

span.arrow:before {
    position: absolute;
    content: "";
    background: #3D424A;
    height: 10px;
    width: 1.4px;
    rotate: deg(180deg);
    transform: rotate(-45deg);
    right: 5px;
    transition: all 0.5s ease;
}

span.arrow:after {
    position: absolute;
    content: "";
    background: #3D424A;
    height: 10px;
    width: 1.4px;
    rotate: deg(180deg);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.dropdown.active span.arrow:before {
    transform: rotate(-135deg);

}

.dropdown.active span.arrow:after {
    transform: rotate(135deg);
}

.container {
    max-width: 1680px;
    width: 100%;
    margin: auto;
    padding: 0;

}

.header-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 100px;
}

.label {
    color: #151515;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.28px;
    text-transform: uppercase;
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid rgba(2, 2, 2, 0.20);
    width: fit-content;
}

.title {
    color: #2E3A46;
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.44px;
    font-family: 'TropilineRegula';
    margin: 0;
}

.award-section {
    background: #F9F9F9;
    padding: 120px 84px;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    gap: 33px;
    /* justify-content: center; */
    /* align-items: center; */
    width: fit-content;
}

.award-card {
    padding: 41px;
    display: flex;
    border: 1px solid rgba(27, 29, 30, 0.10);
    opacity: 0.9974;
    background: #FFF;
    gap: 20px;
    justify-content: space-between;
    width: 445px;

}

.award-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.award-brand {
    color: #737373;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.28px;
    margin-bottom: 10px;
    display: block;
}

.award-title {
    color: #151515;
    font-family: 'TropilineRegula';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.48px;
}

.award-year {
    color: #737373;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.28px;
    margin: 0;
}

.award-card-img img {
    height: 146px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.5);
}

.nmacc .award-card-img img {
    transform: scale(1.3);
}

.input-fields input::placeholder {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
}

.form-option {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.form-option span {
    color: #737373;
    font-family: "Proxima Nova";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -0.24px;
    text-transform: capitalize;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    height: 40px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.form-option span.active {
    border-radius: 100px;
    border: 1px solid rgba(31, 31, 31, 0.60);
    background: #FFF;
}

.form-Chips span.active {
    background: #fff;
    color: #000;
}

.error {
    border: 1px solid #ED1C24;
    background: #ed1c2426 !important;
}

.thankyou {
    background: rgba(76, 175, 80, 0.5);
    border: 2px solid rgba(76, 175, 80, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    opacity: 0;
    visibility: hidden;
}

.thankyou span {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);

}

.thankyou h2 {
    font-family: 'TropilineRegula';
    font-size: 26px;
}

.thankyou p {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.28px;

    font-family: "Proxima Nova";
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   MOBILE STYLES
   ===================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* .nav,
    .header-actions {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: transparent;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: none;
    }

    /* Show menu when checked */
    #menu-toggle:checked~.nav,
    #menu-toggle:checked~.header-actions {
        display: flex;
    }

    */ .header-container {
        position: relative;
    }

    .btn-quote {
        margin-top: 10px;
    }
}

/* HERO */
.hero {
    min-height: 100%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    /* content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1; */
    /* background: linear-gradient(135deg,
            #3b82f6 0%,
            #6366f1 20%,
            #1e40af 40%,
            #0ea5a5 60%,
            #020617 85%,
            #000000 100%); */
}

.hero-container {
    max-width: 1680px;
    margin: auto;
    padding: 60px 0px;
    display: grid;
    grid-template-columns: 1.1fr 0.5fr;
    gap: 40px;
    align-items: self-start;
    position: absolute;
    top: 10%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

/* LEFT */
.badge {
    display: inline-block;
    background: #a855f7;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(26px, 5.5vw, 84px);
    line-height: clamp(32px, 6vw, 90px);
    font-family: 'TropilineRegula';
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1.68px;
}

.price {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.48px;
    color: #9CDEFF;
    display: flex;
    flex-direction: column;
    max-width: fit-content;
    padding: 30px 60px;
    border-radius: 100px;
    gap: 20px;
    margin-top: 60px;
    font-family: 'TropilineRegula';
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(0); */
    background: rgb(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);

}

.price span {
    color: #3AF8CC;
    font-family: 'TropilineRegula';
    font-size: 84px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: -3.36px;
}



.desc {
    color: #ffffff;
    font-size: clamp(16px, 2vw, 24px);
    line-height: clamp(24px, 2.6vw, 32px);
    letter-spacing: -0.2px;
    max-width: 420px;
    margin: 20px 0 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #ed1c24;
    color: #fff;
}

.btn-red {
    background: #ed1c24;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.28px;
    text-transform: uppercase;
    padding: 0 48px;
    width: fit-content;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 12px;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    border-radius: 100px;
    padding: 0 68px;
    display: flex;
    align-items: center;
}

.btn-red,
.btn-outline,
.pricing-btn {
    height: 70px;
}

/* IMAGE */
.hero-image img {
    width: 100%;
    max-width: 420px;
    margin: auto;
    display: block;
    z-index: 3;
}

/* FORM */
.hero-form {
    background: rgb(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: 0px;
}

.hero-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 1px;
    font-family: 'TropilineRegula';
}

.hero-form input,
.hero-form select,
.select-trigger,
.hero-form button {
    width: 100%;
    padding: 0px 30px;
    margin-bottom: 10px;
    border-radius: 50px;
    background: transparent;
    color: rgb(255, 255, 255, 0.5);
    font-size: 16px;
    color: #fff;
    border-radius: 100px;
    background: linear-gradient(92deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.20) 100.82%);
    backdrop-filter: blur(35px);
    height: 60px;
    text-transform: capitalize;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
}

.hero-form input:focus-visible,
.hero-form textarea:focus-visible {
    border: none;
    outline: none;
}

.hero-form button {
    width: 100%;
    margin-top: 10px;
    padding: 0px 30px;
    border-radius: 50px;
    background: #ed1c24;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -0.28px;
    text-transform: uppercase;
}

.input-fields .iti {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.input-fields .iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
    margin-left: 8px;
    margin-right: 15px;
}

.input-fields .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

.input-fields .iti__flag-box,
.input-fields .iti__country-name {
    margin-right: 6px;
    color: #000;
}

.input-fields .iti__arrow {
    border-top: none;
    position: relative;
    top: -6px;
    right: -2px;

}

.input-fields .iti__arrow--up {
    border-top: none;
    border-bottom: none;
    ;
}

.input-fields .iti__arrow:before {
    position: absolute;
    content: '';
    height: 10px;
    width: 1px;
    background-color: #fff;
    right: -8px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.input-fields .iti__arrow:after {
    position: absolute;
    content: '';
    position: absolute;
    content: '';
    height: 10px;
    width: 1px;
    background-color: #fff;
    transform: rotate(-45deg);
    transition: all 0.5s ease;

}

.input-fields .iti__arrow.iti__arrow--up:before {
    transform: rotate(135deg);
}

.input-fields .iti__arrow.iti__arrow--up:after {
    transform: rotate(-135deg);
}

.input-fields .iti--allow-dropdown input {
    padding-left: 120px !important;
}

.input-fields .iti--allow-dropdown .iti__flag-container,
.input-fields .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0;
    margin: 16px 0;
    border-right: 1px solid #fff;
}

.form-fields .iti {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.form-fields .iti--separate-dial-code .iti__selected-flag {
    background-color: #06000000;
    margin-left: 9px;
    padding-right: 20px;
    border-right: 1px solid rgb(115 115 115 / 30%);
}

.form-fields .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

.form-fields .iti__flag-box,
.form-fields .iti__country-name {
    margin-right: 6px;
    color: #000;
}

.form-fields .iti__arrow {
    border-top: none;
    position: relative;
    top: -4px;
    right: -2px;

}

.form-fields .iti__arrow--up {
    border-top: none;
    border-bottom: none;
    ;
}

.form-fields .iti__arrow:before {
    position: absolute;
    content: '';
    height: 10px;
    width: 1px;
    background-color: #737373;
    right: -8px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.form-fields .iti__arrow:after {
    position: absolute;
    content: '';
    position: absolute;
    content: '';
    height: 10px;
    width: 1px;
    background-color: #737373;
    transform: rotate(-45deg);
    transition: all 0.5s ease;

}

.form-fields .iti__arrow.iti__arrow--up:before {
    transform: rotate(135deg);
}

.form-fields .iti__arrow.iti__arrow--up:after {
    transform: rotate(-135deg);
}

.form-fields .iti--allow-dropdown input {
    padding-left: 120px !important;
    text-transform: uppercase;
}

.form-fields .iti--allow-dropdown .iti__flag-container,
.form-fields .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0;
    margin: 16px 0;
    border-right: 1px solid #fff;
}

.form-Chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-Chips span {
    display: flex;
    height: 40px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.10);
    color: #FFF;
    font-family: 'TropilineRegula';
    font-size: 14px;
    font-style: normal;
    /* font-weight: 600; */
    line-height: 1;
    letter-spacing: 0;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .price span {
        font-size: 32px;
    }
}

/* SECTION */
.trust-section {
    padding: 80px 0 0;
}

.trust-container {
    max-width: 1680px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: self-start;
}

.trust-container .btn-primary {
    margin-top: 30%;
}

/* LEFT */
.pill {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 24px;
}

.trust-left h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.trust-desc {
    font-size: 15px;
    color: #666;
    max-width: 480px;
    line-height: 1.6;
}

.trust-right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

/* RIGHT */
.trust-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.trust-right p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #ef1c25;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

/* STATS */
.stats {
    margin-top: 80px;
    border-top: 1px solid #eee;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h4 {
    font-size: 34px;
    margin-bottom: 10px;
}

.stat-item span {
    font-size: 11px;
    letter-spacing: 0.8px;
    color: #666;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .trust-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .trust-left h2 {
        font-size: 32px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* SECTION */
.delivery {
    padding: 100px 20px;
}

.delivery-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* PILL */
.pill {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

/* HEADING */
.delivery h2 {
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.3;
    margin-bottom: 80px;
}

/* GRID */
.issues {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ITEM */
.issue {
    max-width: 240px;
    margin: auto;
}

.issue h4 {
    font-size: 16px;
    margin: 20px 0 10px;
    text-align: left;
}

.issue p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* ICON BASE */
.icon {
    width: 80px;
    height: 80px;
    position: relative;
}

.icon span {
    position: absolute;
    border: 1px solid #999;
}

/* ICON VARIANTS */
.icon span:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
}

.icon span:nth-child(2) {
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
}

.icon span:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
}

/* Circle */
.icon.circle span {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

/* Stack */
.icon.stack span:nth-child(1) {
    width: 50px;
    height: 30px;
    top: 10px;
    left: 15px;
}

.icon.stack span:nth-child(2) {
    width: 50px;
    height: 30px;
    bottom: 10px;
    left: 15px;
}

/* Cross */
.icon.cross span:nth-child(1) {
    width: 60px;
    height: 1px;
    top: 40px;
    left: 10px;
}

.icon.cross span:nth-child(2) {
    width: 1px;
    height: 60px;
    top: 10px;
    left: 40px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .issues {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .delivery h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .issues {
        grid-template-columns: 1fr;
    }

    .delivery h2 {
        font-size: 28px;
    }
}

/* SECTION */
.process {
    background: #f2f7ff;
    padding: 80px 0;
}

.process-container {
    max-width: 1680px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.pill {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #d5ddea;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 24px;
}

.process-content h2 {
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.25;
    margin-bottom: 20px;
}

.desc {
    color: #000;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.2px;
    max-width: 520px;
    margin-bottom: 60px;
    margin-top: 44px;
}

.desc.banner-desc {
    color: rgba(255, 255, 255, 0.80);
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.48px;
}

/* HIGHLIGHT */
.highlight {
    margin-bottom: 30px;
}

.highlight h3 {
    font-size: 36px;
    font-weight: 500;
}

.highlight span {
    font-size: 14px;
    color: #555;
}

/* BENEFITS */
.benefits h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.benefits li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
}

/* IMAGE */
.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .process-container {
        grid-template-columns: 1fr;
    }

    .process-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .process {
        padding: 60px 0;
    }

    .process-content h2 {
        font-size: 28px;
    }

    .highlight h3 {
        font-size: 30px;
    }
}

/* SECTION */
.services {
    padding: 120px 20px 220px;
    background: #fafafa;
    font-family: Arial, sans-serif;
}

/* HEADER */
.services-header.center {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.services-header.center {
    margin: 0 auto 190px;
    text-align: left;
}

.pill {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 11px;
    margin-bottom: 24px;
}

.services-header h2 {
    font-family: 'TropilineRegula';
    text-align: left;
    color: #2E3A46;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.44px;

}

/* PROCESS */
.process-wrapper {
    position: relative;
    max-width: 1680px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

/* CARD */
.service-card {
    padding: 0 0 0 30px;
    position: relative;
}

.service-cardtext:first-child {
    padding: 0 0px;
}

.service-card:first-child .service-cardtext {
    padding: 0;
}

.service-cardtext {
    padding: 0 0 0 40px;
    margin-top: 65px;
}

.service-card::before {
    content: "";
    border: 1px solid #eee;
    position: absolute;
    height: 100%;
    top: 65px;
    left: 33px;
}

.service-card:first-child:before {
    opacity: 0;
}

/* STEP LABEL */
.step {
    display: block;
    color: #151515;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.48px;
    margin-bottom: 33px;

}

/* DOT */
.dot {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    display: block;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

/* CONTENT */
.service-card h4 {
    font-size: 16px;
    margin-bottom: 50px;
    font-family: 'TropilineRegula';
    color: #151515;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1;
}

.service-card p {
    color: #737373;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.36px;

}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .services-header h2 {
        font-size: 34px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-header h2 {
        font-size: 26px;
    }

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

    .service-card {
        padding-left: 0;
    }
}

.industry {
    padding: 120px 20px 83px;
    text-align: center;
}

.industry-CTA .btn {
    margin: 0 auto;
    margin-top: 80px;
}

.industry-container {
    max-width: 1680px;
    margin: auto;
}

/* PILL */
.pill {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

/* HEADING */
.industry h2 {
    margin-bottom: 100px;
    font-family: 'TropilineRegula';
    color: #2E3A46;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.44px;
}

/* GRID */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
    margin-bottom: 60px;
}

/* CARD */
.industry-card {
    text-align: left;
    position: relative;
}

.industry-card img {
    width: 100%;
    height: 337px;
    object-fit: cover;
    margin-bottom: 18px;
}

.tag {
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 20px;
    margin-bottom: 10px;
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #FFF;
    color: rgba(6, 28, 86, 0.90);
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.28px;
    text-transform: uppercase;
}

.industry-card h4 {
    margin-bottom: 10px;
    font-family: 'TropilineRegula';
    color: #151515;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.48px;
}

.industry-card p {
    color: #737373;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
    padding-right: 25%;
}

/* CTA */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #ed1c24;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.btn-primary:focus-visible,
.btn-primary:active {
    background: #ed1c24;
    border: none;
    outline: none;
    box-shadow: none;
}

.btn.btn-primary:first-child:active {
    background: #ed1c24;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px;
    }

    .industry h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .industry-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .industry {
        padding: 70px 20px;
    }

    .industry h2 {
        font-size: 28px;
        padding: 0 20px;
    }
}


.pricing-section {
    padding: 120px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.pricing-wrapper {
    max-width: 1680px;
    margin: 0 auto;
    text-align: center;
}

.pricing-pill {
    display: inline-block;
    margin-bottom: 70px;
    color: #151515;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    font-variant: all-small-caps;
    letter-spacing: -0.28px;
    border-radius: 20px;
    border: 1px solid rgba(2, 2, 2, 0.20);
    padding: 12px 20px;
}

.pricing-title {
    font-family: 'TropilineRegula';
    color: #2E3A46;
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.44px;
    margin-bottom: 116px;

}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e6e6e6;
    max-width: 1298px;
    width: 100%;
    margin: 0 auto;
}

/* CARD */
.pricing-card {
    padding: 52px;
    border-right: 1px solid #e6e6e6;
    text-align: left;
    background: #fff;

}

.pricing-card:last-child {
    border-right: none;
}

/* TEXT */
.pricing-plan {
    font-family: 'TropilineRegula';
    color: #151515;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 40px;
}

.pricing-amount {
    font-family: 'TropilineRegula';
    color: rgba(21, 21, 21, 0.90);
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.pricing-payment {
    margin-bottom: 30px;
    color: #151515;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pricing-delivery {
    font-size: 12px;
    color: #555;
    margin-bottom: 28px;
    background: #FAFAFA;
    margin: 0 -50px;
    padding: 12px 50px 52px;
    color: rgba(21, 21, 21, 0.60);
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pricing-delivery strong {
    color: rgba(21, 21, 21, 1);
}

/* BUTTONS */
.pricing-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    color: #474747;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -0.28px;
    text-transform: uppercase;
    margin-top: -20px;


}

.pricing-btn--outline {
    border: 1px solid #bbb;
    color: #111;
    background: #fff;
}

.pricing-btn--primary {
    background: #ed1c24;
    color: #fff;
    border: none;
}

/* FEATURES */
.pricing-features h5 {
    color: #151515;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    color: #333;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 24px;
    height: 24px;
    background-image: url('./../imgs/right-mark.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

/* VIEW */
.pricing-view {
    display: inline-block;
    margin-top: 28px;
    font-size: 11px;
    color: #444;
    background: #f3f3f3;
    padding: 10px 18px;
    border-radius: 999px;
}

/* POPULAR */
.pricing-card--popular {
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 100px;
    border: 1px solid #D0D0D0;
    background: #E1FFF7;
    padding: 12px 20px;
    color: #2D2D2D;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.38px;
    text-transform: uppercase;
}

/* ENTERPRISE */
.pricing-card--enterprise {
    background: #fafafa;
}

.pricing-custom {
    font-size: 13px;
    color: #333;
    margin-bottom: 20px;
    font-family: 'TropilineRegula';
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .pricing-title {
        font-size: 28px;
    }

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

    .pricing-card {
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
    }
}

.faq {
    padding: 100px 20px;
}

.faq-container {
    max-width: 1680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}

.pill {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

.faq-left h2 {
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.2;
    font-family: 'TropilineRegula';
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item input {
    display: none;
}

.faq-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 16px;
    cursor: pointer;
    font-family: 'TropilineRegula';
    color: #151515;
    font-weight: 600;
}

.faq-item .icon {
    font-size: 20px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding-bottom: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.faq-item input:checked~.faq-content {
    max-height: 200px;
}

.faq-item input:checked+label .icon {
    content: "–";
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-left h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .faq-left h2 {
        font-size: 28px;
    }
}

.cta-banner {
    padding: 100px 0;
    color: #fff;
    height: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1680px;
    margin: 0 auto;
}

.cta-bannerbgimg {
    position: relative;
}



.cta-banner-content {
    max-width: 1680px;
    margin: auto;
    position: absolute;
    top: 22%;
    left: 7%;

}

.cta-banner h2 {
    margin-bottom: 16px;
    font-family: 'TropilineRegula';
    color: #FFF;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.44px;
}

.cta-banner p {
    margin-bottom: 24px;
    color: #E0E0E0;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.48px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    margin-top: 40px;
}


.btn-primary {
    background: #ef1c25;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 12px;
    text-decoration: none;
}

.btn-outline {
    /* border: 1px solid #fff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 12px;
    text-decoration: none; */
}

.cta-buttons a {
    width: 220px;
    justify-content: center;
}

/* =====================
   FORM SECTION
   ===================== */
.cta-form-wrapper {
    padding: 70px 20px;
}

.cta-form-container {
    max-width: 1680px;
    margin: auto;
    background: rgba(249, 249, 249, 1);
    padding: 120px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
}

/* LEFT */
.pill {
    display: inline-block;
    margin-bottom: 70px;
    color: #151515;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    font-variant: all-small-caps;
    letter-spacing: -0.28px;
    border-radius: 20px;
    border: 1px solid rgba(2, 2, 2, 0.20);
    padding: 12px 20px;
}

.form-left h3 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: 'TropilineRegula';
    font-weight: 600;
    margin-bottom: 120px;
}

.form-left .small {
    color: #555;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    font-family: 'TropilineRegula';
}

.whatsapp {
    text-decoration: underline;
    font-weight: 600;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    color: rgba(71, 71, 71, 1);
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Proxima Nova";
}

/* RIGHT FORM */
form.form-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}


.form-control:focus {
    color: none;
    background-color: unset;
    border-color: unset;
    outline: none;
    box-shadow: none;
}

.form-right input,
.form-right select,
.form-fields textarea {
    padding: 12px 30px;
    border: 1px solid #ddd;
    font-size: 12px;
    border-radius: 50px;
    font-weight: 600;
}

.form-fields textarea.form-control {
    height: 120px;
    border-radius: 32px;
}

textarea.form-control {
    resize: none;
}

.form-right button {
    grid-column: span 2;
    max-width: fit-content;
    padding: 14px 40px;
    background: #ed1c24;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.28px;
    text-transform: uppercase;
}

.form-right input,
.form-right button,
.dropdown-btn {
    height: 70px;
}

#mobilecode::placeholder {
    text-transform: capitalize;
}

.form-fields input::placeholder,
.form-fields textarea::placeholder {
    text-transform: capitalize;


}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .cta-form-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 45px;
    }

    .cta-banner h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .form-fields {
        grid-template-columns: 1fr;
    }

    .form-right button {
        grid-column: span 1;
    }

    .cta-banner h2 {
        font-size: 26px;
    }
}

/* FOOTER */
.footer {
    /* background: radial-gradient(circle at top, #0d47a1, #082567); */
    background: #122A67;
    color: #fff;
    /* padding-top: 70px; */
}

/* CONTAINER */
.footer-container {
    max-width: 1680px;
    margin: auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
    gap: 40px;
}

/* BRAND */
.logo {
    font-size: 26px;
}

.brand p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 18px;
}



/* COLUMNS */
.footer-col h4 {
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.85;
}

.mt {
    margin-top: 20px;
}

.email {
    font-size: 13px;
}

/* NEWSLETTER */
.newsletter .small {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 14px;
}

.newsletter-box {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 6px;
}

.newsletter-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    color: #fff;
    font-size: 12px;
    outline: none;
}

.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-box button {
    background: #ed1c24;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
}

/* BACK TO TOP */
.back-top {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #0d47a1;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1680px;
    margin: auto;
    font-size: 11px;
    opacity: 1;
}

.footer-bottom p {
    color: #FFFFFD;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.footer-bottom p span {
    opacity: 0.4;
    padding-left: 5px;
}

.footer-bottom .links {
    display: flex;
    gap: 16px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom .links a {
    width: 24px;
    height: 24px;
}

a.footer-email {
    color: rgba(255, 255, 255, 0.40);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.hero-form input::placeholder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.custom-select {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

/* Trigger */
.select-trigger {
    padding: 0px 30px;
    border-radius: 50px;
    cursor: pointer;
    background: transparent;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    border-radius: 100px;
    background: linear-gradient(92deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.20) 100.82%);
    backdrop-filter: blur(35px);
}

.select-trigger:before {
    position: absolute;
    content: '';
    height: 10px;
    width: 1px;
    background-color: #fff;
    right: 33px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.select-trigger:after {
    position: absolute;
    content: '';
    position: absolute;
    content: '';
    height: 10px;
    width: 1px;
    right: 40px;
    background-color: #fff;
    transform: rotate(-45deg);
    transition: all 0.5s ease;

}

.open .select-trigger:before {
    transform: rotate(135deg);
}

.open .select-trigger:after {
    transform: rotate(-135deg);
}

/* Arrow */
/* .select-trigger::after {
    content: " ";
    position: absolute;
    border-top: 2px solid rgb(255, 255, 255, 0.5);
    ;
    border-left: 2px solid rgb(255, 255, 255, 0.5);
    ;
    height: 15px;
    width: 15px;
    right: 40px;
    top: 23%;
    rotate: 226deg;
    transform: translateY(-50%);
    font-size: 12px;
    transition: 0.5s;
} */

/* Dropdown list */
.select-options {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;

    border-radius: 6px;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 99;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.hero-form textarea {
    width: 100%;
    padding: 10px 30px;
    margin-bottom: 10px;
    border-radius: 50px;
    background: transparent;
    color: rgb(255, 255, 255, 0.5);
    font-size: 16px;
    color: #fff;
    border-radius: 26px;
    background: linear-gradient(92deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.20) 100.82%);
    backdrop-filter: blur(35px);
    height: 100px;
    text-transform: capitalize;
}

.input-fields,
.textarea-fields {
    position: relative;
}

.input-fields img {
    position: absolute;
    display: flex;
    align-items: center;
    height: 42px;
    width: 42px;
    left: 20px;
    top: 10px;
}

.textarea-fields img {
    position: absolute;
    display: flex;
    align-items: center;
    height: 42px;
    width: 42px;
    left: 20px;
    top: 10px;
}

.textarea-fields textarea::placeholder {
    position: absolute;
    top: 25px;
}

.input-fields input,
.textarea-fields textarea {
    padding-left: 60px !important;
    resize: none;
}

/* Items */
.select-options li {
    padding: 12px 14px;
    cursor: pointer;
    color: #fff;
}

.select-options li:hover {
    color: #fff;
}

/* Open state */
.custom-select.open .select-options {
    max-height: 200px;
    /* 👈 grows slowly */
    opacity: 1;
    background: linear-gradient(62deg, #4ea1fff7, #2b5bfffc);
}

/* .custom-select.open .select-trigger::after {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.5s;
} */

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: #ffd54f;
    /* yellow like your image */
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 18s linear infinite;
}

.marquee-item {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    padding: 0 10px;
    white-space: nowrap;
}

/* Animation */
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-buttons .btn-red {
    display: flex;
    gap: 20px;
    text-transform: uppercase;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.28px;
    text-transform: uppercase;
    padding: 0 48px;
}

.hero-buttons .btn-red img {
    display: none;

}

@media (max-width:1600px) {
    .nav {
        display: flex;
        gap: 40px;
        margin-right: 60px;

    }

    .site-header {
        background: transparent;
        padding: 25px 0px;
    }

    .hero-container {
        max-width: 1440px;
    }

    .hero-content h1 {
        font-size: 50px;
        line-height: 55px;
    }

    .price {
        font-size: 18px;
        padding: 25px 40px;
        gap: 25px;
    }

    .price span {
        font-size: 46px;
        line-height: 24px;
    }

    .desc {
        font-size: 20px;
        line-height: 26px;
    }

    .hero-form {
        padding: 35px;
    }

    .hero-form input,
    .hero-form select {
        padding: 25px 30px;
    }

    .select-trigger {
        padding: 22px 30px;
    }

    .hero-form button {
        padding: 22px 30px;
    }

    .hero-form h3 {
        margin-bottom: 20px;
        line-height: 38px;
    }

    .select-trigger {
        font-size: 16px;

    }



    .industry-container {
        max-width: 1400px;
    }

    .faq-container {
        max-width: 1400px;
    }

    .cta-banner-content {
        max-width: 1400px;
    }

    .footer-container {
        max-width: 1400px;
    }

    .footer-bottom {
        max-width: 1400px;
    }
}

@media screen and (max-width:1440px) {

    .hero-content h1 {
        font-size: 45px;
        line-height: 50px;
    }

    .hero-container {
        max-width: 1330px;
    }

    .price {
        margin-top: 40px;
    }

    .desc {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 28px;
    }

    .price span {
        font-size: 44px;
        line-height: 28px;
    }

    .pricing-title,
    .services-header h2,
    .industry h2,
    .delivery h2 {
        font-size: 36px;
    }

    .pricing-wrapper {
        max-width: 1280px;
    }

    .industry-container {
        max-width: 1280px;
    }

    .faq-container {
        max-width: 1280px;
    }

    .footer-container {
        max-width: 1280px;
    }
}

@media screen and (max-width:1280px) {}