*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fa;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:45px;
    color:#0d1b2a;
}
/* ================= TOP HEADER ================= */
.top-header{
    width:100%;
    margin: 0px;
    background:linear-gradient(90deg,#0d1b2a,#1b263b);
    padding:12px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    position:relative;
    z-index:999;

   
}
.top-contact,
.top-social{
    display:flex;
    align-items:center;
    gap:10px;
}
/* CONTACT */

.top-contact a{
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.4s;
    display:flex;
    align-items:center;
    gap:10px;
}

.top-contact a i{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#00a8ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:15px;
    transition:.4s;
}

.top-contact a:hover{
    color:#00a8ff;
}

.top-contact a:hover i{
    transform:rotate(360deg);
    background:white;
    color:#00a8ff;
}

/* SOCIAL */


.top-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:17px;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.top-social a:hover{
    background:#00a8ff;
    transform:translateY(-6px) scale(1.1);
    box-shadow:0 10px 20px rgba(0,168,255,0.4);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .top-header{
        padding:18px 20px;
    }

    .top-contact{
        flex-direction:column;
        gap:15px;
    }

    .top-contact a{
        font-size:14px;
    }

    .top-social{
        gap:12px;
    }

    .top-social a{
        width:38px;
        height:38px;
        font-size:15px;
    }
}
/* NAVBAR */

header{
    width:100%;
    position:sticky;
    top:0;
    left:0;
    z-index:999;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.navbar{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0;
}

.logo{
    font-size:32px;
    font-weight:700;
}

.logo span{
    color:#00a8ff;
}

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

.dropdown{
    position:absolute;
    top:50px;
    left:0;
    width:250px;
    background:white;
    border-radius:10px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.dropdown li{
    border-bottom:1px solid #eee;
}

.dropdown li:last-child{
    border:none;
}

.dropdown li a{
    display:block;
    padding:8px 10px;
}
.dropdown li a:hover{
    color:#00a8ff;
}
.dropdown-parent:hover .dropdown{
    opacity:1;
    visibility:visible;
}

/* HERO */
/* ================= SLIDER ================= */

.slider{
    width:100%;
    height:100vh;
    margin: 0px;
    padding: 0px 0px;
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content h1{
    font-size:75px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

/* ================= BUTTON ================= */

.btn{
    padding:15px 40px;
    border:none;
    border-radius:50px;
    background:#00a8ff;
    color:white;
    font-size:17px;
    cursor:pointer;
    transition:.4s;
}

.btn:hover{
    background:#0077cc;
}

/* ================= ARROWS ================= */

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(5px);
    color:white;
    font-size:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    cursor:pointer;
    z-index:10;
    transition:.4s;
}

.arrow:hover{
    background:#00a8ff;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
    section{
        padding: 0px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .arrow{
        width:45px;
        height:45px;
        font-size:25px;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }
}
/* ABOUT */

.about-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:50px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
}

.about-content h2{
    font-size:40px;
    margin-bottom:20px;
}

.about-content p{
    line-height:1.8;
}

/* PROPERTY */

.property-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.property-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.4s;
}

.property-card:hover{
    transform:translateY(-10px);
}

.property-card img{
    height:250px;
    object-fit:cover;
}

.property-content{
    padding:25px;
}

.price{
    color:#00a8ff;
    font-size:24px;
    font-weight:700;
    margin:10px 0;
}

.gallery-section {
    padding: 90px 7%;
}

/* =========================
   HEADING
========================= */

.section-title {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-title .small-title {
    display: inline-block;
    color: #c89b3c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title p {
    color: #777;
    line-height: 1.8;
}

/* =========================
   GALLERY GRID
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* =========================
   GALLERY CARD
========================= */

.gallery-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    background: #ddd;
    box-shadow: 0 15px 40px rgba(0,0,0,.10);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

/* =========================
   OVERLAY
========================= */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.48);

    opacity: 0;
    transition: .4s ease;
}

/* =========================
   HOVER
========================= */

.gallery-card:hover img {
    transform: scale(1.12);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* =========================
   ARROW
========================= */

.gallery-arrow {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;

    color: white;
    font-size: 22px;

    transform: scale(.5) rotate(-45deg);
    transition: .45s ease;
}

.gallery-card:hover .gallery-arrow {
    transform: scale(1) rotate(0);
}

/* =========================
   TITLE
========================= */

.image-title {
    position: absolute;
    left: 20px;
    bottom: 20px;

    color: white;
    font-size: 17px;
    font-weight: 500;

    transform: translateY(20px);
    opacity: 0;

    transition: .4s ease;
}

.gallery-card:hover .image-title {
    transform: translateY(0);
    opacity: 1;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;
    inset: 0;

    background: rgba(4,8,15,.95);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 40px;
}

.lightbox.active {
    display: flex;
}

/* =========================
   LIGHTBOX IMAGE
========================= */

.lightbox-image {
    max-width: 90%;
    max-height: 82vh;

    object-fit: contain;

    border-radius: 10px;

    box-shadow: 0 20px 80px rgba(0,0,0,.5);

    animation: imageOpen .35s ease;
}

@keyframes imageOpen {

    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* =========================
   CLOSE
========================= */

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    color: white;

    font-size: 22px;

    cursor: pointer;

    transition: .3s;
}

.close-btn:hover {
    background: #c89b3c;
    transform: rotate(90deg);
}

/* =========================
   LIGHTBOX ARROWS
========================= */

.lightbox-arrow {

    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    color: white;

    font-size: 23px;

    cursor: pointer;

    transition: .3s;
}

.lightbox-arrow:hover {
    background: #c89b3c;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* =========================
   IMAGE COUNTER
========================= */

.image-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    color: white;

    font-size: 14px;

    background: rgba(0,0,0,.4);

    padding: 8px 18px;

    border-radius: 30px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:800px) {

    .gallery-section {
        padding: 70px 5%;
    }

    .section-title h1 {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:550px) {

    .section-title h1 {
        font-size: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        height: 300px;
    }

    .lightbox {
        padding: 20px;
    }

    .lightbox-image {
        max-width: 100%;
    }

    .lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

}

/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#00a8ff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:48px;
    color:#0d1b2a;
    margin-top:12px;
}

/* ================= ADDRESS GRID ================= */

.address-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-bottom:60px;
}

/* ADDRESS CARD */

.address-card{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.address-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#00a8ff10;
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.address-card:hover{
    transform:translateY(-10px);
}

/* ICON */

.address-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#00a8ff;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(0,168,255,0.3);
}

.address-card h3{
    font-size:30px;
    color:#0d1b2a;
    margin-bottom:20px;
}

.address-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:12px;
    font-size:16px;
}

.address-card a{
    color:#00a8ff;
    text-decoration:none;
    font-weight:500;
}

/* ================= CONTACT FORM ================= */

.contact-form{
    background:white;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.contact-form h2{
    font-size:42px;
    color:#0d1b2a;
    margin-bottom:15px;
}

.contact-form p{
    color:#666;
    margin-bottom:35px;
}

/* FORM GRID */

.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px 20px;
    border:1px solid #ddd;
    border-radius:15px;
    outline:none;
    background:#f8fbff;
    font-size:15px;
    transition:.4s;
    margin-bottom:20px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#00a8ff;
    box-shadow:0 0 10px rgba(0,168,255,0.2);
}

.contact-form textarea{
    height:180px;
    resize:none;
}

/* BUTTON */

.btn{
    display:inline-block;
    padding:16px 40px;
    border:none;
    border-radius:50px;
    background:#00a8ff;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:.4s;
}

.btn:hover{
    background:#0077cc;
    transform:translateY(-5px);
}

/* ================= MAP SECTION ================= */

.map-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:60px;
}

