:root {
    --theme-primary-color: #EAC280;
    --theme-background-color: #000;
    --theme-main-heading-color: #EAC280;
    --pera: #666;
    --heading: #1c0000;
    --white: #fff;
    --black: var(--theme-background-color);
   
  }
  


body {
    margin: 0;
    padding: 0;
    background-color: var(--theme-background-color);
    color: var(--theme-main-heading-color);
    font-family: "Roboto", serif;
   
}



sup{

	font-size: 40px;
}

ul{
	list-style: none;
	font-size: 15px;
	color: var(--theme-primary-color);
	padding: 0px;
	margin: 0px;

}


li{
border-bottom: 0px solid #494a5a;
padding: 0px;
margin: 0px;
margin-right:10px;
line-height: 42px;

}


/* Navigation Container */
header {
    padding: 0px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1999;
    top: 0;
    left:0;
    background:#000;
    position:sticky;
    
  }
  
  /* Logo */
  .nav-logo {
    display: flex;
    align-items: left;
    padding-left:44px;
    
  }
  .nav-logo img {
    height: 100px;
    transform-origin: top center;
    animation: rotate 4s infinite linear;
  }
  
  /* NAV LINKS */
  .nav-links {
    display: flex;
    gap: 20px;
    body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #FFD700;
    font-family: "Roboto", serif;
}

.main-section{
    max-width: 1300px;
    margin: auto;
    /* nothing */
}



/* Navigation Container */
.nav-container {
    background-color: #000000;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 999;
    width: 100%;
    max-width: 1300px;
    top: 0;
  }
  
  /* Logo */
  .nav-logo {
    display: flex;
    align-items: center;
  }
  .nav-logo img {
    height: 90px;
    margin-right: 10px;
  }
  
  /* NAV LINKS */
  .nav-links {
    display: flex;
    gap: 20px;
    
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
  }
  
  /* Active link example */
  .nav-links a.active {
    color: #FFD700;        /* gold color */
    
  }
  
  /* Dropdown Container */
  .dropdown {
    position: relative;
  }
  
  /* Dropdown Toggle */
  .dropdown-toggle {
    cursor: pointer;
    /* optional spacing between text and icon */
  }
  .dropdown-toggle i {
    margin-left: 6px;
  }
  
  /* Dropdown Content */
  .dropdown-content {
    display: none;          /* hidden by default */
    position: absolute;
    background-color: #111;
    min-width: 180px;
    top: 30px;
    left: 0;
    z-index: 999;
  }
  .dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
  .dropdown-content a:hover {
    background-color: #222;
  }
  
  /* SHOW the dropdown on HOVER (desktop, or any device that supports hover) */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Toggle Button (Hamburger) */
  .nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Responsive (max-width: 768px) */
  @media (max-width: 768px) {
      .nav-logo{
          margin-left:0px !important;
      }
    /* Hide the nav links by default on mobile */
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 110px;
      right: 0;
      background-color: #111;
      width: 100%;
      text-align: center;
      padding: 20px;
      z-index: 10;
    }
    /* Navigation Container */
.nav-container {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    width: 90%;

  }
  
    
    /* Display them when .active is toggled */
    .nav-links.active {
      display: flex;
    }
    
    /* Show hamburger menu icon on mobile */
    .nav-toggle {
      display: block;
    }
    
    /* When dropdown is clicked, .dropdown-content gets .active */
    .dropdown-content.active {
      display: block;       /* visible on mobile click */
    }
  }
  





/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav-logo{
          margin-left:0px !important;
      }
    .hero-container {
        height: 70vh; /* Reduce height for tablets */
        
    }
    .form-container {
        border: 0px !important;
      }

    .hero-content {
        width: 90%;
    }
    .hero-heading {
        font-size: 3.5rem;
    }
    .hero-para {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
          .nav-logo{
          margin-left:0px !important;
      }
    .hero-container {
        height: 60vh; /* Smaller video height for mobile */
        display:contents;
    }

    .hero-content {
        width: 95%;
        padding: 10px;
    }
    .hero-heading {
        font-size: 2.8rem;
    }
    .hero-para {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
          .nav-logo{
          margin-left:0px !important;
      }
    .hero-container {
        height: 50vh; /* Even smaller video height for small screens */
        display:contents;
        
    }

    .hero-heading {
        font-size: 2rem;
        line-height: 2.3rem;
    }
    
    .hero-para {
        font-size: 1rem;
        line-height: 1.4rem;
    }
}



/* Responsive Button Adjustments */
@media screen and (max-width: 768px) {
          .nav-logo{
          margin-left:0px !important;
      }
    .hero-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
          .nav-logo{
          margin-left:0px !important;
      }
    .hero-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}



/* Feature Section */
.feature-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    padding: 100px 20px;
    gap: 120px;
    background: url("/assets/bg.png") no-repeat center center;
    background-size: contain;
}

/* Image Container */
.feature-image-container {
    width: 650px; /* Base width for large screens */
    height: 350px; /* Maintain oval proportion */
    overflow: hidden;
    border-radius: 80% / 80%; /* More curved oval shape */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 25px rgba(255, 145, 77, 0.3);
    transition: transform 0.3s ease-in-out;
    transform: rotate(-12deg); /* Keep rotation */
}

/* Image Styles */
.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.feature-image-container:hover {
    transform: rotate(-12deg) scale(1.05);
}

.feature-image-container:hover img {
    transform: scale(1.1);
}

