/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

h2, h5 {
    font-weight: 600;
}
.social-icons {
    filter: invert(1);
}   
.top-header {
    background-color: #fff !important; /* Dark background for contrast */
    padding: 10px 0; /* Adequate padding for top header */
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .logo img {
    height: 40px;
}

.top-header .contact-info {
    font-size: 18px; 
    color: black;
}
.top-header .contact-info span {
    margin-right: 15px; /* Add space between the contact info */
}

.top-header .social-icons a {
    font-size: 18px; /* Increase icon size for visibility */
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.top-header .social-icons a:hover {
    transform: scale(1.2); /* Hover effect for social icons */
}

/* Styling for the Navbar */
.navbar {
    background-color: #ff5e14!important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}
.navbar .navbar-nav .nav-item {
    margin-left: 20px; /* Space between nav items */
}

.navbar .navbar-nav .nav-link {
    color: #fff; /* Dark color for the nav text */
    font-weight: 600; /* Slightly bold text */
    transition: color 0.3s ease;
}
.navbar .navbar-nav .nav-link:hover {
    color:orange; /* Blue color on hover */
}

.navbar-toggler-icon {
    background-color: #007bff; /* Blue color for the toggler icon */
}


/* .hero-section {
    padding: 50px 0; 
    
     background-size: cover; 
     background-position: center; 
     background-repeat: no-repeat;
     position: relative;
     padding: 120px 0;
     color: #fff;
     text-align: center;
} */

/* Hero Section Styling */
.hero-section {
    position: relative;
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    overflow: hidden; /* Prevents overflow from text animations */
  }


/* Parallax Effect */
/* Parallax Effect */
.hero-section img {
    position: relative;
    z-index: 1;
    object-fit: cover;
    min-height: 100%;
    transition: transform 0.8s ease-in-out;
  }
  
  .hero-section:hover img {
    transform: scale(1.1); /* Slight zoom effect on hover */
  }
  
  /* Overlay effect for better visibility */
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay to enhance text visibility */
    z-index: 2;
  }


  .carousel-item {
    height: 400px; /* Adjust the height as needed */
    background-color: #f0f0f0; /* Background color (optional) */
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Ensure the carousel doesn't overlap with the next section */
.carousel-container {
    margin-bottom: 60px; /* Space below the carousel */
}

/* Optional: Control the overall height of the carousel container */
.carousel-inner {
    height: 100%; /* Ensures the carousel container takes up full height of the item */
}

/* Optional: Add spacing around carousel items */
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    transition: transform 0.3s ease;
}



  
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    padding: 20px;
    /* background: rgba(0, 0, 0, 0.7); */
    border-radius: 10px;
    max-width: 80%;
    width: 100%;
    box-sizing: border-box;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #FFF;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}


.carousel-caption .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #ff5e14;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
  
  .carousel-caption .btn-primary:hover {
    background-color: #e64a19; /* Hover effect for the button */
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
  }
  
  .carousel-control-next {
    top: 50%; /* Center arrows vertically */
    transform: translateY(-50%); /* Adjust for exact centering */
    height: 100%; /* Match the height of the carousel */
    width: 5%; /* Adjust width for easier access if necessary */
    opacity: 0.8; /* Slight opacity to blend with background */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ff5e14;
    border-radius: 50%; /* Optional: circular background */
    padding: 15px; /* Add padding for larger icon */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #e64a19;
    transform: scale(1.1); /* Slight scale effect on hover */
}
  /* Advanced Animations for Text */
  @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scaleIn {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  
/* Services Section */
.services-section {
    padding-top: 80px; /* Add some padding to create space at the top */
    padding-bottom: 60px;
    background-color: #fff;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.services-section .col-md-4 {
    margin-bottom: 30px;
}

.services-section i {
    color: #f8c200;
}

.services-section .col-md-4 h5 {
    margin-top: 15px;
    font-size: 1.2rem;
}

.services-section .col-md-4 p {
    font-size: 0.95rem;
    color: #777;
}

/* Featured Properties Section */
.featured-section {
    padding: 60px 0;
}

.featured-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.featured-section .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.featured-section .card img {
    border-bottom: 2px solid #f8c200;
}

.featured-section .card-body {
    padding: 20px;
    text-align: center;
}

.featured-section .card-body h5 {
    font-size: 1.3rem;
    font-weight: 600;
}

.featured-section .card-body p {
    font-size: 1rem;
    color: #777;
}

.featured-section .card-body .btn {
    background-color: #f8c200;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 20px;
}

.featured-section .card-body .btn:hover {
    background-color: #e0a800;
}



.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Masonry effect */
    gap: 15px; /* Space between images */
    padding: 20px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1); /* Image zoom on hover */
}

/* Overlay on hover */
.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-text {
    font-size: 20px;
    font-weight: bold;
}







.testimonial-section .row {
    column-count: 3; /* Set the number of columns for the masonry effect */
    column-gap: 1rem;
}

.testimonial-section .testimonial-card {
    break-inside: avoid; /* Prevent cards from breaking across columns */
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    background-color: #fff;
}




/* Background image and overlay for FAQ section */
.faq-section {
    position: relative;
    padding: 60px 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3; /* Adjust the transparency of the image */
    z-index: -1; /* Ensure the overlay stays behind the text */
}

.container {
    position: relative;
    z-index: 1; /* Make sure content is above the background */
}

/* FAQ Accordion */
.accordion-button {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent background */
    color: #fff;
    border: 1px solid #fff;
}

.accordion-button:not(.collapsed) {
    background-color:#f8c200/* Darker background when expanded */
}

.accordion-body {
    background-color:#f8c200; /* Orange color with transparency */
}


/* Optional: Adjusting FAQ Heading */
.faq-section h2 {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* Hover effects for accordion button */
.accordion-button:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Slightly darken the button on hover */
}
.accordion-button {
    background-color: #f8c200; /* Set to orange */
    border: none; /* Optional: Remove border */
}




/* conatct */

.contact-section {
    background-color: #2c3e50;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #ff5e14;
}

.contact-details {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 20px;
    color: #ffffff;
}

.contact-details h4 {
    color: #ff5e14;
    margin-top: 20px;
    font-size: 1.2rem;
}

.social-links a {
    color: #ff5e14;
}

.form-control {
    border: 1px solid #ff5e14;
    background-color: #f0f0f0;
}

.btn-primary {
    border: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e55a11;
}





/* Footer */
.footer {
    background-color: #ff5e14 !important;
    color: white;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    gap: 30px; /* Space between items */
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin: 10px 0;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #f8c200;
}

.footer .text-center {

    padding: 15px 0;
    font-size: 0.9rem;
}
.footer .extra-text {
    max-width: 600px; /* Set a maximum width for the text */
    margin: 0 auto; /* Center the text horizontally */
    text-align: center; /* Align text to the center */
    line-height: 1.6; /* Adjust line spacing for better readability */
    font-size: 0.9rem; /* Optional: Adjust the font size */
    color: #fff; /* Ensure text color matches the design */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }

    .services-section .col-md-4 {
        margin-bottom: 20px;
    }

    .featured-section .card-body h5 {
        font-size: 1.2rem;
    }

    .footer .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

}


/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-content {
    display: flex;               /* Flexbox to align image and text side by side */
    align-items: center;         /* Vertically centers the items */
    justify-content: space-between;  /* Creates space between the image and the text */
    gap: 30px;                   /* Adds space between the image and text */
}

.about-image {
    flex: 2;                     /* This ensures the image takes 1 part of the space */
}

.about-image img {
    width: 100%;                 /* Makes the image responsive */
    height: auto;                /* Maintains aspect ratio */
    border-radius: 8px;          /* Optional: Adds rounded corners to the image */
}

.about-text {
    flex: 2;
}

/* Heading Styles */
.about-text h3 {
    font-size: 2em;                  /* Larger font size */
    font-weight: 700;                /* Bold text */
    color: #2C3E50;                  /* Dark color for heading */
    margin-bottom: 20px;             /* Adds space below the heading */
    text-transform: uppercase;       /* Capitalizes heading text */
    letter-spacing: 1px;             /* Adds space between letters */
    position: relative;              /* Allows for additional styling */
}

/* Add a decorative underline under the heading */
.about-text h3::after {
    content: "";
    display: block;
    width: 50px;                      /* Short underline */
    height: 3px;                      /* Thickness of the underline */
    background-color: #ff5e14;        /* Blue underline color */
    margin-top: 10px;
}


/* Style the list */
.about-text ul {
    list-style-type: none;            /* Removes default bullets */
    padding-left: 0;
    margin: 0;
}

.about-text li {
    margin-bottom: 20px;              /* Adds space between list items */
    font-size: 1.1em;                 /* Sets font size */
    color: #333;                      /* Dark gray text */
    line-height: 1.6;                 /* Adjusts line spacing */
    position: relative;
    padding-left: 40px;               /* Space for custom bullet icons */
}

/* Custom Attractive Bullet Points with Icons */
.about-text li::before {
    content: '\1F4C8';                /* Unicode for a chart increasing icon */
    font-size: 1.5em;                 /* Larger icon size */
    color: #FF6347;                   /* Tomato color for the icon */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Hover effect on list items */
.about-text li:hover {
    color: #007BFF;                   /* Changes text color on hover */
    cursor: pointer;                 /* Changes cursor to pointer */
}

/* Optional: Styling for the list items in about section */
.about-text ul li a {
    text-decoration: none;
    color: #007BFF;                   /* Link color */
    font-weight: bold;
    transition: color 0.3s ease;
}
.about-text p {
    margin-top: 20px;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Testimonial Section Styling */
.testimonials-section {
    background-color: #f1f1f1;
    padding: 60px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonials {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: white;
    padding: 30px;
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.testimonial span {
    font-size: 1em;
    color: #777;
    font-weight: bold;
}

/* Contact Section Styling */
.contact-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.contact-section p {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 40px;
}

.contact-button {
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #ff5e14;
}


/* Room Detail */


/* Image Slider */
/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa; /* Light gray background */
    color: #333; /* Dark text */
}

/* Image Slider */
.carousel-inner img {
    max-height: 500px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Add slight background to navigation icons */
    border-radius: 50%;
}

/* Room Details Section */
.room-details-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.room-details-section h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff5e14;
}

.room-details-section ul {
    list-style: none;
    padding: 0;
}
.text-success{

    color: #fff !important;
}

.room-details-section ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #ddd;
}

.room-detail-section {
    margin-bottom: 1.5rem;
}

/* Price Section */
.price-section {
    background-color: #ff5e14;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #fff;
}

.price-section h2 {
    font-size: 2rem;
    margin: 0;
}

.price-section small {
    font-size: 1rem;
    color: #fff;
    font-weight: normal;
}

/* Reservation Form */
.reservation-form {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reservation-form h4 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.reservation-form .form-label {
    font-weight: bold;
}

.reservation-form input,
.reservation-form textarea {
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

.reservation-form button {
    border: none;
    font-size: 1rem;
}

.reservation-form button.btn-primary {
    background-color: #ff5e14;
    color: #fff;
}

.reservation-form button.btn-primary:hover {
    background-color: #e54d0e;
}

.reservation-form button.btn-outline-secondary {
    border: 1px solid #ff5e14;
    color: #ff5e14;
}

.reservation-form button.btn-outline-secondary:hover {
    background-color: #ff5e14;
    color: #fff;
}


/* Map Section */
.map-section iframe {
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Premium Property Cards */
.property-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    background: #ffffff;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-img {
    transform: scale(1.08);
}

.price-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.premium-btn {
    border-radius: 50px;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.premium-btn:hover {
    background: #333;
}