@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.gradient-box {
    position: absolute;
    right: -23vw;
    top: 50%;
    transform: translateY(-50%) rotate(23.85deg);
    width: 62vw;
    height: 165vh;
    background: linear-gradient(23.85deg, rgba(8, 77, 239, 1) 0%, rgba(8, 188, 239, 1) 94%);
    z-index: 1;
}

.gradient-box-secondary-one {
    position: absolute;
    left: -7vw;
    top: 50%;
    transform: translateY(-50%) rotate(23.85deg);

    width: 16vw;
    height: 165vh;

    background: linear-gradient(23.85deg, rgba(8, 77, 239, 1) 0%, rgba(8, 188, 239, 1) 100%);
    filter: blur(50px);
    opacity: 0.2;
    z-index: 1;
}

.gradient-box-secondary-two {
    position: absolute;
    left: 25vw;
    top: 32vh;

    width: 15vw;
    height: 85vh;

    transform: rotate(23.85deg);

    background: linear-gradient(
        23.85deg,
        #084def 0%,
        #08bdef4f 50%,
        #08bdef1f 60%,
        #08bdef00 70%
    );

    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.gradient-box-secondary-three {
    position: absolute;
    right: 12vw;
    top: -15vh;

    width: 20vw;
    height: 80vh;

    transform: rotate(23.85deg);

    background: linear-gradient(
        23.85deg,
        rgba(8, 77, 239, 0.192) 0%,
        rgba(8, 77, 239, 0) 15%,
        rgba(8, 173, 239, 0.664) 40%,
        #ffffff 100%
    );

    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.white-dots-1 {
    position: absolute;
    left: 69vw;
    top: 31vh;

    width: 43px;
    height: 41.17px;
    z-index: 2;
}

.white-dots-2 {
    position: absolute;
    left: 58vw;
    top: 55vh;

    width: 43px;
    height: 41.17px;
    z-index: 2;
}

.black-dots {
    position: absolute;
    left: 47vw;
    top: 79vh;

    width: 43px;
    height: 41.17px;
    z-index: 2;
}

.wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    width: auto;
    margin: 0 auto;
}

.header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: clamp(20px, 6vw, 120px);

    position: relative;
    z-index: 3;
}

.technologies {
    position: relative;
    overflow: hidden;
}

.technologies-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.technologies-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-left .logo-one {
    font-weight: bold;
    font-size: 16px;
    color: #000000;
}

.header-left .logo-two {
    font-weight: bold;
    font-size: 16px;
    color: #084DEF;
}

.header-nav ul {
    display: flex;
    gap: 40px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;

}

.header-nav li,
.header-right span {
    cursor: pointer;
    font-size: 18px;
}

.header-nav ul li {
    position: relative;
    cursor: pointer;
    font-weight: 500;
}

.header-nav ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #084DEF;
    transition: width 0.3s ease;
}

.header-nav ul li:hover:not(.active)::after {
    width: 100%;
}

.header-nav ul li.active::after {
    width: 100%;
}

