/* Exo Font CSS */

@font-face {
    font-family: 'Exo-Regular';
    src: url('../fonts/Exo-2/Exo2-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo-Medium';
    src: url('../fonts/Exo-2/Exo2-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo-SemiBold';
    src: url('../fonts/Exo-2/Exo2-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo-Bold';
    src: url('../fonts/Exo-2/Exo2-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Titillium Font CSS */

@font-face {
    font-family: 'Titillium-Regular';
    src: url('../fonts/Titillium-Web/TitilliumWeb-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Titillium-SemiBold';
    src: url('../fonts/Titillium-Web/TitilliumWeb-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Titillium-Bold';
    src: url('../fonts/Titillium-Web/TitilliumWeb-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Be-Vietnam-Pro Font CSS */

@font-face {
    font-family: 'Be-Vietnam-Pro-Regular';
    src: url('../fonts/Be-Vietnam-Pro/BeVietnamPro-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be-Vietnam-Pro-Medium';
    src: url('../fonts/Be-Vietnam-Pro/BeVietnamPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be-Vietnam-Pro-SemiBold';
    src: url('../fonts/Be-Vietnam-Pro/BeVietnamPro-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be-Vietnam-Pro-Bold';
    src: url('../fonts/Be-Vietnam-Pro/BeVietnamPro-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #005aa9;
    --white: #FFFFFF;
    --black: #000000;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Be-Vietnam-Pro-Regular';
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
}

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

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.default-btn {
    position: relative;
    z-index: 1;
    font-family: 'Titillium-Bold';
    background-color: var(--white);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary);
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.default-btn:hover {
    color: var(--white);
}

.default-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0559A7 0%, #1CA8E5 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.default-btn:hover::after {
    opacity: 1;
}

.section-heading h2 {
    font-family: 'Exo-Bold';
    color: #0047AD;
    font-size: 78px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.section-heading h3 {
    font-family: 'Exo-Bold';
    font-size: 42px;
    margin-bottom: 20px;
}

/* Header CSS Start */
.header {
    position: relative;
    z-index: 9;
    width: 100%;
    padding: 25px 0;
    transition: all 0.3s ease-in-out;
}

.header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 999;
}

.header .header-box .image-box {
    max-width: 200px;
}

/* Header CSS End */

/* Banner CSS Start */
.banner {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(5, 89, 167, 1) 0%,
            rgba(0, 79, 157, 0.2) 50%,
            rgba(28, 168, 229, 0) 100%);
    margin-top: -107px;
}

.banner .banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    mix-blend-mode: soft-light;
    width: 100%;
    height: 100%;
}

.banner .banner-box {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.banner .text-box {
    width: calc(60% - 50px);
}

.banner .text-box h1 {
    font-family: 'Exo-Bold';
    color: var(--white);
    font-size: 127px;
    line-height: 1;
}

.banner .text-box h2 {
    font-size: 85px;
    color: var(--white);
    margin-bottom: 0;
}

.banner .text-box h3 {
    font-family: 'Be-Vietnam-Pro-Bold';
    font-size: 24px;
    color: var(--white);
}

.banner .form-wrap {
    width: calc(40% - 50px);
}

.banner .form-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
}

.banner .form-box form .form-group {
    text-align: center;
}

.banner .form-box form .form-group:not(:last-child) {
    margin-bottom: 15px;
}

.banner .form-box form .form-group {
    position: relative;
}

.banner .form-box form input,
.banner .form-box form textarea {
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
}

.banner .form-box form label {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    pointer-events: none;
    transition: 0.25s ease;
    background: var(--white);
    padding: 3px 10px;
}

.banner .form-box form textarea+label {
    top: 30px;
}

.banner .form-box form input:focus+label,
.banner .form-box form input:not(:placeholder-shown)+label,
.banner .form-box form textarea:focus+label,
.banner .form-box form textarea:not(:placeholder-shown)+label {
    top: 4px;
    font-size: 12px;
    color: var(--primary);
}

.banner .form-group button {
    position: relative;
    z-index: 1;
    font-family: 'Titillium-Bold';
    width: 50%;
    font-size: 24px;
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.banner .form-group button::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, #0559A7 0%, #1CA8E5 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.banner .form-group button::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, #1CA8E5 0%, #0559A7 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.banner .form-group button:hover::after {
    opacity: 1;
}

/* Banner CSS End */

/* Get CSS Start */
.get .section-heading {
    text-align: center;
}

.get .get-box {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    /* flex-wrap: wrap; */
}

.get .get-box .box {
    width: calc(25% - 12px);
    background: linear-gradient(135deg, #0559A7 0%, #1CA8E5 100%);
    border-radius: 15px;
    padding: 50px 20px;
    text-align: center;
}

.get .get-box .box .image-box {
    margin-bottom: 15px;
    text-align: center;
}

.get .get-box .box .image-box img {
    max-height: 45px;
    margin: 0 auto;
}

.get .get-box .box .text-box h3 {
    font-family: 'Exo-Bold';
    font-size: 26px;
    color: var(--white);
    margin-bottom: 5px;
}

.get .get-box .box .text-box h5 {
    font-family: 'Be-Vietnam-Pro-Bold';
    font-size: 20px;
    color: var(--white);
}

/* Get CSS End */

/* Where CSS Start */
.where {
    padding-top: 0;
}

.where .section-heading {
    text-align: center;
}

.where .where-box {
    display: flex;
    margin-top: 50px;
    flex-wrap: wrap;
}

.where .where-box .box {
    position: relative;
    height: 500px;
    width: 25%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.where .where-box .box::after {
    content: "";
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(to bottom,
            rgba(33, 155, 215, 0) 0%,
            rgba(2, 84, 161, 0.93) 50%,
            rgba(0, 79, 157, 1) 100%);
}

.where .where-box .box .image-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.where .where-box .box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.where-box .box .text-box {
    padding: 20px;
}

.where-box .box .text-box h3 {
    font-family: 'Exo-Bold';
    font-size: 36px;
    color: var(--white);
    margin-bottom: 5px;
    text-align: center;
}

.where-box .box .text-box h5 {
    font-family: 'Be-Vietnam-Pro-Bold';
    font-size: 16px;
    color: var(--white);
    text-align: center;
}

/* Where CSS End */

/* Drone CSS Start */
.drone {
    padding-top: 0;
}

.drone .section-heading {
    text-align: center;
}

.drone .drone-box {
    display: flex;
    gap: 100px;
    justify-content: center;
    row-gap: 30px;
    margin-top: 50px;
}

.drone .drone-box .box {
    width: calc(25% - 80px);
    text-align: center;
}

.drone .drone-box .box .image-box {
    margin-bottom: 15px;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drone CSS End */

/* Footer CSS Start */
.footer {
    padding-top: 100px;
    background-color: var(--primary);
}

.footer .footer-top {
    position: relative;
    display: flex;
    gap: 50px;
}

.footer .footer-top::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--white);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
}

.footer .footer-top .left-part,
.footer .footer-top .right-part {
    width: calc(50% - 25px);
}

.footer .right-part ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer .right-part ul li:not(:last-child) {
    margin-bottom: 20px;
}

.footer .right-part ul li p {
    display: flex;
    flex-direction: column;
}

.footer .right-part ul li:not(:last-child) img {
    margin-top: 3px;
}

.footer .right-part ul li img {
    width: 20px;
    min-width: 20px;
    height: 20px;
}

.footer .right-part ul li p span {
    font-family: 'Exo-Bold';
    color: var(--white);
    font-size: 18px;
}

.footer .right-part ul li p span:not(:last-child) {
    margin-bottom: 10px;
}

.footer .footer-bottom {
    margin-top: 100px;
    padding-bottom: 20px;
}

.footer .footer-bottom p {
    color: var(--white);
    text-align: center;
}

/* Footer CSS End */