@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 100;
    font-display: auto;
    src: url('../fonts/FiraGO-Hair.ttf') format('truetype');
}

@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 200;
    font-display: auto;
    src: url('../fonts/FiraGO-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 300;
    font-display: auto;
    src: url('../fonts/FiraGO-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url('../fonts/FiraGO-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 500;
    font-display: auto;
    src: url('../fonts/FiraGO-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 600;
    font-display: auto;
    src: url('../fonts/FiraGO-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 700;
    font-display: auto;
    src: url('../fonts/FiraGO-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 800;
    font-display: auto;
    src: url('../fonts/FiraGO-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'FiraGo';
    font-style: normal;
    font-weight: 900;
    font-display: auto;
    src: url('../fonts/FiraGO-Heavy.ttf') format('truetype');
}

:root {

    --primary: #0C63F3;
    --primary-light: #2F8CFF;

    --green: #3AB96F;
    --green-light: #79D49D;

    --dark: #071B34;
    --dark-light: #16355C;

    --white: #ffffff;

    --body: #F5F9FD;

    --text: #657487;

    --border: #E6EEF7;

    --radius: 26px;

    --shadow: 0 20px 60px rgba(10, 50, 100, .08);

    --shadow-hover: 0 30px 80px rgba(10, 50, 100, .18);

    --transition: .4s ease;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'FiraGO', sans-serif;

    background: var(--body);

    color: #222;

    overflow-x: hidden;

    position: relative;

}

/*=============================
    CUSTOM CONTAINER
    =============================*/

.custom-container {

    max-width: 1500px;

    padding-left: 45px;

    padding-right: 45px;

    margin: auto;
    z-index: 10;

}

/*=============================
    SECTION
    =============================*/

section {

    padding: 130px 0;

    position: relative;

}

.section-subtitle {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 10px 22px;

    border-radius: 100px;

    background: #EAF4FF;

    color: var(--primary);

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 1px;

    margin-bottom: 20px;

}

.section-subtitle:before {

    content: "";

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--green);

}

.section-heading {

    margin-bottom: 70px;

}

.section-heading h2 {

    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 10px;
    font-feature-settings: 'case'on;

}

.section-heading p {

    max-width: 720px;

    margin: auto;

    font-size: 19px;

    line-height: 1.9;

    color: var(--text);

    font-size: 17px;
    /* line-height: 2; */
    color: var(--text);
    margin-bottom: 15px;

}

/*=============================
    BACKGROUND BLOBS
    =============================*/

.blob {

    position: fixed;

    border-radius: 50%;

    filter: blur(140px);

    z-index: -20;

    animation: blobMove 15s infinite alternate ease-in-out;

}

.blob-blue {

    width: 520px;

    height: 520px;

    background: #B7D8FF;

    top: -150px;

    left: -150px;

}

.blob-green {

    width: 420px;

    height: 420px;

    background: #C9F5D9;

    bottom: -150px;

    right: -120px;

    animation-delay: 3s;

}

.blob-white {

    width: 500px;

    height: 500px;

    background: #ffffff;

    top: 40%;

    left: 50%;

    transform: translateX(-50%);

}

@keyframes blobMove {

    100% {

        transform: translateY(60px) translateX(30px);

    }

}

/*=============================
    HEADER
    =============================*/

.header {

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    z-index: 9999;

    padding: 18px 0;

    transition: .35s;

}

.header.scrolled {

    background: rgb(255 255 255);

    backdrop-filter: blur(24px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

    padding: 12px 0;

}

.navbar {

    padding: 0;

}

.navbar-brand img {

    height: 52px;

}

.nav-link {

    font-size: 15.5px;
    font-weight: 700;
    margin: 0 12px;
    color: #fff;
    position: relative;
    transition: .3s;
    font-feature-settings: 'case'on;

}

.header.scrolled .nav-link {

    color: var(--dark);

}

.nav-link:after {

    content: "";

    position: absolute;

    bottom: -12px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .35s;

}

.nav-link:hover:after {

    width: 100%;

}

.header-right {

    display: flex;

    align-items: center;

    gap: 18px;

}

.language-btn {

    border: none;

    background: rgb(255 255 255 / 0%);

    color: #fff;

    border-radius: 100px;

    padding: 13px 22px;

    /* backdrop-filter:blur(18px); */

}

.header.scrolled .language-btn {

    /* background:#EEF5FD; */

    color: var(--dark);

}

.header.scrolled .language-btn svg {
    filter: brightness(0) saturate(100%) invert(11%) sepia(27%) saturate(3291%) hue-rotate(204deg) brightness(90%) contrast(89%);
}

.call-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 30px;

    border-radius: 100px;

    background: linear-gradient(135deg, var(--primary), var(--primary-light));

    color: #fff;

    font-weight: 700;

    text-decoration: none;

    transition: .35s;

    box-shadow: 0 20px 40px rgba(13, 90, 255, .25);

}

.call-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 30px 50px rgba(13, 90, 255, .35);

    color: #fff;

}

/*=============================
    HERO
    =============================*/

.hero {

    height: 115vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: linear-gradient(90deg, #081B33 0%, #133B68 55%, transparent);

}

.hero-image {

    position: absolute;

    right: 0;

    top: 0;

    width: 100%;

    height: 100%;

}

.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    animation: heroZoom 12s infinite alternate ease-in-out;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,

            rgba(6, 23, 43, .95),

            rgba(6, 23, 43, .72),

            rgba(6, 23, 43, .12));

    opacity: 0.4;
    z-index: 1;
}

@keyframes heroZoom {

    100% {

        transform: scale(1.08);

    }

}

.hero-content {

    position: relative;

    z-index: 5;

}

.hero-label {

    display: inline-flex;

    padding: 12px 24px;

    border-radius: 100px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(18px);

    color: #fff;

    font-weight: 700;

    margin-bottom: 35px;

}

.hero h1 {

    font-size: 76px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -2px;

    color: #fff;

    margin-bottom: 35px;
    font-family: 'FiraGO';
    font-feature-settings: 'case'on;
}

.hero p {

    font-size: 18px;

    /* line-height:2; */

    max-width: 620px;

    color: rgba(255, 255, 255, .88);

    margin-bottom: 45px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    margin-bottom: 45px;

}

.primary-btn {

    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
    font-size: 13px;
    box-shadow: 0 25px 50px rgba(20, 90, 255, .28);

}

.primary-btn:hover {

    transform: translateY(-5px);

    color: #fff;

}

.secondary-btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 18px 42px;

    border-radius: 100px;

    border: 1px solid rgba(255, 255, 255, .4);

    color: #fff;

    text-decoration: none;

    backdrop-filter: blur(15px);

    transition: .35s;

}

.secondary-btn:hover {

    background: #fff;

    color: var(--dark);

}

.hero-location {

    display: flex;

    gap: 40px;

    color: #fff;

    font-weight: 600;

}

.hero-location div {

    display: flex;

    align-items: center;

    gap: 10px;

}

/*====================================
HERO FLOATING PROJECT CARD
====================================*/

.project-card {

    position: relative;

    margin-left: auto;

    max-width: 390px;

    padding: 40px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, .2);

    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);

    overflow: hidden;

    transition: .45s;
    opacity: 1 !important;

}

