/* Topbar */
.topbar {
    background-color: #000000; /* Black background */
    color: #ffd700; /* Gold text */
}

.topbar .contact-info span {
    margin-right: 20px;
    color: #ffd700; /* Gold text */
}

.topbar .social-links a {
    margin-left: 15px;
    font-size: 1.2rem;
}

.text-gold {
    color: #ffd700 !important; /* Gold text */
}

/* Navbar */
.navbar {
    background-color: #000; /* Black background */
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #ffd700; /* Gold text */
    font-size: 1rem;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #fff; /* White text on hover */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%);
}

.hero-content {
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    font-size: 6.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

/* Search Bar */
.search-bar input {
    width: 60%;
    border: 2px solid #ffd700;
    background: transparent;
    color: #fff;
}

.search-bar input::placeholder {
    color: #ddd;
}

.search-bar button {
    border: 2px solid #ffd700;
    background-color: transparent;
    color: #ffd700;
}

.search-bar button:hover {
    background-color: #ffd700;
    color: #000;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .search-bar input {
        width: 80%;
    }
}

/* Featured Properties Section */
.featured-properties {
    background-color: #fff4f4; /* Black background */
    padding: 50px 0;
}

.text-gold {
    color: #ffd700; /* Gold text */
}

/* Property Cards */
.property-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Property Image */
.property-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

/* Property Details */
.property-details {
    padding: 20px;
    text-align: center;
}

.property-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.property-location {
    font-size: 1rem;
    color: #777;
}

.property-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Button */
.btn-gold {
    background-color: #ffd700;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-gold:hover {
    background-color: #ffcc00;
    transform: scale(1.1);
}

/* Luxurious Projects Section */
.luxurious-projects {
    background-color: #000; /* Black background */
    padding: 50px 0;
}

.text-gold {
    color: #ffd700; /* Gold text */
}

/* Carousel Image */
.carousel-img {
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease-in-out;
}

.carousel-item.active .carousel-img {
    transform: scale(1.1); /* Slight zoom effect on active slide */
}

/* Carousel Controls */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #ffd700; /* Gold carousel controls */
    border-radius: 50%;
    padding: 10px;
}

.carousel-indicators button {
    background-color: #ffd700; /* Gold carousel indicators */
}

.carousel-indicators .active {
    background-color: #fff; /* Active indicator in white */
}

@media (max-width: 768px) {
    .carousel-img {
        height: 300px; /* Smaller image height for mobile */
    }
}


/* Our Locations Section */
.locations {
    background-color: #fff4f4; /* Black background */
    padding: 50px 0;
}

.text-gold {
    color: #ffd700; /* Gold text */
}

/* Location Box */
.location-box {
    background-color: #1a1a1a; /* Dark grey background for the box */
    color: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-box:hover {
    transform: translateY(-10px); /* Lifts the box on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
}

/* Location Content */
.location-title {
    font-size: 1.5rem;
    color: #ffd700; /* Gold color for title */
    margin-bottom: 10px;
}

.location-description {
    font-size: 1rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-box {
        padding: 30px 15px; /* Adjust padding for smaller screens */
    }
    .location-title {
        font-size: 1.2rem;
    }
    .location-description {
        font-size: 0.9rem;
    }
}

/* Country-wise Locations Section */
.country-locations {
    background-color: #464545; /* Black background for the section */
    padding: 50px 0;
}

.location-list {
    list-style-type: none; /* Remove default list styling */
    padding-left: 0; /* Remove left padding */
}

.location-list li {
    font-size: 1rem;
    color: #ccc; /* Light grey for list items */
    margin: 10px 0; /* Spacing between list items */
}

/* Blog and Article Section */
.blog-articles {
    background-color: #fff; /* White background for better contrast */
    padding: 50px 0;
}

.card {
    border: none; /* Remove default border */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
}

.card-img-top {
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Maintain aspect ratio */
}

.btn-gold {
    background-color: #ffd700; /* Gold button background */
    color: #000; /* Black text color */
    border: none; /* Remove border */
}

.btn-gold:hover {
    background-color: #e6c600; /* Darker gold on hover */
}

/* Contact Us Section */
.contact-us {
    background-color: #f9f9f9; /* Light grey background for contrast */
    padding: 50px 0;
}

.form-label {
    color: #000; /* Black for form labels */
}

.btn-gold {
    background-color: #ffd700; /* Gold button background */
    color: #000; /* Black text color */
    border: none; /* Remove border */
}

.btn-gold:hover {
    background-color: #e6c600; /* Darker gold on hover */
}
/* Footer Section */
footer {
    background-color: #000; /* Black background for the footer */
}

footer h5 {
    margin-bottom: 20px; /* Space between heading and content */
}

footer a {
    text-decoration: none; /* Remove underline from links */
}

footer a:hover {
    text-decoration: underline; /* Underline on hover */
}

footer .text-gold {
    color: #ffd700; /* Gold color for headings */
}

footer .list-unstyled li {
    margin-bottom: 10px; /* Space between list items */
}

@media (max-width: 768px){ .hero-content p 
    {font-size: 1.5rem;
   
}
}