.map-box{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.map-box iframe{
    width:100%;
    height:350px;
    border:0;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .section-title h2{
        font-size:38px;
    }

    .contact-form h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .page-banner h1{
        font-size:40px;
    }

    .contact-section{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:30px;
    }

    .address-card{
        padding:30px 20px;
    }

    .contact-form{
        padding:30px 20px;
    }

    .contact-form h2{
        font-size:28px;
    }

    .map-box iframe{
        height:280px;
    }
}

/* Message */

/* ================= PAGE BANNER ================= */

.page-banner{
    width:100%;
    height:45vh;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1400');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.page-banner h1{
    font-size:60px;
    font-weight:700;
    letter-spacing:1px;
}

/* ================= MESSAGE SECTION ================= */

.message-section{
    padding:100px 8%;
}

.message-box{
    background:white;
    border-radius:30px;
    padding:60px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

/* DECORATION */

.message-box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:#00a8ff15;
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.message-box::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#00a8ff10;
    border-radius:50%;
    bottom:-80px;
    left:-80px;
}

/* PROFILE */

.profile{
    display:flex;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

/* ROUND IMAGE */

.profile-image{
    width:260px;
    height:260px;
    border-radius:50%;
    overflow:hidden;
    border:8px solid #00a8ff;
    box-shadow:0 15px 35px rgba(0,168,255,0.3);
    transition:.5s;
}

.profile-image:hover{
    transform:scale(1.05) rotate(2deg);
}

.profile-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* PROFILE CONTENT */

.profile-content{
    flex:1;
}

.profile-content span{
    color:#00a8ff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.profile-content h2{
    font-size:45px;
    color:#0d1b2a;
    margin:12px 0;
}

.profile-content h4{
    color:#555;
    font-size:22px;
    font-weight:500;
    margin-bottom:20px;
}

/* MESSAGE TEXT */

.message-text{
    position:relative;
    z-index:2;
}

.message-text p{
    font-size:17px;
    line-height:2;
    color:#666;
    margin-bottom:22px;
}

/* SIGNATURE */

.signature{
    margin-top:40px;
}

.signature h3{
    font-size:30px;
    color:#0d1b2a;
}

.signature p{
    color:#00a8ff;
    font-weight:600;
    margin-top:6px;
}

/* ICON BOX */

.info-box{
    margin-top:45px;
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.info-card{
    flex:1;
    min-width:220px;
    background:#f8fbff;
    padding:25px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.4s;
    border:1px solid #e6f5ff;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.info-card i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#00a8ff;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.info-card h5{
    font-size:22px;
    color:#0d1b2a;
}

.info-card p{
    color:#666;
    margin-top:5px;
}

/* BUTTON */

.btn{
    display:inline-block;
    margin-top:25px;
    padding:15px 38px;
    background:#00a8ff;
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:.4s;
    font-weight:500;
}

.btn:hover{
    background:#0077cc;
    transform:translateY(-5px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .profile{
        justify-content:center;
        text-align:center;
    }

    .profile-content h2{
        font-size:38px;
    }

    .message-box{
        padding:40px;
    }
}

@media(max-width:768px){

    .page-banner h1{
        font-size:38px;
    }

    .message-box{
        padding:30px 20px;
    }

    .profile-image{
        width:220px;
        height:220px;
    }

    .profile-content h2{
        font-size:30px;
    }

    .profile-content h4{
        font-size:18px;
    }

    .message-text p{
        font-size:15px;
        line-height:1.8;
    }

    .info-box{
        flex-direction:column;
    }
}


/* FOOTER */

footer{
    background:#0d1b2a;
    color:white;
    text-align:center;
    padding:30px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-content h1{
        font-size:55px;
    }
}

@media(max-width:768px){

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:-100%;
        width:100%;
        background:white;
        flex-direction:column;
        padding:20px;
        transition:.4s;
    }

    .nav-links.active{
        left:0;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .section-title h2{
        font-size:35px;
    }

    .dropdown{
        position:static;
        width:100%;
        opacity:1;
        visibility:visible;
        display:none;
        box-shadow:none;
    }

    .dropdown-parent:hover .dropdown{
        display:block;
    }
}
.gradient-line{
    border: none;
    height: 4px;
    width: 90%;
    margin: 20px auto;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    border-radius: 50px;
}
.border-list{
    list-style: none;
    padding: 0;
}

.border-list li{
    padding: 12px;
    margin: 10px 0;
    border-left: 5px solid #3498db;
    background: #f5f5f5;
    transition: 0.3s;
}

.border-list li:hover{
    border-left-color: #2ecc71;
    padding-left: 20px;
}