.project-card:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    /* background:linear-gradient(90deg,var(--primary),var(--green)); */

}

.project-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 45px 100px rgba(0, 0, 0, .25);

}

.project-card span {

    display: block;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, .75);

    margin-bottom: 18px;

}

.project-card h3 {

    /* font-size:34px; */

    font-weight: 800;

    line-height: 1.3;

    color: #fff;

    margin-bottom: 30px;

}

.project-card ul {

    list-style: none;

    padding: 0;

    margin: 0 0 30px;

}

.project-card li {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    font-size: 17px;

    color: #fff;

}

.project-card li i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    color: #8CE1AA;

    font-size: 16px;

}

.project-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.project-card a:hover {

    gap: 16px;

    color: #8CE1AA;

}

/*====================================
    SCROLL INDICATOR
    ====================================*/

.hero-scroll {

    position: absolute;

    left: 60px;

    bottom: 40px;

    display: flex;

    flex-direction: column;

    align-items: center;

    color: #fff;

    z-index: 5;

    animation: scrollMove 2s infinite;

}

.hero-scroll span {

    writing-mode: vertical-lr;

    font-size: 12px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 15px;

    opacity: .8;

}

.hero-scroll i {

    font-size: 22px;

}

@keyframes scrollMove {

    50% {

        transform: translateY(12px);

    }

}

/*====================================
    FLOATING STATISTICS
    ====================================*/

.stats {

    margin-top: -90px;

    position: relative;

    z-index: 10;

}

.stat-card {

    background: #fff;

    padding: 38px;

    border-radius: 28px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: .45s;

    height: 100%;

    position: relative;

    overflow: hidden;

}

.stat-card:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg,

            var(--primary),

            var(--green));

    transform: scaleX(0);

    transform-origin: left;

    transition: .45s;

}

.stat-card:hover {

    transform: translateY(-14px);

    box-shadow: var(--shadow-hover);

}

.stat-card:hover:before {

    transform: scaleX(1);

}

.stat-card i {

    width: 70px;

    height: 70px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #EDF6FF;

    color: var(--primary);

    font-size: 30px;

    margin-bottom: 25px;

    transition: .35s;

}

.stat-card:hover i {

    background: linear-gradient(135deg,

            var(--primary),

            var(--green));

    color: #fff;

    transform: rotate(8deg) scale(1.08);

}

.stat-card h3 {

    font-size: 36px;

    font-weight: 800;

    color: var(--dark);

    margin-bottom: 8px;

}

.stat-card p {

    margin: 0;

    font-size: 16px;

    font-weight: 600;

    color: var(--text);

}


.green-living {

    background: #fff;

    overflow: hidden;

}

