
/* Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body, html {
    height: 100%;
    font-family: 'Nova Round', sans-serif;
}

/* Hero Section */
.hero {
    height: 103%;
    background-image: url(background.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-left: -11px;
    margin-right: -26px;
}
.logo{
    opacity: 100%;
}
section .hero{
    opacity: 0.6;
}
/* Navbar */
/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 1px;
    position: fixed; /* Changed to fixed */
    top: 0;
    width: 47%;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.5); /* White with 50% transparency */
    border-radius: 15px; /* Rounded corners */
    margin-left: 28%;
    margin-top: 10px;
}

/* Left side menu */
.nav-left {
    display: flex;
    align-items: center;
}

.navbar nav ul {
    display: flex;
    list-style: none;
}

.navbar nav ul li {
    margin: 0 20px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
    color: #a4d7f4;
}

/* Right side book button */
.nav-right {
    display: flex;
    align-items: center;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger .bar1, .hamburger .bar2, .hamburger .bar3 {
    width: 25px;
    height: 4px;
    background-color: black;
}

/* Mobile View - Hidden menu and hamburger display */
@media (max-width: 768px) {
    .nav-left {
        display: none; /* Hide the menu by default */
        flex-direction: column;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9); /* Slightly more opaque background */
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
    }

    .nav-left.active {
        display: flex; /* Show the menu when active */
        transform: translateX(0); /* Slide it in from the left */
        border: 5px solid #d7a449;
        border-radius: 11px
    }

    .nav-left ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .nav-left li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex; /* Show hamburger menu on small screens */
        margin-left: 32px;
    }
    .navbar nav ul {
        display: flex;
        list-style: none;
        grid-gap: 83px;
    }
   .navbar{
    position: absolute;
     width: 71%;
   }
}


.book-btn {
    color: black;
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #008080;
    color: white;
}

/* Overlay Content */
.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
}

.watch-section {
    position: relative;
    width: 200px;
    height: 300px;
}

.watch-image {
    width: 100%;
    border-radius: 10px;
}

.watch-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #556b2f;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.watch-btn:hover {
    background: #a4d7f4;
    color: black;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 0;
    left: 0;
}

.caption {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}


.about-section {
    position: relative;
    padding: 120px 0px;
    background-color: #f9f9f9; /* Add a subtle background for better contrast */
    display: flex;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-top: 50px;
    padding-right: 100px;
    margin-left: 44px;
}

.about-section .content-column .text {
    position: relative;
    color: #777777;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 40px;
}

.about-section .content-column .email {
    position: relative;
    color: #252525;
    font-weight: 700;
    margin-bottom: 50px;
}

.about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
    margin-left: 50px;
}

.about-section .image-column .inner-column:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    left: 40px;
    bottom: 100px;
    z-index: -1;
    border: 2px solid #d7a449;
}

.about-section .image-column .inner-column .image {
    position: relative;
    width: 441px;
}

.about-section .image-column .inner-column .image:before {
    position: absolute;
    content: '';
    left: -50px;
    bottom: -50px;
    width: 299px;
    height: 299px;
    background: url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
    position: absolute;
    left: 40px;
    bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
    position: relative;
    color: #252525;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 110px;
    height: 110px;
    color: #d7a449;
    font-size: 68px;
    font-weight: 700;
    line-height: 105px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #000000;
}

.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

.about-section .btn-style-three:hover {
    color: #ffffff;
    background: #d7a449;
}

.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid #d7a449;
    font-family: 'Arimo', sans-serif;
    margin-left: 20px;
    margin-top: 10px;
}

.sec-title2 {
    color: #ffffff;
}

.sec-title {
    position: relative;
    padding-bottom: 40px;
}

.sec-title .title {
    position: relative;
    color: #d7a449;
    font-size: 41px;
    font-weight: 700;
    padding-right: 51px;
    margin-bottom: 1px;
    display: inline-block;
    text-transform: capitalize;
    margin-left: 17px;
}

.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}

/* Additional Customizations */
.about-section .content-column .inner-column h2 {
    font-size: 32px;
    font-weight: 700;
    color: #252525;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.about-section .content-column .inner-column p {
    margin-bottom: 20px;
}

.about-section .image-column .inner-column .image img {
    border: 5px solid #d7a449; /* Border around the image for visual enhancement */
    border-radius: 10px;
}
/* Gallery Section */
.gallery-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.gallery-title h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
}

.gallery-title p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(80%);
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        margin-right: -18px;
        grid-template-columns: 1fr;
        margin-left: -4px;
    }

}
.virtual-tour {
    text-align: center;
    margin: 30px auto;
    max-width: 1200px;
}


p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
    padding: 0 20px;
}
/* Title Section */
.title-section {
    margin: 40px 20px 20px;
    text-align: center;
}

.title-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.title-section p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}
.slider{
   width: 1059px;
    max-width: 60%;
    height: 438px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }
}
/* Video Section */
.video-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

