:root{
    --blue-one:#0275f0;
    --blue-two:#38bcf5;
    --blue-three:#1e75f7;
    --blue-four:#e2f4fe;
    --blue-five:#38c5fc;
    --primary-color:#047cc2;
    --secondry-color:#065780;
    --third-color:#056686;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    font-size:16px;
    scroll-behavior:smooth;
}
ul{
    list-style:none;
}
a{
    text-decoration:none;
}
img{
    max-width:100%;
    height:auto;
    display:block;
}
button{
    cursor:pointer;
    border:none;
    outline:none;
}
body{
    overflow-x:hidden;
}
section{
    max-width: 100vw;
}
.section-title h2{
    font-size: 2.5rem;
    font-weight: 700;    
    margin-bottom: 20px;
    color: var(--secondry-color);
}
.sec-content.w-70 p{
    width: 80%;
}
.sec-content p{
    font-size: 1.1rem;
    line-height: 1.4;
    color: #555;
}
.sec-list ul li{
    list-style: disc;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.spacer{
    width: 100%;
    height:50px;
}
.sec-subTitle h6{
    font-size: 1rem;
    font-weight: 600;    
    margin-bottom: 10px;    
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    transform: skewX(-15deg);
    position: relative;
}
.sec-subTitle h6::before{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background: rgba(11, 92, 142, 0.6);
    z-index:-1;
    transform: skewX(-10deg);
}
.sec-subTitle h6::after{
    content: '';
    position: absolute;
    height: 80%;
    width: 20px;
    background: rgba(11, 92, 142, 0.8);
    transform: skewX(-10deg);
}
/* ================= header section ================== */ 
#top-header{
    width: 100%;
    padding:20px 3rem;
}
.header-wrapper{
    width: 100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.main-logo img{
    max-width:150px;
}
nav ul{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom: 0;
}
nav ul li a{
    color:var(--secondry-color);
    font-size: 1rem;
    font-weight:500;
    transition:0.3s;
    text-decoration: none;
}
nav ul li a:hover{
    color:var(--primary-color);
}
.menubar-btn a{
    background:var(--secondry-color);
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-weight:500;
    transition:0.3s;
    text-decoration: none;
    display: inline-block;
}
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}
.hamburger span{
    width:25px;
    height:3px;
    background:var(--secondry-color);
    border-radius:5px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
    opacity:0;
}
.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(5px,-5px);
}

/* ========================== hero section ====================== */
#hero{
    width: 100%;
    height:100vh;
    display:flex;
    align-items:center;
    background: url(../images/banner3.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}