.green-bg {

    position: absolute;

    right: -180px;

    top: -180px;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background:

        radial-gradient(circle,

            rgba(70, 185, 110, .18),

            transparent 70%);

    filter: blur(50px);

}

.green-content h2 {

    font-size: 40px;

    font-weight: 800;

    line-height: 1.15;

    color: var(--dark);

    margin-bottom: 28px;
    font-feature-settings: 'case'on;

}

.green-content p {

    font-size: 17px;

    /* line-height:2; */

    color: var(--text);

    margin-bottom: 45px;

}

.green-features {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.green-item {

    display: flex;

    align-items: center;

    gap: 22px;
    padding: 15px 20px;

    background: #fff;

    border-radius: 24px;

    box-shadow: var(--shadow);

    transition: .35s;

}

.green-item:hover {

    transform: translateX(10px);

}

.green-icon {

    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--green), #8FE2AE);
    font-size: 23px;
    color: #fff;
    flex-shrink: 0;

}

.green-item h4 {

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 6px;

    color: var(--dark);

}

.green-item span {
    font-size: 16px;
}

.green-item span {

    color: var(--text);

}

.green-gallery {

    position: relative;

    padding-left: 60px;

}

.gallery-large {

    border-radius: 34px;

    overflow: hidden;

    box-shadow: 0 35px 80px rgba(0, 0, 0, .15);

}

.gallery-large img {

    width: 100%;

    display: block;

}

.gallery-small {

    position: absolute;

    left: 0;

    bottom: 40px;

    width: 250px;

    border-radius: 26px;

    overflow: hidden;

    box-shadow: 0 30px 60px rgba(0, 0, 0, .18);

    border: 8px solid #fff;

}

.gallery-small img {

    width: 100%;

    display: block;

}

.experience-card {

    position: absolute;

    right: -30px;

    bottom: -20px;

    background: #fff;

    padding: 30px;

    border-radius: 26px;

    width: 320px;

    box-shadow: var(--shadow-hover);

}

.experience-card small {

    display: block;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--green);

    margin-bottom: 15px;

}

.experience-card h3 {

    font-size: 19px;

    font-weight: 800;

    line-height: 1.35;

    color: var(--dark);

    margin: 0;

}

/*====================================
ABOUT PROJECT
====================================*/

.about-project {

    background: #ffffff;

    overflow: hidden;

}

.about-image {

    position: relative;

    padding-right: 60px;

}

.about-image img {

    width: 100%;

    display: block;

    border-radius: 36px;

    box-shadow: 0 40px 90px rgba(0, 0, 0, .12);

    transition: .6s;

}

.about-image:hover img {

    transform: scale(1.03);

}

.about-floating {

    position: absolute;

    right: 0;

    bottom: 50px;

    background: #fff;

    padding: 32px;

    width: 320px;

    border-radius: 28px;

    box-shadow: var(--shadow-hover);

    border-left: 5px solid var(--primary);

}

.about-floating span {

    display: block;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--green);

    margin-bottom: 10px;

}

.about-floating h3 {

    font-size: 28px;

    font-weight: 800;

    line-height: 1.3;

    margin: 0;

    color: var(--dark);

}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 28px;
    font-feature-settings: 'case'on;

}

.about-content p {

    font-size: 17px;
    /* line-height: 2; */
    color: var(--text);
    margin-bottom: 35px;

}

.info-box {

    background: #F8FBFF;

    padding: 30px;

    border-radius: 24px;

    transition: .35s;

    height: 100%;

    border: 1px solid transparent;

}

.info-box:hover {

    transform: translateY(-8px);

    background: #fff;

    border-color: #EAF1F9;

    box-shadow: var(--shadow);

}

.info-box h4 {

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 8px;

    color: var(--primary);

}

.info-box span {

    font-size: 14px;

    font-weight: 600;

    color: var(--text);

}

/*====================================
    LOCATION
    ====================================*/

.location-section {

    background: linear-gradient(180deg, #ffffff, #F6FBFF);

}

.location-content h2 {

    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 10px;
    font-feature-settings: 'case'on;

}

.location-content p {

    font-size: 17px;
    /* line-height: 2; */
    color: var(--text);
    margin-bottom: 15px;

}

.location-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.location-item {

    display: flex;

    align-items: center;

    gap: 20px;

    background: #fff;

    padding: 15px 20px;

    border-radius: 24px;

    box-shadow: var(--shadow);

    transition: .35s;

}

.location-item:hover {

    transform: translateX(12px);

}

.location-icon {

    width: 60px;

    height: 60px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, var(--primary), var(--green));

    color: #fff;

    font-size: 23px;

    flex-shrink: 0;

}

.location-item h4 {

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 4px;

    color: var(--dark);

}

.location-item span {

    font-size: 13px;

    color: var(--text);

}

.location-item strong {

    margin-left: auto;

    font-size: 18px;

    font-weight: 800;

    color: var(--primary);

}

.location-map {

    position: relative;

    border-radius: 36px;

    overflow: hidden;

    box-shadow: 0 40px 90px rgba(0, 0, 0, .12);

}