/* Buttons Container */
.feature-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}



/* ✅ Responsive Design */
@media (max-width: 1024px) {
    .feature-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .feature-image-container {
        width: 400px;
        height: 280px;
        border-radius: 80% / 80%; /* Adjusted for smaller screens */
    }
}

@media (max-width: 768px) {
    .feature-image-container {
        width: 320px;
        height: 220px;
        border-radius: 80% / 80%;
    }

    .feature-button {
        width: 230px;
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .feature-container {
        flex-direction: column;
        gap: 80px;
    }

    .feature-image-container {
        width: 350px;
        height: 250px;
        border-radius: 80% / 80%; /* More pronounced oval for small screens */
    }

    .feature-buttons-container {
        gap: 12px;
    }

    .feature-button {
        width: 200px;
        font-size: 14px;
        padding: 10px 16px;
    }
}




/* Separator (Same as Blogs & Packages) */
.separator {
    width: 100px;
    height: 4px;
    background-color: #FF6600;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Features Container */
.why-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    text-align: center; /* Ensure text is centered */
}


/* Feature Icon Wrapper */
.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #FFD700; */
    border-radius: 50%;
    width: 250px;
    height: 250px;
    margin: 0 auto 15px auto;
    /* box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.3); */
}

/* Feature Icon */
.feature-icon img {
    width: 60%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Feature Text */
.why-feature-box p {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
}

/* Hover Effects */
.why-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.3);
}

.why-feature-box:hover .feature-icon img {
    transform: scale(1.1);
}



/* Responsive Design */
@media (max-width: 1024px) {
    .why-heading {
        font-size: 2.2rem;
    }
    .why-sub-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .why-heading {
        font-size: 2rem;
    }
    .why-sub-text {
        font-size: 1rem;
    }
    .why-features {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .why-feature-box {
        width: 90%; /* Takes full width on smaller devices */
        max-width: 250px;/* Limits the box width */
    }
    .feature-icon {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .why-heading {
        font-size: 1.8rem;
    }
    .why-sub-text {
        font-size: 0.95rem;
    }
    .why-feature-box {
        width: 90%; /* Takes full width on smaller devices */
        max-width: 220px;
    }
    .why-feature-box p {
        font-size: 1.3rem;
    }
}




.packages-section {
    padding: 50px 20px;
    text-align: center;

    /* Ensure the background covers the area properly */
    background: url("/assets/bg.png") no-repeat center center;
    background-size: contain; /* This scales the background to cover the entire element */
}

/* Title */
.packages-title {
    font-size: 40px;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Subtitle */
.packages-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: white;
}

/* Review Cards Container */
.packages-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 100px;
}

/* Individual Review Card */
.review-card {
    background-color: #000;
    border: 2px solid #Fff; /* Gold border */
    border-radius: 12px;
    width: 320px;
    padding: 20px;
    position: relative;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Review Icon */
.review-icon {
    width: 120px;
    height: 120px;
    background-color: #FFf;
    border-radius: 50%;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.4);
}

/* Increase thumbs-up size only */
.review-icon::first-child {
    font-size: 20px;
}

/* Review Text */
.review-text {
    margin-top: 50px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    color: white;
    padding: 0 10px;
}

/* Hover Effect for Review Card */
.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
}

/* Read More Button */
.review-read-more {
    background-color: #FFD700;
    color: black;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 40px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect for Button */
.review-read-more:hover {
    background-color: #FFC107;
    color: black;
    box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .packages-title {
        font-size: 35px;
    }
    .packages-subtitle {
        font-size: 17px;
    }
    .review-text {
        font-size: 15px;
    }
    .review-card{
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .packages-title {
        font-size: 30px;
    }
    .packages-subtitle {
        font-size: 16px;
    }
    .review-text {
        font-size: 14px;
    }
    .review-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .packages-title {
        font-size: 28px;
    }
    .packages-subtitle {
        font-size: 15px;
    }
    .review-text {
        font-size: 13px;
    }
    .review-card {
        width: 95%;
    }
    .review-icon {
        width: 100px;
        height: 100px;
        font-size: 14px;
        top: -45px;
        left: 50%;
    }
    .review-read-more {
        padding: 10px 20px;
        font-size: 14px;
    }
}





/* Responsive Design */
@media (max-width: 1024px) {
    .services-title {
        font-size: 2.2rem;
    }
    .services-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    .services-subtitle {
        font-size: 1rem;
    }
    .services-container {
        gap: 30px;
    }
    .services-box {
        flex-direction: column !important;
        text-align: center;
        padding: 20px;
    }
    .services-box video {
        width: 100%;
        border-radius: 12px;
    }
    .services-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }
    .services-subtitle {
        font-size: 1rem;
    }
    .services-box {
        width: 95%;
    }
    .services-heading {
        font-size: 1.5rem;
    }
    .services-text {
        font-size: 1rem;
    }
}



 /* Title */
 .gallery-title {
    font-size: 40px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 10px;
    text-align: center;
}

/* Subtitle */
.gallery-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-top: -5px;
    text-align: center;
}

