*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    color:#333;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.header{
    background:#001F5B;
    padding:5px 0;
    position:sticky;
    top:0;
    z-index:999;
}
.logo img{
    width:210px;
}
.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:28px;
    font-weight:700;
}

.logo span{
    color:#D4A017;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    color:#fff;
    text-decoration:none;
}

.btn{
    background:#006B4A;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    background:none;
}

.hero{
    height:95vh;
    background:url('../img/hero.png') center/cover;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
    padding-top:180px;
}

.hero h1{
    font-size:60px;
    margin:25px 0;
}

.hero p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
}

.badge{
    background:#D4A017;
    padding:10px 20px;
    border-radius:30px;
}

.hero-buttons{
    margin-top:40px;
}

.btn-outline-white{
    border:2px solid #fff;
    background:none;
    margin-left:20px;
}

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#006B4A;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    margin-top:15px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-content{
    padding:30px;
}

.card-content h3{
    margin-bottom:15px;
}

.card-content p{
    margin-bottom:20px;
    line-height:1.8;
}

.card-content a{
    color:#006B4A;
    text-decoration:none;
    font-weight:600;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature{
    background:#fff;
    text-align:center;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.feature i{
    font-size:40px;
    color:#006B4A;
    margin-bottom:20px;
}

.stats{
    background:#001F5B;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stats h2{
    font-size:50px;
    color:#D4A017;
}

.about p{
    max-width:900px;
    margin:auto;
    text-align:center;
    line-height:2;
}

.newsletter{
    background:#006B4A;
    color:#fff;
    text-align:center;
}

.newsletter form{
    margin-top:40px;
}

.newsletter input{
    width:400px;
    padding:18px;
    border:none;
    border-radius:10px;
}

.newsletter button{
    padding:18px 30px;
    border:none;
    background:#D4A017;
    color:#001F5B;
    border-radius:10px;
    margin-left:10px;
    font-weight:700;
}

footer{
    background:#001F5B;
    color:#fff;
    padding:70px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

footer a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-top:12px;
}

.journey-section{
    padding:120px 0;
    background:#f7f9fc;
}

.heading{
    text-align:center;
    max-width:800px;
    margin:auto auto 70px;
}

.heading span{
    color:#006B4A;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.heading h2{
    font-size:52px;
    color:#001F5B;
    margin:20px 0;
}

.heading p{
    color:#666;
    line-height:1.9;
}

.destination-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.destination-card{
    position:relative;
    height:320px;
    border-radius:35px;
    overflow:hidden;
    text-decoration:none;
    background-size:cover;
    background-position:center;
    transition:.5s;
}

.destination-card:nth-child(1),
.destination-card:nth-child(4){
    grid-column:span 2;
}

.destination-card:hover{
    transform:translateY(-10px);
}

.destination-card:hover{
    background-size:110%;
}

.destination-card .overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.25)
    );
}

.destination-card .content{
    position:absolute;
    bottom:40px;
    left:40px;
    right:40px;
    z-index:2;
    color:#fff;
}

.tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(20px);
    border-radius:100px;
    margin-bottom:20px;
}

.destination-card h3{
    font-size:46px;
    margin-bottom:15px;
}

.destination-card p{
    max-width:550px;
    line-height:1.8;
    opacity:.95;
}

.arrow{
    position:absolute;
    right:0;
    bottom:0;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#D4A017;
    color:#001F5B;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    font-weight:700;
    transition:.4s;
}

.destination-card:hover .arrow{
    transform:translateX(8px);
}

/* Images */

.services{
    background-image:
    url(images/services.jpg);
}

.property{
    background-image:
    url(images/property.jpg);
}

.community{
    background-image:
    url(images/community.jpg);
}

.tv{
    background-image:
    url(images/tv.jpg);
}

