
/*
|-------------------------------
| HOMEPAGE - NAVBAR
|-------------------------------
*/

.navbar-expand-xl {
    max-height: 80px;
    padding-top: 0
}

.navbar-expand-xl .navbar-nav {
    margin-top: 8px;
    align-items: center
}

nav {
    background: 0 0;
    backdrop-filter: blur(3.5px)
}

nav.navbar-expand-xl {
    background: #fff
}

body nav .nav-item span {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    letter-spacing: .3px
}

body nav .nav-item span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: var(--theme-dark);
    transition: width .2s ease-in-out
}

body nav .nav-item span:hover::after {
    width: 100%
}

body .theme__btn {
    font-family: Montserrat, sans-serif;
    letter-spacing: .6px
}

#navbar {
    transition: opacity .2s ease-in-out, visibility .5s ease-in-out;
    opacity: 1;
    visibility: visible;
    position:fixed !important;
    min-width: 100% !important;
    z-index: 10000;
}

#navbar.hidden {
    opacity: 0;
    visibility: hidden
}



/*
|------------------------------
| APPLICATION FONTS
|------------------------------
*/

@font-face {
    font-family: "Plus Jakarta Sans", sans-serif;
    src: url("../fonts/bricolage-grotesque/BricolageGrotesque-SemiBold.ttf")
        format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*
|-----------------------------
| GLOBAL STYLES
|-----------------------------
*/

:root {
    --theme-white: #ffffff;
    --theme-offwhite: #f7f7f7;
    --theme-dark: #333333;
    --theme-primary: #032D60;
    --theme-light-primary: #0176d3;
}
html, body {
    overflow-x: hidden !important;
    overflow: smooth !important;
}
body {
    font-family: "Montserrat", sans-serif;
    background-color: #f8f9fa;
}


/*
|-----------------------------
| HEADING AND FONTS
|-----------------------------
*/

h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600 !important;
    margin-bottom: 0px;
    margin-top: 0px;
}
h1 {
    font-size: clamp(24px, 3vw, 38px);
    line-height: clamp(38px, 4vw, 56px);
}
h2 {
    font-size: clamp(20px, 3vw, 32px);
    line-height: clamp(32px, 4vw, 50px);
}
h3 {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: clamp(26px, 2vw, 32px);
}
p {   
    font-size: clamp(13px, 1.1vw, 16px);;
    color: var(--theme-dark);
    line-height: clamp(26px, 2.2vw, 32px);
    font-weight: 500;
    text-transform: capitalize;
}


/*
|-----------------------------
| BUTTONS 
|-----------------------------
*/

.devx__btn-primary {
    background: #0176d3;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 10px 24px !important;
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: clamp(18px, 1.6vw, 24px);
    text-align: start;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    transition: 0.2s;
}
.devx__btn-secondary {
    border: 1px solid #0176d3;
    font-family: "Montserrat", sans-serif;
    background: white;
    color: #0176d3;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: calc(clamp(12px, 1.2vw, 14px) * 1.7);
    text-align: start;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.2s;
    text-decoration: none;
}
.devx__btn-primary:hover,
.devx__btn-secondary:hover {
    opacity: 0.8;
}


/*
|-----------------------------
| UTILITY CLASSES
|-----------------------------
*/