/* Gallery Grid */
.grid-wrapper {
    display: grid;
    grid-gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.grid-wrapper div {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.grid-wrapper div:hover {
    transform: scale(1.05);
}

.grid-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Image Sizing */
.wide {
    grid-column: span 2;
}
.tall {
    grid-row: span 2;
}
.big {
    grid-column: span 2;
    grid-row: span 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 32px;
    }
    .gallery-subtitle {
        font-size: 18px;
    }
    .grid-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .blogs-section h2 {
        font-size: 2.2rem;
    }
    .blogs-section p {
        font-size: 1.1rem;
    }
    .blog-card h3 {
        font-size: 1.3rem;
    }
    .blog-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .blogs-section h2 {
        font-size: 2rem;
    }
    .blogs-section p {
        font-size: 1rem;
    }
    .blog-container {
        flex-direction: column;
        align-items: center;
    }
    .blog-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .blogs-section h2 {
        font-size: 1.8rem;
    }
    .blogs-section p {
        font-size: 0.95rem;
    }
    .blog-card {
        width: 95%;
    }
    .blog-card h3 {
        font-size: 1.2rem;
    }
    .blog-card p {
        font-size: 0.9rem;
    }
}


/* FAQs Section */
.faqs-section {
    background: url("/assets/bg.png") no-repeat;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

/* Title */
.faqs-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: #FFD700;
}

/* Subtitle */
.faqs-section p {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-top: -15px;
    margin-bottom: 10px;
}

/* Separator (Same as Blogs & Packages) */
.separator {
    width: 100px;
    height: 4px;
    background-color: #FF6600;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* FAQ Container */
.faq-container {
    width: 60%;
    margin: 30px auto;
    text-align: left;
}

/* FAQ Item */
.faq-item {
    border-bottom: 2px solid #b88629;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover Effect */
.faq-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* FAQ Question */
.faq-item .faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .faqs-section h2 {
        font-size: 2.2rem;
    }
    .faqs-section p {
        font-size: 1.1rem;
    }
    .faq-container {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .faqs-section h2 {
        font-size: 2rem;
    }
    .faqs-section p {
        font-size: 1rem;
    }
    .faq-container {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .faqs-section h2 {
        font-size: 1.8rem;
    }
    .faqs-section p {
        font-size: 0.95rem;
    }
    .faq-container {
        width: 95%;
    }
    .faq-item .faq-question {
        font-size: 1.2rem;
    }
    .faq-item .faq-answer {
        font-size: 0.95rem;
    }
}



/* Footer Section */
.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

/* Footer Content */
.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logo & Social Icons (Stacked Correctly) */
.footer .logo-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Logo (Properly Sized & Positioned Above Icons) */
.footer .logo-container img {
    width: 150px; /* Adjust logo size */
    height: auto;
    margin-bottom: 10px; /* Space between logo and social icons */
}

/* Social Media Icons (White Background) */
.footer .social-icons {
    display: flex;
    gap: 15px;
}

/* Social Media Icons (Circular with White Background) */
.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: white; /* White background */
    border-radius: 50%; /* Circular shape */
    color: black; /* Default icon color */
    font-size: 1.5rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* Social Icons Hover Effect */
.footer .social-icons a:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: black;
    transform: scale(1.1);
}

/* Contact Information */
.footer .contact-info {
    text-align: left;
}

.footer .contact-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
}

.footer .contact-info p {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
}

/* Buttons Section */
.footer .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer Buttons */
.footer .buttons button {
    /* background: linear-gradient(to right, #FFC107, #FF5722); */
    background-color: #FFD700;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: black;
    border-radius: 25px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Button Hover Effect */
.footer .buttons button:hover {
    /* background: linear-gradient(to right, #FF9800, #FF3D00); */
    background-color: #ffc400;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer .footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer .contact-info {
        text-align: center;
    }

    .footer .buttons {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer .footer-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer .logo-container img {
        width: 140px;
    }

    .footer .social-icons {
        gap: 10px;
    }

    .footer .social-icons a {
        font-size: 1.5rem;
    }

    .footer .contact-info h3 {
        font-size: 1.1rem;
    }

    .footer .contact-info p {
        font-size: 0.95rem;
    }

    .footer .buttons button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .footer .footer-bottom {
        font-size: 0.8rem;
    }
}


  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  /* Active link example */
  .nav-links a.active {
    color: var(--theme-main-heading-color);        /* gold color */
  }
  
  /* Dropdown Container */
  .dropdown {
    position: relative;
  }
  
  /* Dropdown Toggle */
  .dropdown-toggle {
    cursor: pointer;
    /* optional spacing between text and icon */
  }
  .dropdown-toggle i {
    margin-left: 6px;
  }
  
  /* Dropdown Content */
  .dropdown-content {
    display: none;          /* hidden by default */
    position: absolute;
    background-color: #111;
    min-width: 180px;
    top: 30px;
    left: 0;
    z-index: 999;
  }
  .dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
  .dropdown-content a:hover {
    background-color: #222;
  }
  
  /* SHOW the dropdown on HOVER (desktop, or any device that supports hover) */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Toggle Button (Hamburger) */
  .nav-toggle {
    display: none;
    font-size: 44px;
    cursor: pointer;
  }
  
  /* Responsive (max-width: 768px) */
  @media (max-width: 768px) {
    /* Hide the nav links by default on mobile */
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 110px;
      right: 0;
      background-color: #111;
      width: 100%;
      text-align: center;
      padding: 20px;
      z-index: 10;
    }
    /* Navigation Container */
.nav-container {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    width: 90%;

  }
  
    
    /* Display them when .active is toggled */
    .nav-links.active {
      display: flex;
    }
    
    /* Show hamburger menu icon on mobile */
    .nav-toggle {
      display: block;
    }
    
    /* When dropdown is clicked, .dropdown-content gets .active */
    .dropdown-content.active {
      display: block;       /* visible on mobile click */
    }
  }
  

/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Default height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}

/* Background Video */
video{
    width:60%;
    height:auto;
}


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width:40%;
    height:auto;

}