@media(max-width:991px){

    .destination-grid{
        grid-template-columns:1fr;
    }

    .destination-card:nth-child(1),
    .destination-card:nth-child(4){
        grid-column:auto;
    }

    .heading h2{
        font-size:38px;
    }

    .destination-card{
        height:280px;
    }

    .destination-card h3{
        font-size:34px;
    }
}

.ecosystem{

    background:#f8fafc;

}

.section-title p{

    max-width:760px;

    margin:20px auto 0;

    color:#666;

    line-height:1.9;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:70px;

}

.service-box{

    background:#fff;

    border-radius:24px;

    padding:35px 25px;

    text-align:center;

    text-decoration:none;

    color:#001F5B;

    transition:.35s;

    border:1px solid #edf2f7;

    position:relative;

    overflow:hidden;

}

.service-box:before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(0,107,74,.08);

    right:-80px;

    top:-80px;

    transition:.4s;

}

.service-box:hover:before{

    transform:scale(1.4);

}

.service-box:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

.service-box i{

    width:70px;

    height:70px;

    background:linear-gradient(135deg,#001F5B,#006B4A);

    color:#fff;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin:0 auto 22px;

}

.service-box h4{

    font-size:19px;

    font-weight:600;

}

/*========================*/

.why-section{

    padding:140px 0;

    background:#fff;

}

.why-wrapper{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:80px;

    align-items:center;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#EAF7F2;

    color:#006B4A;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.why-left h2{

    font-size:54px;

    color:#001F5B;

    line-height:1.15;

    margin-bottom:25px;

}

.why-left>p{

    line-height:2;

    color:#666;

    margin-bottom:50px;

}

.why-list{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.why-item{

    display:flex;

    gap:25px;

}

.why-icon{

    min-width:65px;

    height:65px;

    border-radius:18px;

    background:linear-gradient(135deg,#001F5B,#006B4A);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

}

.why-item h4{

    margin-bottom:8px;

    color:#001F5B;

}

.why-item p{

    color:#666;

    line-height:1.8;

}

.why-right{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

}

.floating-card{

    padding:40px;

    border-radius:30px;

    color:#fff;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    transition:.4s;

}

.floating-card:hover{

    transform:translateY(-12px);

}

.blue{

    background:linear-gradient(135deg,#001F5B,#003A8C);

}

.green{

    background:linear-gradient(135deg,#006B4A,#00A76F);

}

.gold{

    background:linear-gradient(135deg,#D4A017,#F4C542);

    color:#001F5B;

}

.dark{

    background:linear-gradient(135deg,#1D1D1D,#444);

}

.floating-card h3{

    font-size:48px;

    margin-bottom:10px;

}

.floating-card span{

    font-size:16px;

}

/*=========================*/

.about-platform{

    padding:140px 0;

    background:#f8fafc;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:90px;

    align-items:center;

}

.about-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:#EAF7F2;

    color:#006B4A;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.about-left h2{

    font-size:56px;

    color:#001F5B;

    line-height:1.15;

    margin-bottom:30px;

}

.about-left p{

    line-height:2;

    color:#666;

    margin-bottom:22px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:45px 0;

}

.about-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.about-features i{

    color:#006B4A;

}

.about-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#001F5B;

    color:#fff;

    padding:16px 34px;

    border-radius:14px;

    text-decoration:none;

    transition:.35s;

}

.about-btn:hover{

    background:#006B4A;

}

.about-right{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.mission-card,

.vision-card{

    background:#fff;

    padding:45px;

    border-radius:28px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.mission-card:hover,

.vision-card:hover{

    transform:translateY(-10px);

}

.mission-card i,

.vision-card i{

    width:80px;

    height:80px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#fff;

    margin-bottom:25px;

    background:linear-gradient(135deg,#001F5B,#006B4A);

}

.mission-card h3,

.vision-card h3{

    color:#001F5B;

    margin-bottom:15px;

}

.mission-card p,

.vision-card p{

    color:#666;

    line-height:1.9;

}

/*==============================*/

.download-app{

    padding:150px 0;

    background:
    linear-gradient(
    135deg,
    #001F5B,
    #003B8B);

    overflow:hidden;

    position:relative;

}

.app-wrapper{

    display:grid;

    grid-template-columns:1.1fr 1fr;

    align-items:center;

    gap:100px;

}

.app-content{

    color:#fff;

}

.app-content h2{

    font-size:58px;

    margin:25px 0;

    line-height:1.1;

}

.app-content p{

    opacity:.9;

    line-height:2;

    max-width:600px;

}

.app-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin:45px 0;

}

.app-features div{

    display:flex;

    align-items:center;

    gap:10px;

}

.app-features i{

    color:#38d996;

}

.store-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.store-btn{

    background:#fff;

    color:#001F5B;

    text-decoration:none;

    padding:16px 22px;

    border-radius:18px;

    display:flex;

    gap:18px;

    align-items:center;

    transition:.35s;

}

.store-btn:hover{

    transform:translateY(-8px);

}

.store-btn i{

    font-size:34px;

}

.store-btn small{

    display:block;

    font-size:11px;

}

.store-btn strong{

    font-size:18px;

}

.app-image{

    position:relative;

    display:flex;

    justify-content:center;

}

.phone{

    width:330px;

    border-radius:45px;

    overflow:hidden;

    box-shadow:
    0 40px 90px rgba(0,0,0,.35);

}

.phone img{

    width:100%;

    display:block;

}

.floating{

    position:absolute;

    background:#fff;

    padding:15px 22px;

    border-radius:50px;

    box-shadow:
    0 15px 45px rgba(0,0,0,.12);

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.one{

    top:40px;

    left:0;

}

.two{

    top:230px;

    right:-30px;

}

.three{

    bottom:50px;

    left:20px;

}

.floating i{

    color:#006B4A;

}

/*=====================================*/

.cta-section{

    padding:70px 0 70px;

    background:#fff;

}

.cta-box{

    background:
    linear-gradient(
    135deg,
    #001F5B,
    #006B4A);

    border-radius:35px;

    padding:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    right:-120px;

    top:-150px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-80px;

    bottom:-120px;

}

.cta-left{

    max-width:700px;

    position:relative;

    z-index:2;

}

.cta-left span{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    color:#fff;

    font-size:14px;

    letter-spacing:1px;

}

.cta-left h2{

    font-size:56px;

    line-height:1.15;

    color:#fff;

    margin:25px 0;

}

.cta-left p{

    color:rgba(255,255,255,.9);

    line-height:2;

}

.cta-right{

    display:flex;

    flex-direction:column;

    gap:20px;

    position:relative;

    z-index:2;

}

.btn-white{

    background:#fff;

    color:#001F5B;

    text-decoration:none;

    padding:18px 35px;

    border-radius:14px;

    font-weight:600;

    text-align:center;

    transition:.35s;

}

.btn-white:hover{

    transform:translateY(-6px);

}

.btn-green{

    background:#D4A017;

    color:#001F5B;

    text-decoration:none;

    padding:18px 35px;

    border-radius:14px;

    text-align:center;

    font-weight:700;

    transition:.35s;

}

.btn-green:hover{

    transform:translateY(-6px);

}

/*====================================*/

.trust-bar{

    padding:45px 0;

    background:#fff;

    border-bottom:1px solid #edf2f7;

}

.trust-title{

    text-align:center;

    margin-bottom:35px;

}

.trust-title span{

    font-size:15px;

    color:#006B4A;

    font-weight:700;

    letter-spacing:1px;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.trust-item{

    display:flex;

    gap:18px;

    align-items:center;

    transition:.35s;

}

.trust-item:hover{

    transform:translateY(-6px);

}

.trust-icon{

    min-width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    background:linear-gradient(
    135deg,
    #001F5B,
    #006B4A);

    font-size:24px;

}

.trust-item h4{

    color:#001F5B;

    font-size:17px;

    margin-bottom:5px;

}

.trust-item p{

    color:#666;

    font-size:14px;

}

.journey-section{

    padding:120px 0;

    background:#fff;

}

.journey-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.journey-card{

    background:#fff;

    border-radius:28px;

    padding:45px;

    text-decoration:none;

    color:#fff;

    min-height:320px;

    position:relative;

    overflow:hidden;

    transition:.35s;

}

.journey-card:hover{

    transform:translateY(-10px);

}

.services{

    background:
    linear-gradient(135deg,#001F5B,#006B4A);

}

.property{

    background:
    linear-gradient(135deg,#0056b3,#003366);

}

.booking{

    background:
    linear-gradient(135deg,#009966,#00b894);

}

.community{

    background:
    linear-gradient(135deg,#6C2BD9,#3B1D73);

}

.tv{

    background:
    linear-gradient(135deg,#D4A017,#9A6B00);

    color:#001F5B;

}

.icon{

    width:85px;

    height:85px;

    border-radius:22px;

    background:rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    backdrop-filter:blur(20px);

    font-size:34px;

    margin-bottom:35px;

}

.tv .icon{

    background:rgba(255,255,255,.45);

}

.journey-card h3{

    font-size:34px;

    margin-bottom:18px;

}

.journey-card p{

    line-height:1.9;

    opacity:.95;

    margin-bottom:45px;

}

.journey-card span{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    font-weight:600;

}

.tv span{

    background:rgba(255,255,255,.65);

}

.journey-card::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-90px;

    top:-90px;

}

@media(max-width:992px){

    .journey-grid{

        grid-template-columns:1fr;

    }

}

.journey-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:70px;

}

.services{

grid-column:1/-1;

min-height:380px;

}

.service-tags{

display:flex;

flex-wrap:wrap;

gap:14px;

margin-top:35px;

}

.service-tags span{

padding:12px 18px;

border-radius:50px;

background:rgba(255,255,255,.14);

backdrop-filter:blur(12px);

font-size:14px;

display:flex;

align-items:center;

gap:8px;

}

.top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

.label{

padding:10px 18px;

border-radius:50px;

background:rgba(255,255,255,.18);

font-size:13px;

letter-spacing:1px;

font-weight:600;

}

.journey-link{

margin-top:40px;

display:inline-flex;

align-items:center;

gap:12px;

font-weight:600;

font-size:16px;

}

.property,
.booking,
.community,
.tv{

min-height:290px;

}

.header{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    z-index:999;

    transition:.35s;

    padding:18px 0;

    background:rgba(0,31,91,.25);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:210px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:45px;

}

nav a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#D4A017;

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}

nav a:hover{

    color:#D4A017;

}

.header-right{

    display:flex;

    gap:18px;

    align-items:center;

}

.lang,

.menu-btn{

    width:48px;

    height:48px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    cursor:pointer;

    transition:.35s;

}

.lang{

    text-decoration:none;

}

.lang:hover,

.menu-btn:hover{

    background:#006B4A;

}

.menu-btn{

    border:none;

}
.header.sticky{

background:#001F5B;

padding:12px 0;

box-shadow:0 15px 40px rgba(0,0,0,.18);

}

/*========================*/

.footer{

    background:#061633;

    color:#fff;

    padding:90px 0 35px;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr 1.3fr;

    gap:60px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-about img{

    width:210px;

    margin-bottom:25px;

}

.footer-about p{

    line-height:1.9;

    color:#cfd6e6;

}

.footer h4{

    margin-bottom:22px;

    font-size:20px;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:14px;

}

.footer a{

    color:#cfd6e6;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#D4A017;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    transition:.3s;

}

.footer-social a:hover{

    background:#006B4A;

}

.contact-list li{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.contact-list i{

    color:#D4A017;

    margin-top:5px;

}

.footer-bottom{

    margin-top:35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom div{

    display:flex;

    gap:25px;

}