.gap-12 {
    gap: 12px;
}
.gap-24 {
    gap: 24px;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.devx__color-primary {
    color:var(--theme-primary);
}

/* FOOTER MEDIA QUERY */

@media only screen and (max-width: 1200px) {
    footer .privacy,
    footer .terms {
        text-wrap: nowrap !important;
    }
    footer .terms {
        padding-left: 16px !important;
    }
    footer .upper-container .row .col-lg-2.offset-1 {
        margin-left: 0px !important;
    }
    footer .upper-container .row .col-lg-3,
    footer .upper-container .row .col-lg-2,
    footer .upper-container .row .col-lg-4 {
        min-width: 100% !important;
    }
    footer .upper-container .row {
        display:grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-column-gap: 20px;
        /* margin-bottom:64px; */
        grid-row-gap: 40px;
    }
}
@media only screen and (max-width: 992px) {
    footer .upper-container .row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    footer .privacy-terms-wrapper {
        justify-content:start !important;
    }
    footer .lower-container p {
        margin-bottom: 0px !important;
    }
    footer .lower-container {
        flex-direction: column;
        align-items:center !important;
        justify-content:center !important;
    }
    /* footer .lower-container .social-buttons-wrapper {
        display:grid !important;
        grid-template-columns: repeat(3, 1fr);
        min-width: 70% !important;
    } */
}
@media only screen and (max-width: 650px) {
    footer .upper-container .row {
        grid-template-columns: 1fr !important;
    }
    footer .lower-container .social-buttons-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* @media only screen and (max-width: 420px) {
    footer .lower-container .social-buttons-wrapper {
        min-width: 100% !important;
    }
} */


/* contact form css starts from here */
.contact-form small {
    margin-top: 6px;
    color: red;
    display:flex;
    margin-bottom: -6px;
}
.contact-form select {
    appearance: none;
}
.contact-form .form-group.select {
    display:flex;
    align-items:start;
    flex-direction: column;
    justify-content:space-between;
    position:relative;
}
.contact-form .form-group.select::after {
    content: '';
    background-image: url('../images/right-arrow-button.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 16px;
    width: 16px;
    position:absolute;
    transform:rotate(90deg);
    right: 14px;
    top: 28px;
    pointer-events: none;
}
.contact-form .form-group:has(textarea) {
    grid-column-start: 1;
    grid-column-end: 3;
}   
.contact-form input:not([type="radio"]):not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    box-shadow: 0px 1px 2px 0px #0A0D120D;
    border:1px solid #D5D7DA;
    border-radius: 8px;
    padding: 10px 14px;
    height: 50px;
    display:flex;
    align-items:center;
    justify-content:start;
    min-width: 100%;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: clamp(26px, 2vw, 32px);
}
.contact-form textarea {
    min-height: 200px;
}
.contact-form .form-group {
    max-width: 100% !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-top: 10px;
    padding-bottom:10px;
}
.contact-section-wrapper .container:first-child {
    padding-top: 92px;
    padding-bottom: 92px;
}
.contact-form {
    min-width: 100% !important;
}
.contact-form .row {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    align-items:center;
    margin-right:0px;
    margin-left: 0px;
    grid-gap: 20px;
    justify-content:start;
}
.language-dropdown {
    grid-column-start:1;
    grid-column-end: 3;
}
.form-group label:has(input[name="terms"]) input {
    min-width: 14px !important;
    max-width: 14px !important;
}
.form-group label:has(input[name="terms"]) a {
    text-decoration:none;
    text-transform: lowercase;
    color: #0176d3;
}
.form-group label:has(input[name="terms"]) + small {
    margin-top: -6px;
    margin-bottom: 0px;
}
.form-group label:has(input[name="terms"]) {
    display:flex;
    align-items:center;
    gap: 8px;
    justify-content:start;
}
.form-group button[type="submit"] {
    min-width: 100%;
    text-align:center;
}

@media only screen and (max-width: 991px) {
    .contact-section-wrapper .col-lg-6 .inner-wrapper {
        min-width: 100% !important;
    }
    .contact-section-wrapper .col-lg-6 img {
        height: 100% !important;
    }
}
@media only screen and (max-width: 576px) {
    .contact-section-wrapper .container:first-child  {
        padding-top: 46px;
        padding-bottom: 46px;
    }
    .contact-section-wrapper .container .row {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}
@media only screen and (max-width: 480px) {
    .form-group label:has(input[name="terms"]) + small {
        margin-top: 6px;
        margin-bottom: 0px;
    }
}
/* contact form css ends here */



/* modal css starts from here */
.devx-video-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.35s ease;
}

.devx-video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Backdrop */
.devx-video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

/* Modal content wrapper */
.devx-video-content {
    position: relative; /* REQUIRED for close button */
    width: 100%;
    height: 100%;

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

/* Video box */
.devx-video-wrapper {
    width: 80%;
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.devx-video-wrapper video {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* ✅ CLOSE BUTTON (FIXED & STYLED) */
.devx-video-close {
    position: fixed; /* viewport-based, not video-based */
    top: 24px;
    right: 28px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    line-height: 1;

    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 50%;

    cursor: pointer;
    z-index: 100001;

    transition: background 0.2s ease, transform 0.2s ease;
}

.devx-video-close:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.05);
}

/* modal css ends here */