/* Hero Heading */
.hero-heading {
    font-size: 2.7rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    color: var(--theme-main-heading-color); /* Yellow Text */
}

/* Hero Paragraph */
.hero-para {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    color: #fff; /* Yellow Text */
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    video{
        width:100% !important;
        height:auto !important;
    }
    .hero-container {
        height: 70vh; /* Reduce height for tablets */
        display:contents;
    }
    header {
        padding:0px 10px !important;
    }
    .form-group {
        margin-bottom: 20px !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
      }

      label {
        font-size: 18px !important;
        margin-bottom: 5px;
      }

      .booking-container{
        width:80vw !important;
      }
      
    .hero-content {
        width: 90%;
    }
    
    .hero-para {
        font-size: 1.4rem;
    }
}





@media screen and (max-width: 384px) {
    .hero-container {
        height: 50vh; /* Even smaller video height for small screens */
    }

    .hero-heading {
        font-size: 2rem;
        line-height: 2.3rem;
    }
    
    .hero-para {
        font-size: 1rem;
        line-height: 1.4rem;
    }
    
    .hero-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* Hero Button */
.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: var(--theme-main-heading-color); /* Yellow Button */
    color: #000;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.4);
    
}

/* Hover Effect */
.hero-button:hover {
    background-color: #FFC107; /* Slightly darker yellow */
    transform: scale(1.20);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.5);
}







/* Feature Section */
.feature-container {
     overflow:hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    padding: 100px 20px;
    gap: 120px;
    background: url("/assets/bg.png") no-repeat center center;
    background-size: contain;
}

/* Image Container */
.feature-image-container {
    width: 650px; /* Base width for large screens */
    height: 450px; /* Maintain oval proportion */
    overflow: hidden;
    border-radius: 80% / 80%; /* More curved oval shape */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 25px rgba(255, 145, 77, 0.3);
    transition: transform 0.3s ease-in-out;
    transform: rotate(-0deg); /* Keep rotation */
}

/* Image Styles */
.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.feature-image-container:hover {
    transform: rotate(-12deg) scale(1.05);
}

.feature-image-container:hover img {
    transform: scale(1.1);
}

/* Buttons Container */
.feature-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

/* Feature Buttons */
.feature-button {
    background-color: var(--theme-main-heading-color);
    color: black;
    font-weight: bold;
    padding: 25px 42px;
    text-align: center;
    width: 260px;
    font-size: 22px;
    box-shadow: 2px 2px 10px rgba(255, 145, 77, 0.5);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Button Positioning */
.button-1 { margin-right: 30px; }
.button-2 { margin-left: 40px; }
.button-3 { margin-left: 10px; }
.button-4 { margin-left: 50px; }
.button-5 { margin-right: 50px; }

/* Button Hover Effect */
.feature-button:hover {
    transform: scale(1.25);
    box-shadow: 4px 4px 15px rgba(255, 145, 77, 0.7);
}



/* Why Us Section */
.why-container {
    color: white;
    text-align: center;
    padding: 50px 20px;
    background: url("/assets/images/bg.png") no-repeat center center;
    background-size: contain;
}

/* Heading */
.why-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-main-heading-color); /* Gold color */
}

/* Subtitle */
.why-sub-text {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* Separator (Same as Blogs & Packages) */
.separator {
    width: 100px;
    height: 4px;
    background-color: #FF6600;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Features Container */
.why-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    text-align: center; /* Ensure text is centered */
}

/* Feature Box */
.why-feature-box {
    background-color: var(--theme-background-color);
    border: 2px solid var(--theme-main-heading-color); /* Gold border */
    border-style:dotted;
    padding: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Feature Icon Wrapper */
.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: var(--theme-main-heading-color); */
    border-radius: 50%;
    width: 250px;
    height: 250px;
    margin: 0 auto 15px auto;
    /* box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.3); */
}

/* Feature Icon */
.feature-icon img {
    width: 60%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Feature Text */
.why-feature-box p {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
}

/* Hover Effects */
.why-feature-box:hover {
    transform: translateY(45px);
    box-shadow: 20px 20px 20px rgba(255, 215, 0, 0.3);
}

.why-feature-box:hover .feature-icon img {
    transform: scale(1.1);
}



/* Title */
.packages-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-main-heading-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Subtitle */
.packages-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: white;
}

/* Review Cards Container */
.packages-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 100px;
}

/* Individual Review Card */
.review-card {
    background-color: var(--theme-background-color);
    border: 2px solid #Fff; /* Gold border */
    border-radius: 12px;
    width: 320px;
    padding: 20px;
    position: relative;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Review Icon */
.review-icon {
    width: 120px;
    height: 120px;
    background-color: #FFf;
    border-radius: 50%;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--theme-main-heading-color);
    text-align: center;
    box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.4);
}

/* Increase thumbs-up size only */
.review-icon::first-child {
    font-size: 20px;
}

/* Review Text */
.review-text {
    margin-top: 50px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    color: white;
    padding: 0 10px;
}

/* Hover Effect for Review Card */
.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
}