.location-map img {

    width: 100%;

    display: block;

}

.map-pin {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    padding: 14px 20px;

    border-radius: 100px;

    box-shadow: var(--shadow);

    font-weight: 700;

    animation: floatPin 4s infinite ease-in-out;

}

.map-pin i {

    color: var(--primary);

}

.map-pin.project {

    background: linear-gradient(135deg, var(--primary), var(--green));

    color: #fff;

}

.map-pin.project img {

    width: 24px;

}

.airport {

    top: 15%;

    right: 12%;

}

.park {

    left: 10%;

    top: 28%;

}

.sea {

    bottom: 18%;

    right: 18%;

}

.project {

    left: 42%;

    top: 46%;

}

@keyframes floatPin {

    50% {

        transform: translateY(-8px);

    }

}

/*====================================
    WHY ABSAROS
    ====================================*/

.advantages-section {

    background: #F7FBFF;

}

.advantage-card {

    background: #fff;

    padding: 35px;

    border-radius: 30px;

    text-align: left;

    height: 100%;

    box-shadow: var(--shadow);

    transition: .4s;

    position: relative;

    overflow: hidden;

}

.advantage-card:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg,

            var(--primary),

            var(--green));

    transform: scaleX(0);

    transition: .4s;

    transform-origin: left;

}

.advantage-card:hover {

    transform: translateY(-12px);

    box-shadow: var(--shadow-hover);

}

.advantage-card:hover:before {

    transform: scaleX(1);

}

.advantage-icon {

    width: 60px;

    height: 60px;

    border-radius: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    background: linear-gradient(135deg, var(--primary), var(--green));

    color: #fff;

    margin-bottom: 20px;

}

.advantage-card h3 {

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 10px;

    color: var(--dark);

}

.advantage-card p {

    font-size: 15px;

    /* line-height:1.9; */

    color: var(--text);

    margin: 0;

}

/*====================================
APARTMENTS
====================================*/

.apartments-section {

    background: #ffffff;

    overflow: hidden;

}

.apartment-card {

    background: #fff;

    border-radius: 34px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: .45s;

    height: 100%;

}

.apartment-card:hover {

    transform: translateY(-14px);

    box-shadow: var(--shadow-hover);

}

.apartment-image {

    position: relative;

    overflow: hidden;

}

.apartment-image img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    transition: .8s;

}

.apartment-card:hover .apartment-image img {

    transform: scale(1.08);

}

.status {

    position: absolute;

    top: 22px;

    left: 22px;

    padding: 10px 18px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

    color: #fff;

    letter-spacing: 1px;

}

.available {

    background: #34C759;

}

.reserved {

    background: #FF9500;

}

.sold {

    background: #F04438;

}

.apartment-content {

    padding: 25px;

}

.apartment-content>span {

    display: inline-block;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--primary);

    margin-bottom: 15px;

}

.apartment-content h3 {

    font-size: 25px;

    font-weight: 800;

    line-height: 1.25;

    margin-bottom: 10px;

    color: var(--dark);

}

.apartment-info {

    display: flex;

    justify-content: space-between;

    padding: 25px 0;

    margin-bottom: 10px;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}

.apartment-info div {

    text-align: center;

}

.apartment-info strong {

    display: block;

    font-size: 22px;

    font-weight: 800;

    color: var(--dark);

    margin-bottom: 6px;

}

.apartment-info small {

    font-size: 14px;

    color: var(--text);

}

/*====================================
    GALLERY
    ====================================*/

.gallery-section {

    background: #F7FBFF;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(12, 1fr);

    gap: 24px;

}

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 32px;

    cursor: pointer;

    box-shadow: var(--shadow);

}

.gallery-item img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: 1s;

}

.gallery-item:hover img {

    transform: scale(1.08);

}

.gallery-item::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(0, 0, 0, .45),

            transparent);

    opacity: 0;

    transition: .35s;

    z-index: 2;

}

.gallery-item:hover::before {

    opacity: 1;

}

.gallery-item.large {

    grid-column: span 7;

    height: 650px;

}

.gallery-item.wide {

    grid-column: span 8;

    height: 340px;

}

.gallery-item.tall {

    grid-column: span 4;

    height: 650px;

}

.gallery-item:not(.large):not(.wide):not(.tall) {

    grid-column: span 4;

    height: 310px;

}

/*====================================
    INVESTMENT
    ====================================*/

.investment-section {

    padding-top: 60px;

    padding-bottom: 120px;

    background: #ffffff;

}

