* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7) transparent;
    color: white;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    
    
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff9800;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
}


/* Gallery & Villas Sections */
.gallery-section, .villas {
    padding: 80px 20px;
    text-align: center;
    background: #fafafa;
    height:100%;
}


h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.btn {
    background: #ff9800;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #e68900;
}

/* Image Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: auto;
    background: #fdfbfb;
}

.grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.grid img:hover {
    transform: scale(1.05);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Card Styling */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

/* Card Image */
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Overlay (Details) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Details on Hover */
.card:hover .overlay {
    opacity: 1;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}








/* ......... Footer starts here.............. */
* {
           
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fffbfb;
}

.footer {
    background-color: #22ac8e;
    color: rgb(48, 41, 41);
    
}

.footer-container-fluid {
    width: 80%;
    max-width: 1900px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #f39c12;
    display: inline-block;
    padding-bottom: 5px;
    color: #413838;
}

.quick-links ul {
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.quick-links ul li a:hover {
    color: #f39c12;
}

.address p {
    line-height: 1.6;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .gallery{
        justify-content: center;
    }
}




/* ..............SideBar starts here............ */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
   
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
}

/* Overlay Effect */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}



/* Menu Button */
.menu-btn {
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    background: #fcfafa;
    color: rgb(20, 20, 20);
    cursor: pointer;
    border-radius: 95px;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}
    
    


.menu-btn:hover {
    background: #b8b2b2;
    
}

/* Sidebar Menu */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background: #FFFFFF;

    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
}

.sidebar a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 22px;
    color: rgb(8, 8, 8);
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background: #eb8a1d;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
}