/* Read More Button */
.review-read-more {
    background-color: var(--theme-main-heading-color);
    color: black;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 40px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect for Button */
.review-read-more:hover {
    background-color: #FFC107;
    color: black;
    box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}



/* Services Section */
.services-section {
    background: url("/assets/bg.png") no-repeat center center;
    color: white;
    text-align: center;
    padding: 50px 20px;
    overflow:hidden !important;

}

/* Title */
.services-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-main-heading-color);
    color: var(--theme-main-heading-color);
}

/* Subtitle */
.services-subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-top: -25px;
}

/* Separator (Same as Blogs & Packages) */
.separator {
    width: 100px;
    height: 4px;
    background-color: #FF6600;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Services Container */
.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

/* Individual Service Box */
.services-box {
    display: flex;
    align-items: center;
    background-color: #111;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 1000px;
    text-align: left;
    gap: 20px;
    border: 2px solid var(--theme-main-heading-color);
    border-style:dotted;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Alternate Layout */
.services-box:nth-child(odd) {
    flex-direction: row;
}
.services-box:nth-child(even) {
    flex-direction: row-reverse;
}

/* Service Image */
.services-box video {
  
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}

/* Content */
.services-content {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
}

/* Service Heading */
.services-heading a {
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--theme-main-heading-color);
    margin-bottom: 10px;
}

/* Service Description */
.services-text {
    font-size: 1.9rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Explore Button */
.services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-main-heading-color);
    color: var(--theme-background-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Button Arrow */
.services-button::after {
    content: '\2192'; /* Arrow Icon */
    margin-left: 8px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.services-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
}

.services-box:hover img {
    transform: scale(1.05);
}

.services-button:hover {
    background-color: #FFC107;
    transform: scale(1.05);
}

.services-button:hover::after {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-title {
        font-size: 2.2rem;
    }
    .services-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    .services-subtitle {
        font-size: 1rem;
    }
    .services-container {
        gap: 30px;
    }
    .services-box {
        flex-direction: column !important;
        text-align: center;
        padding: 20px;
    }
    .services-box video {
        width: 100%;
        border-radius: 12px;
        height: auto !important;
    }
    .services-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }
    .services-subtitle {
        font-size: 1rem;
    }
    .services-box {
        width: 95%;
    }
    .services-heading {
        font-size: 1.5rem;
    }
    .services-text {
        font-size: 1rem;
    }
}



 /* Title */
 .gallery-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-main-heading-color);
    margin-bottom: 10px;
    text-align: center;
}

/* Subtitle */
.gallery-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-top: -5px;
    text-align: center;
}

/* Gallery Grid */
.grid-wrapper {
    display: grid;
    grid-gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.grid-wrapper div {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.grid-wrapper div:hover {
    transform: scale(1.05);
}

.grid-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Image Sizing */
.wide {
    grid-column: span 2;
}
.tall {
    grid-row: span 2;
}
.big {
    grid-column: span 2;
    grid-row: span 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 32px;
    }
    .gallery-subtitle {
        font-size: 18px;
    }
    .grid-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Blog Section */
.blogs-section {
    background: url("/assets/bg.png") no-repeat center center;
    background-size: contain; 
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top:10px;
}

/* Blog Section Title */
.blogs-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-main-heading-color);
    text-transform: uppercase;
    margin: 0; 
}

.blogs-section p {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-top: 0px;
}

/* Separator */
.separator {
    width: 100px;
    height: 4px;
    background-color: #FF6600;
    margin: 15px auto;
    border-radius: 2px;
}

/* Blog Cards Container */
.blog-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

/* Individual Blog Card */
.blog-card {
    background: #222;
    border-radius: 15px;
    width: 35vw;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center; /* Align text to the left */
    padding-bottom:20px;
    
}

/* Blog Image */
.blog-card img {
    width: 100%;
    height: 32vh;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease-in-out;
}

/* Blog Date */
.blog-date {
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFA500;
    margin: 15px 10px 10px;
    display: block;
}

/* Blog Title */
.blog-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 5px 10px 10px;
    color: var(--theme-main-heading-color);
}

/* Blog Description */
.blog-card p {
    font-size: 1rem;
    font-weight: 400;
    color: #d3d3d3;
    margin: 5px 10px 10px;
}

/* Read More Button */
.read-more {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background-color: var(--theme-main-heading-color);
  color: #000;
  font-size: 1.0rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.4);
  
}

.read-more:hover {
    background-color: #e05500;
}

/* Hover Effects */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
}

.blog-card:hover img {
    transform: scale(1.05);
}



/* Individual Blog Card */
.blog-card {
    background: #222;
    border-radius: 15px;
    width: 35vw;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center; /* Align text to the left */
    padding-bottom:20px;
    
}

/* Blog Image */


.blog-main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    
}

.blog-main-image img {
    width: 50%;
    height: 50%;
    
}



/* FAQs Section */
.faqs-section {
    background: url("/assets/bg.png") no-repeat;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

/* Title */
.faqs-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-main-heading-color);
}

/* Subtitle */
.faqs-section p {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-top: -15px;
    margin-bottom: 10px;
}