.investment-box {

    padding: 80px;

    border-radius: 40px;

    background:

        linear-gradient(135deg,

            #0A4FC7,

            #1F73FF,

            #34B76E);

    overflow: hidden;

    position: relative;

    color: #fff;

}

.investment-box::before {

    content: "";

    position: absolute;

    right: -120px;

    top: -120px;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

}

.investment-box h2 {

    font-size: 64px;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 25px;

    color: #fff;

}

.investment-box p {

    font-size: 20px;

    line-height: 1.9;

    opacity: .9;

    margin: 0;

}

.investment-box .section-subtitle {

    background: rgba(255, 255, 255, .15);

    color: #fff;

}

.investment-box .section-subtitle:before {

    background: #fff;

}

/*====================================
    TIMELINE
    ====================================*/

.progress-section {

    background: #F6FAFD;

}

.timeline {

    position: relative;

    margin-top: 90px;

    padding-left: 60px;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 18px;

    top: 0;

    width: 4px;

    height: 100%;

    background: linear-gradient(var(--primary),

            var(--green));

    border-radius: 20px;

}

.timeline-item {

    position: relative;

    margin-bottom: 70px;

}

.timeline-dot {

    position: absolute;

    left: -54px;

    top: 28px;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: #fff;

    border: 5px solid var(--primary);

    box-shadow: 0 0 0 8px rgba(12, 99, 243, .08);

}

.timeline-item.completed .timeline-dot {

    background: var(--green);

    border-color: var(--green);

}

.timeline-item.active .timeline-dot {

    animation: pulse 2s infinite;

}

.timeline-card {

    background: #fff;

    padding: 38px;

    border-radius: 30px;

    box-shadow: var(--shadow);

    transition: .35s;

}

.timeline-card:hover {

    transform: translateX(12px);

    box-shadow: var(--shadow-hover);

}

.timeline-card span {

    display: inline-flex;

    width: 48px;

    height: 48px;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #EEF5FF;

    color: var(--primary);

    font-weight: 800;

    margin-bottom: 20px;

}

.timeline-card h3 {

    font-size: 28px;

    font-weight: 800;

    margin-bottom: 15px;

    color: var(--dark);

}

.timeline-card p {

    font-size: 17px;

    line-height: 1.9;

    color: var(--text);

    margin: 0;

}

@keyframes pulse {

    0% {

        box-shadow: 0 0 0 0 rgba(12, 99, 243, .45);

    }

    100% {

        box-shadow: 0 0 0 22px rgba(12, 99, 243, 0);

    }

}

/*====================================
CONTACT SECTION
====================================*/

.contact-section {

    position: relative;

    background: url("../images/footer_image.webp") center/cover no-repeat;

    padding: 140px 0;

    overflow: hidden;

}

.contact-overlay {

    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg, rgba(5, 25, 50, 0.92), rgb(0 0 0 / 82%));
    opacity: 0.5;

}

.contact-box {

    position: relative;

    z-index: 2;

    padding: 80px;

    border-radius: 36px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, .15);

}

.contact-box h2 {

    font-size: 68px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 30px;

    color: #fff;

}

.contact-box p {

    font-size: 16px;

    /* line-height:2; */

    color: rgba(255, 255, 255, .9);

    margin-bottom: 20px;

}

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.contact-item {

    display: flex;

    align-items: center;

    gap: 22px;

}

.contact-item i {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    font-size: 28px;

    background: rgba(255, 255, 255, .15);

    color: #fff;

}

.contact-item strong {

    display: block;

    font-size: 20px;

    font-weight: 800;

    color: #fff;

    margin-bottom: 5px;

}

.contact-item span {

    font-size: 15px;

    color: rgba(255, 255, 255, .7);

}

.contact-form {

    padding: 45px;

    background: #fff;

    border-radius: 30px;

    box-shadow: 0 40px 90px rgba(0, 0, 0, .15);

}

.contact-form .form-control {

    height: 64px;

    border-radius: 18px;

    border: 1px solid #E5EDF6;

    padding: 18px 22px;

    font-size: 16px;

    box-shadow: none;

    transition: .35s;

}

.contact-form textarea.form-control {

    height: 180px;

    resize: none;

    padding-top: 18px;

}

.contact-form .form-control:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(12, 99, 243, .08);

}

/*====================================
    FOOTER
    ====================================*/

.footer {

    position: relative;

    background: #061B33;

    padding-top: 120px;

    color: #fff;

    overflow: hidden;

}

.footer::before {

    content: "";

    position: absolute;

    top: -220px;

    right: -220px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .03);

}

.footer-logo {

    height: 80px;

    margin-bottom: 30px;

}

.footer-text {

    font-size: 17px;

    line-height: 2;

    color: rgba(255, 255, 255, .75);

    max-width: 420px;

    margin-bottom: 35px;

}

.footer h5 {

    font-size: 22px;

    font-weight: 800;

    margin-bottom: 30px;

}

.footer ul {

    padding: 0;

    margin: 0;

    list-style: none;

}

.footer li {

    margin-bottom: 18px;

}

.footer a {

    text-decoration: none;

    color: rgba(255, 255, 255, .72);

    transition: .35s;

}

.footer a:hover {

    color: #fff;

    padding-left: 8px;

}

.footer-social {

    display: flex;

    gap: 16px;

    margin-top: 35px;

}

.footer-social a {

    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, .08);

    font-size: 22px;

}