#hero::after{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background: linear-gradient(to right, rgba(2, 47, 76, 0.8) 60%, rgba(11, 92, 142, 0.6), rgba(1, 43, 63, 0.3));
    z-index:1;
}
.hero-left-wrapper{
    margin-top: -50px;
}
.hero-content{
    position: relative;
    z-index:2;
    color:#fff;
    max-width:600px;
    padding:0 3rem;
    text-align: center;
}
.hero-title h1{
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    /* color: #00f86f; */
}
.hero-title h1 span{
    display: inline-block;
    color:#00f86f;    
    animation: jump 4s ease-in-out infinite forwards;
}
@keyframes jump{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-20px);
    }
}
.hero-btn-box-wrapper{
    width: 100%;
    display: flex;
    /* justify-content: center; */
    gap:20px;
    margin-top: 30px;
    position: relative;
    z-index:2;
}
.hero-btn-box{
    display: flex;
    gap:20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.hero-btn-box a{
    padding: 10px 20px;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.hero-btn-box a i{
    margin-right: 10px;
    font-size: 1.5rem;
}
.hero-btn-box a:nth-child(1){
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.hero-btn-box a:nth-child(2){
    background: #00f86f;
}
.hero-text-box p{
    color:#fff;
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.5;
    text-align: center;
}
.hero-right{
    margin-top: -100px;
    display: flex;
    justify-content: flex-end    
}
.hero-form-right{
    position: relative;
    z-index:2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    padding: 30px;
    max-width: 530px;
    border-radius: 30px;
}
.hero-form{
    background: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 30px;
    max-width: 500px;
    border-radius: 10px;
}
.contact-form form input, .contact-form form select,
.hero-form form input, .hero-form form select{
    width: 100%;
    padding:10px 15px;
    margin-bottom: 15px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size: 1rem;
    outline:none;
}
form .w-100{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
form .w-100 input{
    width: 10%;
    margin-bottom: 0;
}

/* ================ core value ========== */
.core-value-image{
    height: 100%;
    max-height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(7, 158, 106, 0.1);
}
.core-value-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.core-values{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    padding-left: 3rem;
}
.sec-button a{
    display: inline-block;
    background: var(--secondry-color);
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-weight:500;
    transition:0.3s;
    text-decoration: none;
    margin-top: 20px;
}
.sec-button a i{
    margin-right: 10px;
}
/* ================ offer ================ */
#offer{
    padding:80px 3rem;
    background:var(--blue-four);
    text-align: center;
}
.offer-title-one h2{
    font-size: 4rem;
    font-weight: 700;
    color: #00f86f;
    -webkit-text-stroke: 1px #b19209;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    
}
.offer-title-two h3{
    color:#000;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.offer-timeline{
    margin-bottom: 30px;
}
.offer-timeline span{
    display: inline-block;
    /* border: 2px solid #b69603; */
    /* background-color: #00f86f; */
    /* background: #057986; */
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    color: #000;
    font-weight: 500;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.offer-box-wrapper{
    display: flex;
    justify-content: center;
    gap:20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.offer-box-wrapper .offer-box{
    background: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;  
    text-align: center;
        border: 2px solid #b69603;
    background-color: #00f86f;
}
/* ============================== Project overview ================ */
#project-overview{
    padding:80px 3rem;     
}
.project-box-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    flex-wrap: wrap;
}
.project-box{
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 4px 4px 6px rgba(7, 158, 106, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;  
    padding: 10px;
    flex: 25%;
    max-width: calc(25% - 20px);
}
.project-box .icon{
    width: 60px;
    height:60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.p-title h3{
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondry-color);
    margin-bottom: 10px;
}
.ptext p{
    font-size: .8rem;
    line-height: 1;
    color: #555;
}

/* ================= location & connectivity===================== */
#location{
    padding:80px 0;     
}
.location-details-bos-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.location-detail-box{
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 4px 4px 6px rgba(7, 158, 106, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;  
    padding: 20px;
    flex: 50%;
    max-width: calc(50% - 20px);
    display: flex;
    align-items: center;
    gap:20px;
}
.loc-icon img{
    max-width:40px;
}
.loc-text h5{
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 5px;
}
.loc-text p{
    font-size: .8rem;
    line-height: 1.2;
    color: #555;
    margin-bottom: 0;
}
.location-box-wrapper{
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 0 8px rgba(7, 158, 106, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;  
    padding: 20px;
}
.location-title{
    display: flex;
    align-items: center;
    gap:10px;
    margin-bottom: 15px;
}
.location-title h6{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 0;
}
.location-text p{
    font-size: 1rem;
    line-height: 1.4;
    color: #555;
    margin-bottom: 0;
    text-align: center;
    padding: 20px 0;
}
.nerarby-landmark{
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 0 8px rgba(7, 158, 106, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;  
    padding: 20px; 
    margin-top: 20px;
}
.nearby-title h4{
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 10px;
}
.nearby-list ul{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap:5px 20px;
    flex-wrap: wrap;
    padding-left: 0;
}
.nearby-list ul li{
    flex: 50%;
    max-width: calc(50% - 20px);
    display: flex;
    justify-content: space-between;
}
.nearby-list ul li span{
    font-size: .9rem;
    color: #555;
}

/* ==================amenities ================ */
#amenities{
    padding:80px 3rem;     
}    
.tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      background: #f3fbff;
      border-radius: 12px;
      padding:10px 5px;
      max-width: 100%;
      margin: 30px auto;
      flex-wrap: wrap;
      box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
    }

    .tab {
      padding: 5px 25px;
      border-radius: 10px;
      background: transparent;
      border: none;
      font-size: .9rem;
      font-weight: 500;
      color: #444;
      cursor: pointer;
      transition: 0.3s;
    }

    .tab.active {
      background: #fff;
      color: #000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* Content */
    .tab-content {
      display: none;
      animation: fadeIn 0.5s ease;
    }

    .tab-content.active {
      display: grid;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-body {
      padding: 15px;
    }

    .card-body h3 {
      margin: 0 0 8px;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .card-body p {
      margin: 0;
      color: #666;
      font-size: 0.95rem;
      line-height: 1.4;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }


 /* ==================== contact ==========    */
 #contact{
    padding:80px 3rem;
    background:var(--secondry-color);
}
.contact-form{
    background: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 30px;
    max-width: 500px;
    border-radius: 10px;
    margin: auto;
}
.contact-title{
    color: #fff;
}
.contact-icon-box{
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap:15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    max-width: 400px;
    margin-top: 25px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.contact-icon{
    width: 60px;
    height:60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    color: var(--secondry-color);
}
.contact-text h4{
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}
.contact-text a{
    font-size: 1rem;
    line-height: 1.2;
    color: #d8d8d8;
    margin-bottom: 0;
}
/* ================= amenities ================ */ 
#amenities{
    padding:80px 3rem;     
}
.amenities-image{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    border: 2px solid #eee;
    padding: 2px;
}
.amenities-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.amenities-wrapper{
    display: flex;    
    gap:20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.amenities-box{
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.amenities-box img{
    width: 80px;
    height:80px;
    object-fit: contain;
    border: 1px solid #000;
    border-radius: 50%;
    padding: 5px;
}
.amenities-box h6{
    text-align: center;
    font-size: 0.8rem;
    padding-top: 3px;
}
/* ================ floor plan =========== */
.floor-plan-wrapper{
    width: 100%;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.floor-plan-box{
    border: 2px solid #eee;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.floor-plan-box img{
    width: 100%;
}
/* ========================= media queries ========================= */

@media screen and (max-width:1200px){
    :root{
        font-size:14px;
    }
    #top-header{
        padding:20px 2rem;
    }
    nav ul{
        gap:15px;
    }
    .main-logo img{
        max-width:90px;
    }
}

@media screen and (max-width:991px){
    .hamburger{
        display:flex;
    }
    nav{
        position:fixed;
        top:0;
        left:-100%;
        width:250px;
        height:100vh;
        background:#fff;
        box-shadow:2px 0 10px rgba(0,0,0,0.1);
        padding:50px 20px;
        transition:0.3s;
        z-index:9999;
    }
    nav.active{
        left:0;
    }
    nav ul{
        flex-direction:column;
        gap:12px;
        align-items: flex-start;
    }
    nav ul li a{
        font-size:1.2rem;
        text-align: left;
    }
    .project-box{        
        flex: 50%;
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width:600px){

    :root{
        font-size:12px;
    }
    #hero{
        height: auto;;
    }
    .hero-content{
        padding:0 1rem;
    }
    .hero-right{
        margin-top: 0;
    }
    .hero-form-right{
        padding: 20px 1rem;
    }
    .hero-form{
        padding: 10px;
    }
    #top-header{
        padding:15px 1rem;
    }
    .menubar-btn a{
        padding:8px 15px;
        font-size:0.9rem;
    }
    .menubar-btn{
        display:none;
    }
    .hero-left-wrapper {
        margin-top: 10px;
    }
    .core-values{
        padding: 10px 1rem;
    }
    #contact,
    #amenities,
    #location,
    #project-overview{
        padding: 15px 1rem;
    }
    .project-box {
        flex: 50%;
        max-width: calc(50% - 10px);
        height: auto;
    }
    .location-detail-box{
        gap: 10px;
        padding: 10px;
        max-width: calc(50% - 10px);
    }
    .loc-icon img {
        max-width: 30px;
    }
    .contact-icon-box{
        margin-top: 20px;
    }
    .contact-form{
        margin-top: 20px;
        padding: 10px;
    }
    .amenities-wrapper{
        gap: 10px;
    }
    .amenities-box{
        flex: 50%;
        max-width: calc(50% - 10px);
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
    
}