/* Separator (Same as Blogs & Packages) */
.separator {
    width: 100px;
    height: 4px;
    background-color: #FF6600;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* FAQ Container */
.faq-container {
    width: 60%;
    margin: 30px auto;
    text-align: left;
}

/* FAQ Item */
.faq-item {
    border-bottom: 2px solid #b88629;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover Effect */
.faq-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* FAQ Question */
.faq-item .faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

/* FAQ Answer */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 1rem;
    margin-top: 10px;
    padding: 0 15px;
    border-left: 3px solid var(--theme-main-heading-color);
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
    line-height:25px;
}



/* Icon Rotation */
.faq-item .icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

/* Active Icon Rotation */
.faq-item.active .icon {
    transform: rotate(180deg);
}




/* Footer Section */
.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

/* Footer Content */
.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logo & Social Icons (Stacked Correctly) */
.footer .logo-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Logo (Properly Sized & Positioned Above Icons) */
.footer .logo-container img {
    width: 150px; /* Adjust logo size */
    height: auto;
    margin-bottom: 10px; /* Space between logo and social icons */
    transform-origin: top center;
     animation: rotate 4s infinite linear;
}

/* Social Media Icons (White Background) */
.footer .social-icons {
    display: flex;
    gap: 15px;
}

/* Social Media Icons (Circular with White Background) */
.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: white; /* White background */
    border-radius: 50%; /* Circular shape */
    color: black; /* Default icon color */
    font-size: 1.5rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* Social Icons Hover Effect */
.footer .social-icons a:hover {
    background-color: var(--theme-main-heading-color); /* Gold background on hover */
    color: black;
    transform: scale(1.1);
}

/* Contact Information */
.footer .contact-info {
    text-align: left;
}

.footer .contact-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--theme-main-heading-color);
    margin-bottom: 5px;
}

.footer .contact-info p {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
}

/* Buttons Section */
.footer .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer Buttons */
.footer .buttons button {
    /* background: linear-gradient(to right, #FFC107, #FF5722); */
    background-color: var(--theme-main-heading-color);
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: black;
    border-radius: 25px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-transform: uppercase;
}

/* Button Hover Effect */
.footer .buttons button:hover {
    /* background: linear-gradient(to right, #FF9800, #FF3D00); */
    background-color: #ffc400;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer .footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Footer Links */
.footer .footer-bottom a {
    color: var(--theme-main-heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
  
}
.footer .footer-bottom .a_text{
    font-size:14px;
}
.footer .footer-bottom a:hover {
    color: #FF6600;
}



a{
	font-size: 18px;
	color: white;
    text-decoration: none;

}

input:focus,textarea:focus,select:focus{
  border:1px solid #fafafa;
  -webkit-box-shadow:0 0 6px #007eff;
  -moz-box-shadow:0 0 5px #007eff;
  box-shadow:0 0 5px #007eff;
  outline: none;
}





.whole{
	display: inline-block;
    padding-right:5px;
  
}

.whole:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.3);
}



.zoom-in:hover {
    transform: scale(1.1);
}



.type{
	width: 300px;
	border-radius: 5px 5px 0px 0px;
	background-color: #f28b06;
	border-bottom: 3px solid #fff;

}

.type p{
	font-weight: 800;
	font-size: 21px;
	text-transform: uppercase;
	color: white;
	text-align: center;
	padding-top: 30px;

	

}

.plan{
	width: 300px;
	background-color: #2b2937;
    border-radius: 0px 0px 5px 5px;
    text-align: center;
    margin-top:20px;

}
.Essential{
	background-color: #1abc9c;
	border-bottom: 3px solid #fff;
    
}

.Luxxery{
	background-color: #5d6a9a;
	border-bottom: 3px solid #fff;
}

.Glam{
	background-color: #5d6a9a;
	border-bottom: 3px solid #fff;
}
.Spectacular{
	background-color: #5d6a9a;
	border-bottom: 3px solid #fff;
}
.Extraordinary{
	background-color: #a21d1d;
	border-bottom: 3px solid #fff;
}

.Prestige{
	background-color: #a21d1d;
	border-bottom: 3px solid #fff;
}

.With{
	background-color: #1abc9c;
	border-bottom: 3px solid #fff;
    
}

.Without{
	background-color: #a21d1d;
	border-bottom: 3px solid #fff;
}

.package-header{
	border-bottom: 1px solid #494a5a;
	padding: 80px;


}

button a{
    color:#000;
}

.package-header span{
	font-size: 42px;
    color:#fff;

	
}

.serice_hours{
	font-size: 18px;
	color: var(--theme-primary-color);
	padding: 0px;
	
}

.price{
        padding:2px;
       
}

.cart {
    font-size:24px;
    color:#444;
    font-weight:bolder;
   
    
}

.cart:hover {
    color:#fff;
  }
.book-now-button{
  background:var(--theme-background-color);
  color:white;
  position: relative;
  top: 16px;
  padding:20px;
  
}



.login_c{
  width:500px;
  background-color:#2b2937;
  height:300px;
  margin: 0 auto;
  margin-top:40px;
  border-radius:5px;
  
}

.login_c input{
  width: 350px;
  height: 40px;
  border: 1px solid #494a5a;
  margin-bottom:20px;
  border-radius:5px;
  padding-left: 10px;

}


.login{
  background-color: #BC4B1A;
  border-bottom: 3px solid #7C3618;
  width:100%;
  
}

.top{
  margin-top:35px;
}

.nodisplay{
  opacity: 0.1;
}

.selected{
  background-color:#1F1B36;
  margin:0px;
  padding:0px;
}


.contact-container {
	width: 70vw;
	color: white;
	line-height: 1.5;
    margin: 70px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px var(--theme-main-heading-color);
    border-style: dotted;
    padding: 30px;
    border-radius: 20px;
}