header .btn a {
    background-color: #084DEF;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

header .btn a:hover {
    background: #08BCEF;
}

header .btn {
    padding: 3px 12px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

header .req-btn {
    padding: 10px 22px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

header .btn:hover {
    background: #ffffff;
    color: #08BCEF;
}

header .req-btn:hover {
    background: #ffffff;
    color: #08BCEF;
}

.hero__actions {
    display: flex;
    gap: 35px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    padding: 12px 28px;      
    border-radius: 30px;      
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;

    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn--primary {
    font-size: 20px;
    background: #084DEF;
    color: #ffffff;
    border-color: #084DEF;
}

.btn--secondary {
    font-size: 20px;
    background: transparent;
    color: #084DEF;
    border-color: #084DEF;
}

.btn--primary:hover {
    background: transparent;
    color: #FF0909;
    border-color: #FF0909;
}

.btn--secondary:hover {
    background: #FF0909;
    color: #ffffff;
    border-color: #FF0909;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(214, 249, 255, 1) 100%
    );
    
    padding-left: max(120px, 120px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-main {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-bottom: 80px;    
    min-height: calc(100vh - 300px);
}

.hero--info {
    max-width: 480px;
}

.hero--info h1 {
    color:#084DEF;
    font-size: 64px;
    font-weight: bold;
}

.hero--info h2 {
    color:#000000;
    font-size: 36px;
    font-weight: bold;
}

.hero--info p {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
}

.drone-img {
    position: absolute;
    left: 48.5vw;
    top: 18vh;
    z-index: 3;
}

.drone-bg-img {
    position: absolute;

    left: 48.5vw;
    top: 17.3vh;

    transform: scale(1.025);
    transform-origin: center;

    z-index: 2;
}

.drone-shadow-img {
    position: absolute;

    left: 40.4vw;
    top: 8.1vh;

    z-index: 1;
}

.header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: clamp(20px, 6vw, 120px);
    padding-right: clamp(20px, 6vw, 120px);

    background: #ffffff;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header--sticky.header--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.header--sticky .btn {
    background: white;
    border: 2px solid #000000;
    color: #000000;
    transition: all 0.3s ease;
}

.header--sticky .btn:hover {
    background: #000000;
    color: #ffffff;
}

.header--sticky .req-btn {
    background: white;
    border: 2px solid #000000;
    color: #000000;
    transition: all 0.3s ease;

}

.header--sticky .req-btn:hover {
    background: #000000;
    color: #ffffff;
}

.header--sticky .header-nav li {
    font-size: 16px;
}

.lang-wrapper {
    position: relative;
    display: inline-block;
}

.lang-btn,
.lang-option {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 3px;

    padding: 5px 14px;
    min-height: 46px;
    border-radius: 30px;
    box-sizing: border-box;
}

.lang-option {
    padding-left: 6px;
    padding-right: 6px;
}

.lang-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-arrow {
    width: 13px;
    height: 8px;
    display: block;
    transition: transform 0.25s ease;
    margin-left: 3px;
}

.lang-wrapper.open .lang-arrow {
    transform: rotate(90deg);
}

.lang-dropdown {
    position: absolute;
    left: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 5px;

    padding-top:5px;

    pointer-events: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 999;
}

.lang-wrapper.open .lang-dropdown {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.services {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;

    background: linear-gradient(38deg, 
        #D6F9FF 0%, 
        #FFFFFF 100%
    );

    background-size: cover;
    background-repeat: no-repeat;
}

.services-dot {
    position: absolute;
    width: 43px;
    height: 41.17px;
    opacity: 1;
    pointer-events: none;
    z-index: 10;
}

.services-dot-left {
    top: 480px; 
    left: clamp(40px, 10vw, 200px);
}

.services-dot-right {
    top: 60px;
    right: clamp(40px, 10vw, 200px);
}

.services-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.services-heading-one,
.services-heading-two {
    font-weight: bold;
    font-size: 36px;
}

.services-heading-three,
.services-heading-four {
    font-weight: bold;
    font-size: 28px;
}

.services-heading-one,
.services-heading-three {
    color: #000000;
}

.services-heading-two,
.services-heading-four {
    color: #084DEF;
}

.services-heading--secondary {
    margin-top: 40px;
    margin-bottom: 40px;
}

.services-cards {
    display: flex;
    gap: clamp(20px, 4vw, 84px);
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.service-card.active {
    border-color: #084DEF;
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(8, 77, 239, 0.25);
}

.service-card {
    flex: 1 1 280px;
    max-width: 380px;

    background: #ffffff;
    border-radius: 41px;
    border: 1px solid #e6f0ff;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;

    cursor: pointer;
    text-decoration: none;
    color: inherit;

    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.service-card-image {
    background: #084DEF;
    height: 20%;
    min-height: 180px;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card-image img {
    max-width: 60%;
    height: auto;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 18px 20px 6px 20px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px 10px 20px;
}

.service-card .read-more {
    font-size: 14px;
    font-weight: 600;
    color: #084DEF;
    margin: 0 20px 20px 20px;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #084DEF;
    box-shadow: 0 18px 40px rgba(8, 77, 239, 0.18);
}

.services-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(20px, 5vw, 80px);
    margin-top: 60px;
    flex-wrap: wrap;
}

.services-grid-left {
    flex: 0 0 320px;
    max-width: 340px;

    display: flex;
    flex-direction: column;
    gap: 22px;

    justify-content: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.benefit-item img {
    width: 24px;
    height: 24px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.services-grid-right {
    flex: 1 1 600px;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-grid-right p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #000;
}

@media (max-width: 900px) {
    .services-grid {
        flex-direction: column;
    }

    .services-grid-left,
    .services-grid-right {
        max-width: 100%;
    }

    .benefit-item h4 {
        font-size: 18px;
    }
}

.technologies {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;

    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(214, 249, 255, 1) 100%
    );

    padding-left: 120px;
}

.technologies-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.new-box {
    position: absolute;
    left: -14vw;
    top: 25%;
    transform: translateY(-50%) rotate(23.85deg);
    width: 62vw;
    height: 165vh;
    background: linear-gradient(23.85deg, rgba(8, 77, 239, 1) 0%, rgba(8, 188, 239, 1) 94%);
    z-index: 1;
}

.new-box-secondary-one {
    position: absolute;
    right: -10vw;
    top: 40%;
    transform: translateY(-50%) rotate(23.85deg);

    width: 16vw;
    height: 165vh;

    background: linear-gradient(23.85deg, rgba(8, 77, 239, 1) 0%, #08bcef 100%);
    filter: blur(50px);
    opacity: 0.2;
    z-index: 1;
}

.new-box-secondary-two {
    position: absolute;
    left: 50vw;
    top: 32vh;

    width: 15vw;
    height: 85vh;

    transform: rotate(23.85deg);

    background: linear-gradient(
        23.85deg,
        #084def 0%,
        #08bdef4f 50%,
        #08bdef1f 60%,
        #08bdef00 70%
    );

    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.new-box-secondary-three {
    position: absolute;
    right: 69vw;
    top: -15vh;

    width: 20vw;
    height: 80vh;

    transform: rotate(23.85deg);

    background: linear-gradient(
        23.85deg,
        rgba(8, 77, 239, 0.192) 0%,
        rgba(8, 77, 239, 0) 15%,
        rgba(8, 173, 239, 0.664) 40%,
        #ffffff 100%
    );

    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.tech-main {
    position: relative;
    z-index: 2;


}

.tech--info {
    position: relative;
    z-index: 3;
    padding-top: 40px;
    max-width: clamp(520px, 40vw, 720px);
}

.tech--info h1 {
    color:#000000;
    font-size: 48px;
    font-weight: bold;
}

.tech--info h2 {
    color:#ffffff;
    font-size: 36px;
    font-weight: bold;
}

.tech--info p {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
}

.tech-main {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tech-main-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tech--info {
    max-width: clamp(520px, 40vw, 720px);
    margin-top: 0;
}

.tech-layout {
    position: absolute;
    top: 50%;
    left: 120px;
    right: clamp(10px, 5vw, 120px);
    transform: translateY(-50%);

    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    align-items: center;
    column-gap: 80px;
}

.tech-drone-wrapper {
    position: relative;
    width: 520px;
    height: 520px;
    pointer-events: none;
    flex-shrink: 0;
}

.tech-drone-bg,
.tech-drone-shadow,
.tech-drone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.tech-drone-bg { width: 90%; }
.tech-drone-shadow { width: 100%; }
.tech-drone {
    width: 100%;
    padding-left: 68px;
    padding-bottom: 16px;
}

.tech-image-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.tech-before-after {
    width: 100%;
    max-width: 410px;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    display: block;
}

@media (max-width: 987px) {
    .tech-image-wrapper {
        display: none;
    }
}

@media (max-width: 1621px) {
    .tech-before-after {
        
        max-height: 100%;
        width: auto;
        height: auto;
        
        max-width: 350px;
    }
}

.tech-main-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.tech-solutions {
    max-width: 560px;
    margin-left: auto;
    margin-right: 75px;
}

.tech-solutions__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
}

.tech-solutions__title--blue {
    color: #084DEF;
}

.tech-solutions__list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-solutions__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.tech-solutions__item2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.tech-solutions__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tech-solutions__list > span {
    display: block;
    margin-left: 30px;
    font-size: 14px;
    line-height: 1.4;
}

.about-us {
    position: relative;
    padding: 60px 40px;
    overflow: hidden;
    text-align: center;
}

.about-us__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.about-us__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.about-us__dots {
    position: absolute;
    width: 43px;
    opacity: 0.8;
    z-index: 3;
}

.about-us__dots--left {
    left: clamp(20px, 5vw, 180px);
    bottom: clamp(10px, 5vw, 80px);
}

.about-us__dots--right {
    right: clamp(20px, 5vw, 180px);
    top: clamp(10px, 5vw, 80px);
}

.about-us__container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
}

.about-us__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-us__title span:last-child {
    color: #08BCEF;
}

.about-us__subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 28px;
}

.about-us__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 18px;
}

.about-us__divider {
    width: min(800px, 100%);
    height: 1px;
    margin: 50px auto;
    background: rgba(255,255,255,0.18);
}

.about-us__cert-title {
    font-size: 44px;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 12px;
}

.about-us__cert-title span {
    color: #fff;
}

.about-us__cert-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.about-us__cert-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 620px);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
}

.about-us__certificate {
    padding-top: 20px;
}

.about-us__cert-text {
    display: flex;
    flex-direction: column;
    gap: 55px;    
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
}

.about-us__cert-image {
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 620px;
}

.about-us__cert-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    transform: scale(1.08);
    transform-origin: center;
    margin: 10px 0;
}

.about-us__cert-caption {
    margin-top: 22px;
    font-size: 15px;
    letter-spacing: 0.4px;
    color: #00d4ff;
    text-transform: uppercase;
}

.about-us__cert-caption {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #00d4ff;
    text-align: center;
}

@media (max-width: 1100px) {
  .about-us__cert-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-us__cert-image {
    justify-self: center;
    align-self: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

  .about-us__certificate {
    padding-top: 20px;
  }

  .about-us__cert-text {
    text-align: center;
    gap: 22px;
  }

  .about-us__cert-image img {
    transform: none;
  }
}

@media (max-width: 1188px) {
    .about-us__dots--left,
    .about-us__dots--right {
        visibility: hidden;
    }
}

.request-quote {
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(214, 249, 255, 1) 100%
    );
    padding: 60px 20px 80px;
}

.request-quote__title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
}

.request-quote__title span {
    color: #084DEF;
}

.request-quote__inner {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.request-quote__form-card {
    flex: 0 0 58%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 40px;
    padding: 32px 40px 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.request-quote__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rq-field label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.rq-field input,
.rq-field textarea {
    width: 100%;
    border: 2px solid #084DEF;
    border-radius: 24px;
    padding: 12px 18px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.rq-field textarea {
    border-radius: 20px;
    resize: none;
    min-height: 170px;
}

.rq-field input::placeholder,
.rq-field textarea::placeholder {
    color: #b4b4b4;
}

.rq-button {
    margin-top: 10px;
    align-self: center;
    padding: 10px 40px;
    border-radius: 24px;
    border: 2px solid #084DEF;
    background: #ffffff;
    color: #084DEF;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.rq-button:hover {
    background: #084DEF;
    color: #ffffff;
}

.request-quote__map-card {
    width: 520px;
    height: 468px;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    flex-shrink: 0;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.request-quote__map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.rq-error {
    margin-top: 4px;
    font-size: 12px;
    color: #d93025;
}

.rq-input--error {
    border-color: #d93025 !important;
}

.footer {
    background: #084DEF;
    color: #ffffff;
    font-size: 14px;
}

.footer-top {
    padding: 32px 0 18px;
}

.footer-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 120px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-brand__logo {
    width: 130px;
    height: auto;
    display: block;
}

.footer-brand__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.footer-brand__text span {
    text-transform: uppercase;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact__name {
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-contact__row {
    margin: 1px 0;
}

.footer-contact__label {
    font-weight: 600;
}

.footer-contact__text,
.footer-contact__link {
    margin-left: 4px;
}

.footer-contact__link {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact__link:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-social__title {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-social__icons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 6px;
}

.footer-social__icon img {
    width: 40px;
    height: 40px;
    display: block;
}

.footer-bottom {
    padding: 4px 0 14px;
    text-align: center;
}

.footer-bottom__line {
    display: block;
    margin: 0 auto 6px;
    margin-bottom: 14px;
    max-width: 720px;
    width: 65%;
    height: auto;
    object-fit: contain;
}

.footer-bottom__text {
    font-size: 12px;
    color: #ffffff;
}

.rq-field--phone .iti {
    width: 100%;
}

.rq-field--phone .iti__flag-container {
    width: 70px;
}

.rq-field--phone .iti--allow-dropdown input {
    padding-left: 80px !important;
}

.rq-error {
    margin-top: 6px;
    font-size: 12px;
    color: #dc2626;
}

.rq-phone--error {
    border-color: #dc2626 !important;
}

.iti input:hover {
    background: white !important;
}

.iti__country-list .iti__search-input {
    border: 1px solid #636363 !important;
    outline: none !important;
    box-shadow: none !important;
}

.iti input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #084DEF !important;
    background: white !important;
}

.iti__selected-flag:hover {
    background-color: transparent !important;
}

.iti__selected-flag,
.iti__selected-flag:hover,
.iti__selected-flag:active,
.iti__selected-flag:focus {
    background-color: transparent !important;
    box-shadow: none !important;
}

.iti__country.iti__highlight {
    background-color: transparent !important;
}

.iti__country:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.iti__search-input,
.iti__search-input:focus {
    border: 2px solid #636363 !important;
    outline: none !important;
    box-shadow: none !important;
}

#rq-address {
    width: 100%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #084DEF;
    border-radius: 24px;
    padding: 12px 18px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

#rq-address::placeholder {
    color: #b4b4b4;
}

.pac-container {
    margin-top: 10px !important;
    border-radius: 20px !important;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 2px #084DEF;

    font-family: inherit;
    overflow: hidden !important;
}

.pac-container:empty {
    display: none;
}

.pac-item {
    padding: 12px 16px;
    font-size: 14px;
}

.pac-item:hover,
.pac-item-query:hover {
    background: rgba(8, 77, 239, 0.1) !important;
}

.pac-item-query {
    font-weight: bold;
    color: #084DEF;
}

.pac-container .pac-logo {
    transform: scale(0.75);
    opacity: 0.8;
}

.pac-container .pac-logo:after {
    background-position: left 20px center !important;
}

div.pac-logo {
    background-position: left 20px center !important;
}

.rq-error {
    margin-top: 4px;
    font-size: 12px;
    color: #d93025;
}

.rq-input--error {
    border-color: #d93025 !important;
}

.rq-counter {
    margin-top: 4px;
    font-size: 12px;
    color: #555;
    text-align: right;
}

.rq-button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.rq-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.checkbox {
  margin-bottom: 14px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkbox:last-child {
  margin-bottom: 0;
}

.checkbox-label {
  cursor: pointer;
  padding-left: 10px;
}

.checkbox-input {
  cursor: pointer;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 4px !important;
  background-color: #fff;
  border: 2px solid #084DEF;
  transition: 300ms;
}

.checkbox-input::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 -960 960 960' stroke='%23FFFFFF' stroke-width='30' fill='%23FFFFFF'%3E%3Cpath d='M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  transition: 300ms;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.checkbox-input:checked {
  background-color: #084DEF;
  border-color: #084DEF;
}

.checkbox-input:checked::after {
  opacity: 1;
}

.checkbox-label {
  cursor: pointer;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}

.checkbox-text-main {
  line-height: 1.3;
}

.checkbox-text-sub {
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.3;
}

.rq-success {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1720px) and (min-width: 1350px) {
    .header .header-right {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .header--sticky .header-right {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .hero--info {
        margin-bottom: 110px;
    }
}

@media (max-width: 1350px) {

    .tech-solutions {
        margin-right: 0px;
    }

    header:not(.header--sticky) {
        display: none !important;
    }

    .header--sticky .header-right {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .header--sticky .lang-wrapper {
        order: 1;
    }

    .header--sticky .req-btn {
        order: 2;
    }

    .hero--info {
        margin-top: 280px;
    }

    .hero {
        padding-left: 70px;
    }

    .gradient-box-secondary-three {
        transform: translateX(60px) rotate(23.85deg);
    }
}

.header-burger {
    display: none;
    width: 32px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;

    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-burger span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 999px;
    background: #000000;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-burger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.header-burger.open span:nth-child(2) {
    opacity: 0;
}
.header-burger.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.header-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;

    z-index: 998;
}

.header-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header-mobile-nav {
    padding: 80px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-mobile-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-mobile-nav ul li {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.header-mobile-nav .req-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1246px) {
    .header,
    .header--sticky {
        grid-template-columns: auto 1fr auto;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-main {
        top: -10vh;
    }

    .header-nav {
        display: none;
    }

    .hero-main {
        padding-top: 75px;
    }

    .header-right {
        justify-self: end;
        display: flex;
        align-items: center;
    }

    .header-right .req-btn,
    .header-right .lang-wrapper {
        display: none;
    }

    .header-burger {
        display: inline-flex;
    }

    .header-mobile-menu {
        display: block;
    }
}

@media (min-width: 1247px) {
    .header-burger {
        display: none;
    }

    .header-mobile-menu {
        display: none;
    }
}

.header-mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 998;

    display: none;
}

.header-mobile-menu.open {
    display: block;
}

.header-mobile-inner {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    padding: 80px 20px 24px;
}

.header-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: #f2f2f2;
    cursor: pointer;

    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.2s ease, transform 0.2s ease;
}

.header-mobile-close:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

.header-mobile-nav {
    display: flex;
    flex-direction: column;
}

.header-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
}

.header-mobile-list li {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.header-mobile-actions {
    display: flex;
    flex-direction: column;
}

.header-mobile-actions .req-btn,
.header-mobile-actions .lang-wrapper {
    width: 100%;
}

.header-mobile-actions .req-btn {
    justify-content: center;
    text-align: center;
}

@media (max-width: 1246px) {

    .header,
    .header--sticky {
        grid-template-columns: auto 1fr auto;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .header-nav {
        display: none;
    }

    .header-right {
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .header-right .req-btn,
    .header-right .lang-wrapper {
        display: none;
    }

    .header-burger {
        display: inline-flex;
    }
}

@media (min-width: 1247px) {
    .header-mobile-menu {
        display: none !important;
    }

    .header-burger {
        display: none !important;
    }
}

.header-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-mobile-menu .req-btn,
.header-mobile-menu .lang-wrapper .lang-btn,
.header-mobile-menu .lang-dropdown .lang-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;

    padding: 10px 22px;
    border-radius: 30px;

    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;

    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.header-mobile-menu .req-btn:hover,
.header-mobile-menu .lang-wrapper .lang-btn:hover,
.header-mobile-menu .lang-dropdown .lang-option:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.header-mobile-menu .lang-wrapper .lang-btn.lang-btn--active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.header-mobile-menu .lang-wrapper .lang-btn.lang-btn--active:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.header-mobile-menu .lang-dropdown .lang-option {
    font-size: 16px;
}

.header-mobile-menu .lang-wrapper {
    width: 100%;
}

.header-mobile-menu .lang-dropdown {
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.header-mobile-menu .lang-wrapper.open .lang-dropdown {
    display: flex;
}

.header-mobile-menu .lang-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.header-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.header-mobile-list li {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 6px;
}

.header-mobile-list li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: none;
}

.header-mobile-list li:hover:not(.active)::after {
    transition: width 0.3s ease;
}

.header-mobile-menu.animate-active .header-mobile-list li.active::after {
    transition: width 0.3s ease;
}

.header-mobile-menu .req-btn,
.header-mobile-menu .lang-wrapper .lang-btn,
.header-mobile-menu .lang-dropdown .lang-option {
    width: auto;
    align-self: flex-start;
}

.header-mobile-actions {
    align-items: flex-start;
}

.header-mobile-nav,
.header-mobile-list,
.header-mobile-actions,
.header-mobile-menu .lang-dropdown {
    align-items: center;
    text-align: center;
}

.header-mobile-menu .req-btn,
.header-mobile-menu .lang-wrapper .lang-btn,
.header-mobile-menu .lang-dropdown .lang-option {
    width: auto;
    align-self: center;
}

.header-mobile-list li {
    display: inline-block;
}

.header-mobile-menu .lang-wrapper .lang-btn {
    gap: 3px;
    
    padding: 5px 14px;

    min-height: 46px;

    border-radius: 30px;
    box-sizing: border-box;
}

.header-mobile-menu .lang-dropdown .lang-option {
    gap: 3px;
    padding: 5px 14px;
    min-height: 46px;
    border-radius: 30px;
}

.header-mobile-menu .lang-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.header-mobile-menu .lang-arrow {
    width: 13px;
    height: 8px;
    margin-left: 3px;
}

.header-mobile-menu .lang-wrapper {
    display: inline-block;
}
.header-mobile-menu .lang-dropdown {
    width: 100%;
}

@media (max-width: 1246px) {
    #services .services-slider {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    #services .services-cards {
        display: flex;
        justify-content: center;
    }

    #services .service-card {
        display: none;
    }

    #services .service-card.mobile-visible {
        display: block;
    }

    #services .services-arrow {
        border: none;
        background: transparent;
        color: #084DEF;
        font-size: 32px;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;

        transition:
            transform 0.15s ease,
            color 0.15s ease;
    }

    #services .services-arrow:hover {
        transform: scale(1.15);
        color: #052f99;
    }

    #services .service-card.active {
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

@media (min-width: 1247px) {
    #services .services-arrow {
        display: none;
    }
}