.footer-social a:hover {

    background: linear-gradient(135deg,

            var(--primary),

            var(--green));

    padding-left: 0;

    transform: translateY(-6px);

}

.newsletter {

    display: flex;

    margin-top: 25px;

    background: #fff;

    padding: 8px;

    border-radius: 18px;

}

.newsletter input {

    flex: 1;

    border: none;

    outline: none;

    padding: 0 18px;

    font-size: 15px;

}

.newsletter button {

    width: 60px;

    height: 60px;

    border: none;

    border-radius: 16px;

    background: linear-gradient(135deg,

            var(--primary),

            var(--green));

    color: #fff;

    font-size: 22px;

}

.footer-bottom {

    margin-top: 90px;

    padding: 35px 0;

    border-top: 1px solid rgba(255, 255, 255, .08);

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 15px;

    color: rgba(255, 255, 255, .55);

}

/*====================================
    FLOATING BUTTONS
    ====================================*/

.floating-actions {

    position: fixed;

    right: 30px;

    bottom: 30px;

    display: flex;

    flex-direction: column;

    gap: 16px;

    z-index: 999;

}

.floating-btn {

    width: 46px;
    height: 46px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--primary);
    font-size: 15px;
    transition: .35s;
    position: relative;
    text-decoration: none;

}

.floating-btn span {

    position: absolute;

    right: 80px;

    white-space: nowrap;

    background: #061B33;

    color: #fff;

    padding: 10px 18px;

    border-radius: 12px;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

}

.floating-btn:hover {

    transform: translateY(-8px);

    background: linear-gradient(135deg,

            var(--primary),

            var(--green));

    color: #fff;

}

.floating-btn:hover span {

    opacity: 1;

    visibility: visible;

}

/*====================================
    BACK TO TOP
    ====================================*/

.back-top {

    position: fixed;

    left: 35px;

    bottom: 35px;

    width: 60px;

    height: 60px;

    border: none;

    border-radius: 18px;

    background: linear-gradient(135deg,

            var(--primary),

            var(--green));

    color: #fff;

    font-size: 24px;

    cursor: pointer;

    display: none;

    box-shadow: var(--shadow);

    z-index: 999;

    transition: .35s;

}

.back-top:hover {

    transform: translateY(-8px);

}

/*====================================
LOADER
====================================*/

#loader {

    position: fixed;

    inset: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    /* background:linear-gradient(135deg,#04182F,#0C63F3); */

    z-index: 999999;
    background: #ffffff;
    transition: 1s;
    backdrop-filter: blur(15px);


}

#loader.hide {

    opacity: 0;

    visibility: hidden;

}

.loader-logo {

    width: 140px;

    margin-bottom: 40px;

    animation: loaderLogo 1.8s ease infinite alternate;

}

.loader-logo img {

    width: 100%;

    display: block;

}

.loader-line {

    width: 220px;

    height: 4px;

    border-radius: 50px;

    background: #04182F;

    overflow: hidden;

    position: relative;

}

.loader-line::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: #fff;

    animation: loaderLine 2s linear infinite;

}

@keyframes loaderLogo {

    100% {

        transform: translateY(-12px);

    }

}

@keyframes loaderLine {

    100% {

        left: 100%;

    }

}

/*====================================
    FLOATING LEAVES
    ====================================*/

.leaf {

    position: fixed;

    pointer-events: none;

    z-index: 3;

    opacity: .55;

    animation: leafFloat linear infinite;

}

.leaf img {

    width: 100%;

    display: block;

}

.leaf-1 {

    width: 48px;

    top: 10%;

    left: 6%;

    animation-duration: 14s;

}

.leaf-2 {

    width: 65px;

    top: 35%;

    right: 7%;

    animation-duration: 18s;

    animation-delay: 2s;

}

.leaf-3 {

    width: 42px;

    bottom: 18%;

    left: 10%;

    animation-duration: 16s;

    animation-delay: 4s;

}

.leaf-4 {

    width: 55px;

    top: 68%;

    right: 15%;

    animation-duration: 19s;

}

.leaf-5 {

    width: 38px;

    top: 22%;

    left: 48%;

    animation-duration: 15s;

}

@keyframes leafFloat {

    0% {

        transform: translateY(0) rotate(0deg);

    }

    25% {

        transform: translateY(-15px) rotate(5deg);

    }

    50% {

        transform: translateY(10px) rotate(-5deg);

    }

    75% {

        transform: translateY(-12px) rotate(4deg);

    }

    100% {

        transform: translateY(0) rotate(0deg);

    }

}

/*====================================
    CUSTOM CURSOR
    ====================================*/

.cursor {

    position: fixed;

    width: 42px;

    height: 42px;

    border: 2px solid rgba(12, 99, 243, .45);

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    transition:

        width .25s,

        height .25s,

        background .25s,

        border .25s;

    z-index: 999999;

}

.cursor-dot {

    position: fixed;

    width: 8px;

    height: 8px;

    background: var(--primary);

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 999999;

}