.video-placeholder {
    width: 40%;
    height: 339px;
    background-color: #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #555;
    border-radius: 10px;
    margin-left: 183px;
}

.video-text {
    width: 35%;
    text-align: left;
}

.video-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-family: 'Courier New', Courier, monospace;
}

.video-text p {
    font-size: 16px;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    margin-top: 20px;
}

.testimonials-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
    font-family: 'Courier New', Courier, monospace;
}
.testimonials-container {
    display: flex;
    justify-content: space-between;
    gap: 7px;
    flex-wrap: wrap;
    margin-left: 72px;
    margin-right: 72px;
}
.testimonial {
    background-color: #e6e6e6;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.testimonial p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.stars {
    font-size: 16px;
    color: orange;
    margin-left: 21px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        flex-direction: column;
    }

    .video-placeholder, .video-text {
        width: 88%;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .testimonial {
        width: 100%;
    }
}
/* Contact Us Section */
.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin-top: 100px;
}
/* Contact Container */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* Contact Form */

.contact-form {
    background-color: #d3d3d3;
    padding: 30px;
    border-radius: 19px;
    width: 41%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 67px;
    height: 321px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Courier New', Courier, monospace;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #555;
}

/* Contact Info */
.contact-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-details {
    margin-top: 20px;
    text-align: center;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Courier New', Courier, monospace;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 5px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        width: 100%;
        margin-left: 32px;

    }
}
.map-placeholder iframe
{
    height: 255px;
    border-radius: 30px;
}
footer {
    background: url('289ef4306788f5c232a2d05adf4e6a70.jpg') center center fixed;
    background-size: cover;
    color: #ffffff;
    padding: 0px 0;
    text-align: center;
    border:5px solid #d7a449; 
    position:relative;
    margin-right: -20px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .logo-section {
    margin-bottom: -2px;
    display: flex;
    justify-content: center;
  }
  .logo-section h1{
    font-size: 24px;
      color: #333;
      margin-top: 15px;
      margin-left: 10px;
  }
  .slogan p{
    color: #333;
    margin-bottom: 15px;
  }
  .footer-bottom p{
    margin-top: 16px;
    margin-bottom: 11px;
  }
  .footer-logo {
    height: 59px;
    margin-bottom: 10px;
    border-radius: 24px;
  }
  
  .logo-section p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  
  .nav-links {
    margin-bottom: 20px;
  }
  
  .nav-links a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
  }
  
  .nav-links a:hover {
    color: #ff4081;
  }
  
  .social-links a {
    margin: 0 10px;
  }
  
  .social-links img {
    width: 40px;  /* Reduced size */
    height: 40px; /* Reduced size */
  }
  
  .footer-bottom {
    font-size: 12px;
    color: #cccccc;
  }
  
  .footer-bottom a {
    color: #ffffff;
    margin-left: 10px;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    color: #ff4081;
  }
  ul .fa-solid.fa-xmark{
    display: none;
  }
  ul .fa-solidfa-bars{
    display: none;
  }
  
  @media (max-width: 500px) {
    
  .about-video video {
    margin-left: 33px;
  }
  .about-content h2 {
    margin-left: -7px;
    width: 137%;
    font-size: 33px;
  }
  .container2 {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 77;
    flex-direction: column-reverse;
    margin-top: 150%;
  }
  .contact-container {
    width: 88%;
    margin-left: 2px;
  }
  .fa-solid.fa-x{
     display: none;
  }
  .content2{
    margin-left: -47px;
  }
  .image-container img{
    width: 203%;
  }
}
.virtual-tour h1{
    font-family: 'Roboto Light', sans-serif;
    font-size: 2.3rem;
}
@media (max-width: 768px){
    .about-section {
        position: relative;
        padding: 120px 0px;
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column-reverse;
    }
    .about-section .image-column .inner-column .image {
        position: relative;
        width: 362px;
        margin-left: -44px;
    }
    .about-section .content-column .text {
    position: relative;
    color: #777777;
    font-size: 13px;
    line-height: -16em;
    margin-bottom: 25px;
    margin-top: -36px;
}
.map-placeholder{
    width: -50%;
        height: 100%;
        margin: 0;
        padding: 0;
        margin-right: 151px;
    }
    .about-section .content-column .inner-column p {
     margin-bottom: 20px;
    width: 377px;
    margin-left: -31px;
} 
.about-section .btn-style-three{
    margin-left: -11px;
}
.sec-title .title {
    margin-left: -10px;
    font-size: 31px;
    padding-right: 7px;
}
.about-section .image-column .inner-column .image img {
    border: 5px solid #d7a449;
    border-radius: 10px;
    margin-left: 19px;
}
.video-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-family: 'Courier New', Courier, monospace;
    margin-left: 8px;
}
.contact-details {
    margin-top: 20px;
    text-align: center;
    margin-left: 54px;
}
}
.vrview{
    margin-left: 22px;
}