.contact-title {
    font-size: 40px;
   font-weight: 800;
   color: var(--theme-main-heading-color);
   margin-bottom: 10px;
   text-align: center;
   }
   
.contact-subtitle{
         font-size: 22px;
         font-weight: 500;
         color: white;
         margin-top: -5px;
         text-align: center;
     }



.contact-content {
	display: flex;
	margin-top: 60px;
}

.contact-icon {
	background-color: white;
	border-radius: 30px;
	padding: 15px;
	vertical-align: top;
}

.contact-info {
	display: inline-block;
	padding: 4px 20px 0px 20px;
}

.address-line {
	margin-top: 40px;
    text-align:left;
}

.col-1 {
	width: 400px;
}

.col-2 {
	flex: 1 1 auto;
	
}


.form-container {
	color: white;
	line-height: 1.5;
    text-align: center;
    margin: auto;
    border-left: 0.5px #595959 solid;
    padding: 30px;
    
}

.contact-info-title {
	color: var(--theme-main-heading-color);
    font-size: 24px;
    font-weight: 500px;
}

.contact-form-input {
	padding-bottom: 30px;
    text-align:left;
}

.form-field {
	
	border: none;
	border-bottom: 1px solid #000;
}

.send-btn {
	border: 0px;
	padding: 12px 26px;
	background-color: #01bdd4;
	color: white;
}

@media all and (max-width: 1024px) {
    
	.contact-container {
		width: 90vw;
		padding: 30px;
        
	}
    .faqs-section{
        padding:0px;
    }
    .faq-container{
        width:100%;
    }
    .footer .footer-content{
        display:block;
    }
    .form-container {
        
        border-left: 0px;
       
        
    }
	 .col-1 {
		width: 360px;
	} 
    .package-inclusions-container{
        width: 100% !important;
    }

    .package-inclusions-section ul
    {
        columns:1 !important;
        padding:10px !important;
        text-align:left !important;
    }
    .package-overview-container{
        width:100% !important;
    }
    
    .button-1,.button-2,.button-3,.button-4, .button-5{
        margin-left:0px !important;
        margin-right:0px !important;
    }
    .feature-buttons-container{
        gap:20px !important;
    }
    .why-container{
        padding: 0px 20px !important;
    }

    .packages-section{
        padding: 50px 10px !important;
    }

    .plan,.type,.whole{
        width: 100% !important;
    }

    .blog-card{
        width:100% !important;
    }
    .blog-date{
        font-size: 1rem !important;
    }
    .blog-main-image img {
        width: 90%;
        height: 90%;
      }
      .nav-logo{
        padding-left:0px !important;
      }
      .footer .contact-info{
        text-align: center !important;
      }
}

@media all and (max-width: 700px) {
	.contact-content {
		display: block;
	}
	.col-2 {
		margin-top: 40px;
	} 
	.col-1{
	width:100%;
	}
}

@media all and (max-width: 500px) {
	.contact-container {
		padding: 10px;
	}
}









.booking-container {
    position: relative;
    width:70vw;
    background-color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 70px auto;
    border:2px var(--theme-main-heading-color);
    border-style: dotted;
    padding:30px;
    border-radius:20px;
  }

  .booking-title {
   font-size: 40px;
  font-weight: 800;
  color: var(--theme-main-heading-color);
  margin-bottom: 10px;
  text-align: center;
  }
  
  .booking-subtitle{
        font-size: 22px;
        font-weight: 500;
        color: white;
        margin-top: -5px;
        text-align: center;
    }
 
  .form-group {
    margin-bottom: 40px;
    text-align: left;
    margin-left: 20px;
    margin-right: 30px;
    
  }
  label {
    color: #fff;
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
  }
  input[type="text"],
  input[type="email"],
  input[type="date"],
  input[type="time"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    border-radius: 10px;
  }
  input[type="text"],
    select,
    textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    border-radius: 10px;
}


input[type="submit"] {
  border: none; 
  background: #4aaaa5;
  padding: 12px 20px;
 
  cursor: pointer;
  color: #ffffff;
  font-size: 16px;
}

  .booking-button {
    margin-top:20px;
    width: 70%;
    padding: 12px;
    background-color: var(--theme-main-heading-color);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  .booking-button:hover {
    background-color: #DEA15E;
    color:#fff;
  }
  #message {
    margin-top: 20px;
    text-align: center;
    color: #004754;
    font-size: 14px;
  }
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  
  .packages-section {
    padding: 50px 20px;
    text-align: center;
    /* Ensure the background covers the area properly */
    background: url("/assets/bg.png") no-repeat center center;
    background-size: contain; /* This scales the background to cover the entire element */
}

/* Title */
.packages-title {
    font-size: 40px;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    margin-bottom: 10px;
}




/* Services Section */
.package-overview-section {
    padding: 50px 20px;
    background: url("/assets/bg.png") no-repeat center center;
    background-size: contain;
    margin:auto;
    
}

/* Service Heading */
.package-overview-container h2 {
    font-size: 40px;
    font-weight: 800;
    color: #FFD700; /* Gold color */
}

/* Service Subtitle */
.package-overview-container p {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 40px;
    line-height: 30px;
    
}

.package-overview-container{
    width: 60%;
    margin: 30px auto;
    text-align: left;
  }

/* Services Inclusions Section */
.package-inclusions-section {
    text-align: center;
    background: url("/assets/bg.png") no-repeat center center;
    background-size: auto;
    background-size: contain;
    
}
.package-inclusions-section h2{
    font-size: 50px;
    font-weight: 600;
    color: #FFD700; /* Gold color */
}
.package-inclusions-section ul {list-style-type:none;
text-align: center;
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
    
}