.cursor.active {

    width: 80px;

    height: 80px;

    background: rgba(12, 99, 243, .12);

    border-color: transparent;

}

/*====================================
    LIGHTBOX
    ====================================*/

.gallery-lightbox {

    position: fixed;

    inset: 0;

    background: rgba(3, 14, 27, .95);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .45s;

    z-index: 99999;

}

.gallery-lightbox.active {

    opacity: 1;

    visibility: visible;

}

.gallery-lightbox img {

    max-width: 88%;

    max-height: 88%;

    border-radius: 22px;

    box-shadow: 0 35px 80px rgba(0, 0, 0, .35);

}

.gallery-close,

.gallery-prev,

.gallery-next {

    position: absolute;

    width: 64px;

    height: 64px;

    border: none;

    border-radius: 18px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    color: #fff;

    font-size: 24px;

    cursor: pointer;

    transition: .35s;

}

.gallery-close {

    top: 35px;

    right: 35px;

}

.gallery-prev {

    left: 40px;

}

.gallery-next {

    right: 40px;

}

.gallery-close:hover,

.gallery-prev:hover,

.gallery-next:hover {

    background: var(--primary);

}

/*====================================
    VIDEO MODAL
    ====================================*/

.modal-content {

    background: #081B34;

    border: none;

    border-radius: 30px;

    overflow: hidden;

}

.modal-content .btn-close {

    position: absolute;

    right: 25px;

    top: 25px;

    z-index: 10;

    filter: invert(1);

}

/*====================================
    GLASS EFFECT
    ====================================*/

.glass {

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(28px);

    border: 1px solid rgba(255, 255, 255, .15);

}

/*====================================
    COMMON ANIMATION
    ====================================*/

.fade-up {

    opacity: 0;

    transform: translateY(40px);

    transition: 1s;

}

.fade-up.show {

    opacity: 1;

    transform: none;

}

/*====================================
    UTILITY CLASSES
    ====================================*/

.radius-xl {

    border-radius: 36px;

}

.radius-lg {

    border-radius: 26px;

}

.radius-md {

    border-radius: 18px;

}

.shadow-soft {

    box-shadow: var(--shadow);

}

.shadow-hover {

    transition: .35s;

}

.shadow-hover:hover {

    box-shadow: var(--shadow-hover);

    transform: translateY(-8px);

}

.text-primary {

    color: var(--primary) !important;

}

.text-green {

    color: var(--green) !important;

}

.bg-gradient {

    background: linear-gradient(135deg,

            var(--primary),

            var(--green));

    color: #fff;

}

.object-cover {

    object-fit: cover;

}

.overflow-hidden {

    overflow: hidden;

}

/*====================================
SMOOTH SCROLLBAR (OPTIONAL)
====================================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #EDF3FA;

}

::-webkit-scrollbar-thumb {

    background: linear-gradient(180deg,

            var(--primary),

            var(--green));

    border-radius: 30px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--primary);

}

/*====================================
    TEXT SELECTION
    ====================================*/

::selection {

    background: var(--primary);

    color: #fff;

}

/*====================================
    IMAGE HOVER
    ====================================*/

img {

    user-select: none;

    -webkit-user-drag: none;

}

/*====================================
    LINK RESET
    ====================================*/

a {

    transition: .35s;

}

a:hover {

    text-decoration: none;

}

/*====================================
    BUTTON RESET
    ====================================*/

button {

    outline: none;

    box-shadow: none;

}

button:focus {

    outline: none;

    box-shadow: none;

}

.language-btn svg {
    margin-right: 5px;
}

.back-top i {
    padding-left: 18px;
    padding-top: 12px;
}

.contact-box h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-feature-settings: "case";
}

.call-modal {

    border: 0;

    border-radius: 28px;

    padding: 40px;

    overflow: hidden;

    background: #fff;

    box-shadow: 0 40px 120px rgba(0, 0, 0, .15);

}

.call-header {

    text-align: center;

    margin-bottom: 35px;

}

