/* Nexa Bold */
@font-face {
    font-family: 'Nexa Bold';
    src: url('../fonts/Nexa-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Nexa (second variant) */
@font-face {
    font-family: 'Nexa';
    src: url('../fonts/NexaBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Trajan Bold (TrueType) */
@font-face {
    font-family: 'Trajan Bold';
    src: url('../fonts/Trajan-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Trajan Pro Bold */
@font-face {
    font-family: 'Trajan Pro';
    src: url('../fonts/TrajanPro-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Trajan Pro Regular */
@font-face {
    font-family: 'Trajan Pro';
    src: url('../fonts/TrajanPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    line-height: 1.6;
    color: var(--color-black);
    font-weight: 300;
}

:root {
    --primary-color: #0B1E3D;
    --secondary-color: #D4AF37;
    --accent-color: #E5E5E5;
    --text-color: #333333;
    --cta-button: #0078D7;
    --color-white: #fff;
    --color-dark: #1f2937;
    --color-gray: #F9FAFC;
    --color-black: #232A33;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media screen and (max-width:1400px) {
    .container {
        max-width: 1024px;
    }
}

.container-fluid {
    padding-left: 24px;
    padding-right: 24px;
}

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

    .container,
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

a {
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: 'Trajan Pro', serif;
}

:where(h1) {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: var(--color-white);
    font-family: 'Trajan Pro', serif;
    max-width: 992px;
    text-align: center;
    margin: 0 auto;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.375rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--secondary-color);
}

h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: var(--color-black);
    margin-bottom: 14px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.section {
    padding-top: 140px;
    padding-bottom: 140px;
}


@media screen and (max-width:992px) {
    .section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media screen and (max-width:768px) {
    .section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

.section img {
    width: 100%;
    max-width: 560px;
}

.d-none {
    display: none !important;
}

@media screen and (min-width: 769px) {
    .d-md-block {
        display: inline-block !important;
    }
}

.d-block {
    display: block;
}

.d-md-none {
    display: block;
}

@media screen and (min-width: 769px) {
    .d-md-none {
        display: none !important;
    }
}

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

.bg-gray {
    background-color: var(--color-gray);
}

.mb-34 {
    margin-bottom: 34px;
}

.pt-0 {
    padding-top: 0;
}

@media screen and (max-width:769px) {
    .mb-14 {
        margin-bottom: 14px;
    }
}

.hero_content .button {
    align-self: center;
    width: auto;
}

.button {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    font-size: 17px;
    padding: 12px 38px;
    border-radius: 5px;
    outline: 2px solid #2835ba;
    outline-offset: -1px;
    background: #2835ba;
    border: 0;
    font-weight: bolder;
    color: white;
    transition: all .1s ease-in-out;
    cursor: pointer;
}

.button:hover {
    outline-offset: 3px;
    outline: 3px solid var(--primary-color);
}

.btn {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    background-color: transparent;
    transition: .2s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
    color: var(--color-black);
}

.btn::after {
    content: '';
    border-bottom: 3px double var(--secondary-color);
    width: 0;
    height: 100%;
    position: absolute;
    margin-top: -5px;
    top: 0;
    left: 5px;
    visibility: hidden;
    opacity: 1;
    transition: .2s linear;
}

.btn .icon {
    transform: translateX(0%);
    transition: .2s linear;
    animation: attention 1.2s linear infinite;
}

.btn:hover::after {
    visibility: visible;
    opacity: 0.7;
    width: 90%;
}

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

/* Hero */
#hero {
    padding-top: 180px;
    padding-bottom: 140px;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: start;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.9) 100%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero_content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-self: self-start;
}

.hero_content p {
    margin-top: 8rem;
    margin-bottom: 24px;
    color: var(--color-white);
}

@media screen and (max-width:992px) {
    .hero_content p {
        margin-top: 6rem;
    }
}

@media screen and (max-width:576px) {
    .hero_content p {
        margin-top: 3.5rem;
    }

    #hero {
        padding-top: 130px;
        padding-bottom: 110px;
    }
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 14px;
    padding-bottom: 14px;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 170px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 18px;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a.active {
    color: var(--secondary-color);
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-weight: 500;
    transition: 0.2s ease-in-out;
}

.phone:hover {
    color: var(--secondary-color);
}

.phone svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

@media screen and (max-width:1200px) {
    .nav-menu {
        gap: 18px;
    }

    .logo img {
        max-width: 140px;
    }
}

@media screen and (max-width:992px) {
    .nav-menu a {
        font-size: 16px;
    }

    .nav-menu {
        gap: 14px;
    }

    .logo img {
        max-width: 120px;
    }

    .nav-menu .btn {
        width: 80px;
    }
}

@media (max-width: 769px) {
    .nav-menu {
        position: fixed;
        top: 66px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-white);
        text-align: center;
    }

    .nav-menu a {
        margin: 0 auto;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 8px;
        padding-left: 16px;
    }

    .phone {
        padding: 12px 0;
        margin-left: auto;
        margin-right: 24px;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media screen and (max-width:576px) {
    .logo img {
        max-width: 110px;
    }

    .phone {
        padding: 12px 0;
        margin-left: auto;
        margin-right: 14px;
    }
}


/* Grid */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.column {
    position: relative;
}

@media (max-width: 769px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 1rem;
        row-gap: 1.5rem;
    }
}

.grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

@media (min-width: 768px) {
    .grid-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-section {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-item {
    padding: 1.6rem;
    text-align: start;
    border-radius: 18px;
    font-weight: bold;
    border: 2px solid #f4f4f4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (max-width:769px) {
    .grid-item {
        text-align: center;
    }
}

.grid-item p {
    margin-top: 44px;
    font-size: 22px;
    margin-bottom: 24px;
}

.grid-item span {
    font-size: 18px;
    font-weight: 400;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.section img {
    border-radius: 18px;
}

.business-info h3 {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(-20%, 50%);
}

@media screen and (max-width:992px) {
    .business-info h3 {
        transform: translate(-20%, 20%);
    }
}

@media screen and (max-width:769px) {
    .business-info h3 {
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
    }

    .business-info h3 br {
        display: none;
    }
}

.business-info .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

/* Solutions */
.solutions-info .left .column-sticky {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 28px;
    position: sticky;
    top: 140px;
}

.solutions-info .left .column-sticky img {
    max-width: 300px;
}

@media screen and (max-width:769px) {
    .solutions-info .left .column-sticky {
        text-align: center;
        gap: 14px;
    }

    .solutions-info .left .column-sticky img {
        max-width: 560px;
        margin: 0 auto;
    }
}

.solutions-info__list {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E0E0E0;
}

.solutions-info__list span:first-child {
    display: inline-block;
    font-weight: 600;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--primary-color);
}

.solutions-info-list__details p {
    font-weight: 600;
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    margin-bottom: 10px;
}

/* About */
@media screen and (max-width:769px) {
    .about .column {
        text-align: center;
    }
}

.about .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about .left .button {
    width: fit-content;
}


/* Global Reach */
.global-reach {
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 14px;
}

.global-reach__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    gap: 14px;
}

@media screen and (max-width:768px) {
    .global-reach__head {
        flex-direction: column;
    }
}

.global-reach__head h3,
.global-reach__head p {
    color: var(--color-white);
}

.global-reach__map {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 1rem;
    background-color: var(--color-gray);
}

.global-reach__map img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 620px;
    z-index: 1;
    object-fit: cover;
}


/* FAQ */
.faq {
    max-width: 840px;
    margin: 0 auto;
    padding: 1rem;
}

@media screen and (max-width:992px) {
    .faq {
        padding: 0rem;
    }
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    background-color: var(--color-white);
    margin-bottom: 24px;
    padding: 0.8rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding: 1rem 2.5rem 1rem 1rem;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 24px;
    transition: 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    /* minus symbol */
}

.faq-question.active, .faq-question.active::after {
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    font-size: 16px;
    color: #333;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 1rem;
}

.partnership {
    padding: 94px 34px 24px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

@media screen and (max-width:768px) {
    .partnership {
        padding: 84px 4px 24px 4px;
    }
}

.partnership p {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.faq-partnership {
    padding-top: 14px;
}


#services {
    scroll-margin-top: 190px;
}


#faq {
    scroll-margin-top: 60px;
}

/* Footer */
footer {
    padding-top: 80px;
    padding-bottom: 20px;
    background-color: var(--primary-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

/* Left section */
.footer-left img {
    width: 40px;
    margin-bottom: 10px;
}

.footer-left img:first-child {
    width: 100%;
    max-width: 170px;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

@media screen and (max-width:1200px) {
    .footer-left img:first-child {
        max-width: 140px;
    }
}

@media screen and (max-width:992px) {
    .footer-left img:first-child {
        max-width: 120px;
    }
}

.footer-left h4 {
    color: var(--secondary-color);
}

.footer-left p {
    font-size: 16px;
    color: var(--color-white);
}

/* Middle section */
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--color-white);
    transition: color 0.3s;
    font-size: 18px;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

/* Right section */
.contact-info {
    margin-bottom: 20px;
}

.contact-info div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.contact-info div i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: #f4f4f4;
    margin-right: 12px;
    color: var(--color-black);
}

.contact-info div a {
    color: var(--color-white);
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f4f4;
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #ddd;
}

/* Bottom */
.footer-bottom {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--btn-hover-border);
    gap: 14px;
}

.footer-bottom p:first-child {
    color: var(--color-white);
    font-size: 18px;
}

.footer-bottom a {
    margin-left: 15px;
    text-decoration: none;
    text-decoration: none;
}

@media screen and (max-width:992px) {
    .footer-bottom a {
        margin-left: 0px;
    }
}

@media screen and (max-width:576px) {
    .footer-bottom a {
        max-width: 70%;
    }
}

.footer-bottom a svg path {
    fill: var(--color-white);
}

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

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

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

    .footer-bottom .nav-btn {
        padding: 12px;
    }
}

/* Contact page */
.contact-form {
    padding-top: 140px;
    text-align: center;
}

.contact-form {
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width:1024px) {
    .contact-form .contact-iframe {
        width: 100%;
        max-width: 500px;
        height: 2950px;
    }
}

@media screen and (max-width:992px) {
    .contact-form .contact-iframe {
        width: 100%;
        max-width: 500px;
        height: 3150px;
    }
}

@media screen and (max-width:769px) {
    .contact-form .contact-iframe {
        width: 100%;
        max-width: 500px;
        height: 2750px;
    }
}

@media screen and (max-width:576px) {
    .contact-form .contact-iframe {
        width: 100%;
        max-width: 500px;
        height: 3100px;
    }
}

@media screen and (max-width:344px) {
    .contact-form .contact-iframe {
        width: 100%;
        max-width: 500px;
        height: 3350px;
    }
}