/* 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 {
    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';
    color: var();
    font-size: 42px;
    margin-bottom: 20px;
}

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

/* .header.show {
    background: linear-gradient(90deg, var(--primary) 70.15%, #44c7f4 100%);
} */

.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;
    /* padding-top: 120px; */
    height: 100dvh;
    background-image: url("../images/banner-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -107px;
}

.banner-box h1 {
    color: var(--white);
    text-align: center;
    font-family: 'Exo-Bold';
    font-size: 95px;
    line-height: 1.1;
    text-transform: capitalize;
}



.section-heading h2 {
    font-family: 'Exo-Bold';
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 50px;
}

.Partnership .content-box {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
}


.Partnership .text-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Partnership .text-box li {
    font-family: "Be-Vietnam-Pro-Medium";
    padding-left: 47px;
    margin-bottom: 20px;
    color: var(--black);
    font-size: 25px;
    position: relative;
}

.Partnership .text-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("../images/round-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.Partnership .img-box {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.Partnership .img-box img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.steps-section {
    background-color: #F7F6F8;
}


.steps-section .steps-box {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

.steps-section .steps-card {
    background: var(--white);
    border: 1.5px solid #b8d3f5;
    border-radius: 16px;
    padding: 25px 25px 25px 45px;
    width: calc(32% - 30px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: 0.5s all ease;
}

.steps-section .steps-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 168, 229, 0.4);
}

/* Step number image */
.steps-section .steps-card img {
    width: 55px;
    height: 55px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Text block */
.steps-section .steps-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--black);
}

.steps-section .steps-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.3;
    margin: 0;
}

/* Button */
.steps-section .steps-btn {
    margin-top: 40px;
    text-align: center;
}

.steps-section .steps-btn .btn-primary {
    font-family: "Titillium-Bold";
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0559A7 0%, #1CA8E5 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 22px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.steps-section .steps-btn .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 168, 229, 0.4);
}

/* Banner CSS End */


/* Drone CSS Start */


.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 .drone-box .box h3 {
    font-family: 'Be-Vietnam-Pro-Regular';
    font-size: 26px;
}

/* 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 {
    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 .enquire-box {
    background-color: var(--black);
    padding: 20px;
    text-align: center;
}

.footer .enquire-box a {
    font-family: 'Exo-Bold';
    color: var(--white);
    text-transform: uppercase;
    font-size: 62px;
}

/* Footer CSS End */


/* Contact CSS Start */

.contact {
    background-color: #F7F6F8;
}


.contact .contact-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.contact .contact-box .right-part {
    width: 100%;
}

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

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

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

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

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

.contact .form-box form select {
    appearance: none;
    background: url("../images/down-arrow.svg") no-repeat;
    background-size: 20px;
    background-position: 98%;
}

.contact .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;
}

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

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

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

.contact .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;
}

.contact .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;
}

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

/* Contact CSS End */


.w-50 {
    width: 50%;
}

.contact .box {
    display: flex;
    gap: 20px;
}