.package-inclusions-section ul li:before {
    content:"\2713\0020";
  }

.package-inclusions-section ul li{
    font-size: 22px;
}
.package-inclusions-container{
  width: 60%;
  margin: 40px auto;
  text-align: left;
}

.fade {
  position:relative;
  animation-name:fadeinout, slidein;
  animation-duration:0.2s, 0.2s;
  animation-iteration-count:infinite, 1;
  animation-direction:alternate, normal;
}

@keyframes fadeinout {
  0% {
    opacity:0
  }

  100% {
    opacity:100
  }
}


@keyframes slidein {
  from {
    left:-100px;
  }
  
  to {
    left:0px;
  }
}


@keyframes blink {
  0%, 100% {background-color:#db570ae2;}
  50% {background-color: var(--theme-main-heading-color);}
}
.blinking-button {
  background-color: var(--theme-main-heading-color);
  color: white;
  animation: blink 1.5s linear infinite;
}
.neon-text {
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.0s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 0px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    80% {
        text-shadow: 0 0 0px var(--theme-main-heading-color), 0 0 20px var(--theme-main-heading-color), 0 0 40px var(--theme-main-heading-color), 0 0 80px var(--theme-main-heading-color), 0 0 160px var(--theme-main-heading-color);
    }
}


@keyframes shine {
  0% {
    left: -10%;
  }
  100% {
    left: 110%
  }
}


.gallery-section {
    padding: 50px 20px;
    text-align: center;
    /* Ensure the background covers the area properly */
    background: url("/assets/bg.png") no-repeat center center;
    background-size: contain; /* This scales the background to cover the entire element */
    overflow:hidden !important;
    
}
.gallery{
    position:relative;
    width:300px;
    height:250px;
    transform-style:preserve-3d;
    animation:rotate 35s linear infinite;
    margin:auto;
    display:grid;
    place-items:center;
    margin-top:140px;
    margin-bottom:140px;
    }
  
  @keyframes rotate{
    from{
      transform:perspective(1100px) rotateY(0deg);
    }
    
    to{
      transform:perspective(1100px) rotateY(360deg);
    }
  }
  
  .gallery span{
    position:absolute;
    width:100%;
    height:100%;
    transform-origin:center;
    transform-style:preserve-3d;
    transform:rotateY(calc(var(--i) * 45deg)) translateZ(380px);
  }
  
  .gallery span img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .fa {
    font-weight: 400;
    font-family: "Font Awesome 5 Free";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  
  
  .package-overview-container li {
  border-bottom: 0px solid #494a5a;
  padding: 0px;
  margin: 0px;
    margin-right: 0px;
  margin-right: 10px;
  line-height: 42px;
}
.package-overview-container ul {
  list-style: inside;
  font-size: 18px;
  color: var(--theme-primary-color);
}

.package-overview-container h3, h4, h5 {
    font-size:22px;
}

/**********************Booking/Enqury Submit Loading Code Start here ***************************/
.errorRed100{color:red;margin-top:5px;font-size:14px;}

.loading{position:fixed;z-index:9999;height:2em;width:2em;overflow:show;margin:auto;top:0;left:0;bottom:0;right:0;display:none;}
.loading:before{content:'';display:block;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(113, 200, 98, 0.3);}
.loading:not(:required){font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
.loading:not(:required):after{content:'';display:block;font-size:10px;width:1em;height:1em;margin-top:-0.5em;-webkit-animation:spinner 1500ms infinite linear;-moz-animation:spinner 1500ms infinite linear;-ms-animation:spinner 1500ms infinite linear;-o-animation:spinner 1500ms infinite linear;animation:spinner 1500ms infinite linear;border-radius:0.5em;ne;background-color:transparent;border:0;}
.loading:not(:required):after{content:'';display:block;font-size:10px;width:1em;height:1em;margin-top:-0.5em;-webkit-animation:spinner 1500ms infinite linear;-moz-animation:spinner 1500ms infinite linear;-ms-animation:spinner 1500ms infinite linear;-o-animation:spinner 1500ms infinite linear;animation:spinner 1500ms infinite linear;border-radius:0.5em;-webkit-box-shadow:rgba(237, 18, 18, 0.75) 1.5em 0 0 0, rgba(237, 18, 18, 0.75) 1.1em 1.1em 0 0, rgba(237, 18, 18, 0.75) 0 1.5em 0 0, rgba(237, 18, 18, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(237, 18, 18, 0.75) 0 -1.5em 0 0, rgba(237, 18, 18, 0.75) 1.1em -1.1em 0 0;box-shadow:rgba(237, 18, 18, 0.75) 1.5em 0 0 0, rgba(237, 18, 18, 0.75) 1.1em 1.1em 0 0, rgba(237, 18, 18, 0.75) 0 1.5em 0 0, rgba(237, 18, 18, 0.75) -1.1em 1.1em 0 0, rgba(237, 18, 18, 0.75) -1.5em 0 0 0, rgba(237, 18, 18, 0.75) -1.1em -1.1em 0 0, rgba(237, 18, 18, 0.75) 0 -1.5em 0 0, rgba(237, 18, 18, 0.75) 1.1em -1.1em 0 0;}
@-webkit-keyframes spinner{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);}
100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg);}
}
  

/******