.call-icon {

    width: 85px;

    height: 85px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(135deg, #0C63F3, #0E84FF);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    color: white;

    margin-bottom: 20px;

    box-shadow: 0 20px 40px rgba(12, 99, 243, .25);

}

.call-header h2 {

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 10px;

}

.call-header p {

    color: #777;

}

.modern-input {

    height: 58px;

    border-radius: 16px;

    border: 1px solid #E5E5E5;

    padding-left: 20px;

    font-size: 15px;

    box-shadow: none !important;

}

.modern-input:focus {

    border-color: #0C63F3;

}

.iti {

    width: 100%;

}

.iti input {

    padding-left: 88px !important;

}

.modal-dialog{

    max-width:620px;

}

.call-modal{

    border:none;
    border-radius:30px;
    overflow:visible !important;
    position:relative;
    padding:45px;

}

.modal-content{

    overflow:visible !important;

}

.modal-body{

    overflow:visible !important;

}

.modal{

    overflow-y:auto;

}

.iti{

    width:100%;

    display:block;

}

.iti--allow-dropdown{

    width:100%;

}

.iti__country-container{

    z-index:999999;

}

.iti__selected-country{

    border-radius:16px 0 0 16px;

}

.iti input{

    width:100%;

    height:60px;

    border-radius:18px;

    padding-left:95px !important;

    font-size:16px;

}

.iti__dropdown-content{

    border-radius:18px;

    box-shadow:0 25px 80px rgba(0,0,0,.18);

}

.iti__country-list{

    z-index:999999999;

    max-height:260px;

}

.modern-group{

    border:1px solid #e9e9e9;
    border-radius:18px;
    overflow:hidden;
    height:60px;
    background:#fff;

}

.modern-group .input-group-text{

    background:#fff;
    border:none;
    padding:0 20px;
    color:#777;

}

.modern-group .form-control{

    border:none;
    box-shadow:none;
    font-size:16px;

}

.modal-dialog{

    max-width:620px;

}

.modal-content{

    border:none;

    border-radius:32px;

    overflow:visible;

    background:#fff;

    box-shadow:0 40px 120px rgba(0,0,0,.20);

}

.modal-body{

    padding:55px;

}

.custom-close{

    position:absolute;

    top:20px;

    right:20px;

    z-index:10;

}

.modal-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0C63F3,#1B7CFF);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    margin-bottom:25px;

    box-shadow:0 20px 40px rgba(12,99,243,.25);

}

.modal-body h2{

    text-align:center;

    font-size:46px;

    font-weight:700;

    margin-bottom:10px;

}

.modal-body p{

    text-align:center;

    color:#777;

    margin-bottom:35px;

}

.modern-group{

    height:62px;

    border:1px solid #ECECEC;

    border-radius:18px;

    overflow:hidden;

    background:white;

}

.modern-group .input-group-text{

    border:none;

    background:white;

    padding:0 20px;

    color:#8d8d8d;

    font-size:18px;

}

.modern-group .form-control{

    border:none;

    box-shadow:none;

    font-size:16px;

}

.phone-input{

    height:62px;

    border-radius:18px;

}

.iti{

    width:100%;

}

.iti input{

    width:100%;

    height:62px;

    border-radius:18px;

    padding-left:92px!important;

    font-size:16px;

}

.iti__country-list{

    z-index:999999999;

    border-radius:18px;

    box-shadow:0 20px 80px rgba(0,0,0,.20);

}

.submit-btn{

    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    color:white;

    font-size:18px;

    font-weight:600;

    background:linear-gradient(135deg,#0C63F3,#1978FF);

    transition:.3s;

}

.submit-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(12,99,243,.35);

}

.privacy{

    margin-top:22px;

    text-align:center;

    color:#888;

    font-size:14px;

}

.privacy i{

    margin-right:8px;

}

.iti__country-container{

    z-index:999999;

}

.modal{

    overflow-y:auto;

}

.premium-contact-form{

    width:100%;

}

.modern-group{

    height:64px;

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:18px;

    overflow:hidden;

    transition:.3s;

}

.modern-group:hover{

    border-color:#0C63F3;

}

.modern-group:focus-within{

    border-color:#0C63F3;

    box-shadow:0 10px 30px rgba(12,99,243,.12);

}

.modern-group .input-group-text{

    background:#fff;

    border:none;

    padding:0 22px;

    color:#9A9A9A;

    font-size:18px;

}

.modern-group .form-control{

    border:none;

    box-shadow:none;

    background:transparent;

    font-size:16px;

    color:#222;

}

.textarea-group{

    height:auto;

    min-height:170px;

    align-items:flex-start;

}

.textarea-group textarea{

    resize:none;

    padding-top:22px;

}

.phone-input{

    height:64px;

    border-radius:18px;

}

.iti{

    width:100%;

}

.iti input{

    height:64px;

    border-radius:18px;

    padding-left:92px!important;

    font-size:16px;

}

.iti__country-list{

    z-index:999999;

    border-radius:18px;

    box-shadow:0 20px 80px rgba(0,0,0,.18);

}

.submit-btn{

    width:100%;

    height:64px;

    border:none;

    border-radius:18px;

    background:linear-gradient(135deg,#0C63F3,#1978FF);

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.submit-btn i{

    margin-right:10px;

}

.submit-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(12,99,243,.35);

}

.premium-contact-form .form-control::placeholder{

    transition:.3s;

}

.modern-group:focus-within .form-control::placeholder{

    opacity:.4;

    transform:translateX(6px);

}

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:22px;

}

.footer-icon{

    width:48px;

    height:48px;

    min-width:48px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    color:#0C63F3;

    font-size:18px;

    transition:.35s;

}

.footer-contact li:hover .footer-icon{

    background:#0C63F3;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(12,99,243,.35);

}

.footer-contact a{

    color:#d8d8d8;

    text-decoration:none;

    transition:.3s;

}

.footer-contact span{

    color:#d8d8d8;

    line-height:1.7;

}

.footer-contact li:hover a{

    color:#fff;

}