/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /**
     * colors
     */
  
    --united-nations-blue: hsl(214, 56%, 58%);
    --bright-navy-blue: hsl(214, 57%, 51%);
    --spanish-gray: hsl(0, 0%, 60%);
    --black-coral: hsl(225, 8%, 42%);
    --oxford-blue: hsl(208, 97%, 12%);
    --yale-blue: hsl(214, 72%, 33%);
    --blue-ncs: hsl(197, 100%, 36%);
    --gunmetal: hsl(206, 34%, 20%);
    --gainsboro: hsl(0, 0%, 88%);
    --cultured: hsl(0, 0%, 98%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --onyx: hsl(0, 0%, 25%);
    --jet: hsl(0, 0%, 20%);
  
    /**
     * typography
     */
  
    --ff-poppins: "Poppins", sans-serif;
    --ff-montserrat: "Montserrat", sans-serif;
    --ff-segoe: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  
    --fs-1: calc(20px + 3.5vw);
    --fs-2: calc(18px + 1.6vw);
    --fs-3: calc(16px + 0.45vw);
    --fs-4: 15px;
    --fs-5: 14px;
    --fs-6: 13px;
    --fs-7: 12px;
    --fs-8: 11px;
  
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
  
    /**
     * transition
     */
  
    --transition: 0.25s ease-in-out;
  
    /**
     * spacing
     */
  
    --section-padding: 60px;
  
    /**
     * border-radius
     */
  
    --radius-15: 15px;
    --radius-25: 25px;
  
  }

/*-----------------------------------*\
 * #RESET & GLOBAL
\*-----------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--ff-poppins), Arial, sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

html {
    font-size: 100%; /* Ensures proper scaling for all devices and browsers */
    -webkit-font-smoothing: antialiased; /* Optimizes font rendering for macOS */
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    background-color: var(--cultured);
    color: var(--onyx);
    font-family: var(--ff-segoe);
    line-height: 1.6;
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Home page */

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 100vh; /* Minimum height matches the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Image Container and Hero Image Slideshow Effect */
.image-container {
    width: 100%;
    height: 100vh;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    animation: heroSlideshow 24s infinite;
}

/* Set animations for first and second images */
.hero-image:nth-child(1) {
    animation-delay: 0s; /* Image 1 starts immediately */
}
.hero-image:nth-child(2) {
    animation-delay: 6s; /* Image 2 starts after 6s */
}
.hero-image:nth-child(3) {
    animation-delay: 12s; /* Image 3 starts after 12s */
}
.hero-image:nth-child(4) {
    animation-delay: 18s; /* Image 4 starts after 18s */
}

/* Keyframes for slideshow effect */
@keyframes heroSlideshow {
    0%, 25% {
        opacity: 1;
        transform: scale(1);
    }
    25.1%, 100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/* Content Section */
.content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(1, 0, 5, 0.3), rgba(4, 1, 17, 0.3));
    text-align: center;
}





/*********************nav bar ***************************/
/********************************************************/
/************************************************ ******/

/* Navbar Container */
.navbar-container {
    display: flex;
    position: fixed;
    top: 0;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    padding: 15px;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999; /* Ensure navbar is always above other elements */
    transition: transform 0.3s ease-in-out;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Logo Styling */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, #202020, #181818);
    box-shadow: 5px 5px 15px #0d0d0d, -5px -5px 15px #262626;
}

.logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation Links Styling */
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #b3b3b3;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #1db954;
    text-shadow: 2px 2px 8px rgba(0, 255, 0, 0.5);
}

/* Mobile Menu Button */
.menu-button {
    display: none;
}

/* Sidebar Styling */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: left 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.sidebar.active {
    left: 0;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.8);
}

.sidebar-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sidebar-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.sidebar-nav-links {
    list-style: none;
    padding: 0;
}

.sidebar-nav-links li {
    padding: 15px 0;
    text-align: center;
}

.sidebar-nav-links a {
    text-decoration: none;
    color: #b3b3b3;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sidebar-nav-links a:hover {
    color: #1db954;
    transform: translateX(10px);
}

/* 3D Button Effects */
button {
    background-color: #1db954;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

button:hover {
    box-shadow: 0px 10px 15px rgba(0, 255, 0, 0.5);
    transform: translateY(-5px);
}

 


/**********************************/
/**********************************/
/**********************************/
/* Title */

/* General Reset for Cross-Browser Consistency */


/* Styling for the container holding both sections */
.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 17px;
    margin-top: 30vh;
    animation: fadeInContainer 2s ease-out;
    letter-spacing: 1.5px;
    font-weight: 700; /* Bold font */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for depth */
    position: relative; /* For child animations */
    overflow: hidden; /* For visual effects */
}

/* Title section */
.title-text {
    margin-bottom: 100px; /* Adds spacing between title and button */
    opacity: 0;
    animation: fadeInTitle 1.5s ease-out forwards;
}

.title-text h1 {
    font-size: 5rem;
    color: white;
    -webkit-text-stroke: 1px black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    animation: slideIn 2s ease-in-out forwards;
    opacity: 0;
    transition: transform 0.5s ease-in-out;
}

.title-text h1:hover {
    transform: scale(1.05);
    color: #FFD700; /* Gold effect */
    text-shadow: 4px 4px 6px rgba(255, 223, 0, 0.8);
}

.title-text p {
    font-size: 2rem;
    color: white;
    -webkit-text-stroke: 1px black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: slideIn 1.5s ease-in-out forwards;
    opacity: 0;
    transition: letter-spacing 0.3s ease-in-out;
}

.title-text p:hover {
    letter-spacing: 2px;
    color: #FFD700;
}

/* Button section */
.button-container {
    margin-top: 10px;
    animation: slideIn 2s ease-in-out forwards;
    opacity: 0;
}

.button {
    display: inline-block;
    font-size: 1.5rem;
    padding: 14px 40px;
    color: white;
    background: linear-gradient(45deg, #ee0979, #ff6a00);
    border: 1.5px solid #ee0979;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

/* Button hover effect */
.button:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #0056b3;
}

.button:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    animation: ripple 1s linear infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInContainer {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Screens */
@media (max-width: 780px) {
    .title-container {
        margin-top: 20vh;
        padding: 10px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .title-text h1 {
        font-size: 2.3rem; /* Adjusted font size */
        line-height: 1.2; /* Increased for better spacing */
        font-weight: bold;
        letter-spacing: 1px;
        margin-top: 70px;
        margin-bottom: 50px; /* Fixed typo "argin-bottom" */
        word-break: break-word; /* Ensures long words wrap */
        white-space: normal; /* Ensures text can break onto new lines */
        text-align: center; /* Centers text in the container */
        overflow-wrap: break-word; /* Handles long text */
        filter: brightness(1.3);
    }

    .title-text p {
        font-size: 1.5rem;
        padding: 10px 30px; /* Fixed missing "px" */
        color: #fff;
        animation: fadeInParagraph 1.5s ease-in-out forwards;
        opacity: 0;
        transition: letter-spacing 0.3s ease-in-out;
        margin-top: 20px;
        filter: brightness(1.3);
    }

    .button-container {
        margin-top: 15px;
    }

    .button {
        font-size: 1.2rem;
        padding: 10px 30px;
        color: #fff;
        background: linear-gradient(45deg, #ee0979, #ff6a00);
        border: none;
        border-radius: 25px;
        text-decoration: none;
        animation: glowButton 2s infinite alternate ease-in-out;
    }
}

/* Animations */
@keyframes bounceTitle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInParagraph {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowButton {
    from {
        box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(238, 9, 121, 0.7);
    }
}




 







/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Services */

.text h2{
    font-size: 40px;
    font-weight: 650;
    margin-top: 40px;
    margin-bottom: 10px;
    line-height: 2;
    text-align: center;
}

.rowitems{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px,auto));
    gap: 25px;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-left: 30px ;
    margin-right: 30px;
    margin-bottom:10px ;
}

.container-box{
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    padding: 50px 10px;
    transition: all 0.7s ease 0s;
    cursor: pointer;
}

.container-image img{
    height: 100px;
    width: 100px;
    padding: 10px;
    margin-bottom: 15px;
}

.container-box h4{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 550;
}

.container-box p{
    font-size: 16px;
    color: #808080;
}

.container-box:hover{
    transform: translateX(3px);
    box-shadow: 5px 20px 50px rgba(78, 78, 78, 0.1);
    border: 1px solid transparent;
    border-radius: 0px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Packages */

.card {
    position: relative;
    overflow: hidden;
    width: 300px; /* Fixed width for larger screens */
    height: 400px; /* Fixed height for larger screens */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: all 0.3s; /* Add transition for smooth resizing */
}


.top-rated {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007BFF;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 15px;
}

.card-img {
    width: 100%;
    height: 75%;
    object-fit: cover;
}

.card-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.text-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.text-content .destination {
    font-size: 14px;
    color: #555;
}

.arrow-btn {
    background-color: transparent;
    color: #F35A48;
    font-size: 24px;
    text-decoration: none;
    border: 2px solid #F35A48;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.arrow-btn:hover {
    background-color: #F35A48;
    color: white;
}

.package-title {
    text-align: center;
}

.package-title h2 {
    font-size: 60px;
    font-weight: 650;
    padding-top: 75px;
    padding-bottom: 10px;
    line-height: 2;
}

.package-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.image {
    position: relative;
    width: 300px; /* Fixed width for larger screens */
    height: 400px; /* Fixed height for larger screens */
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    cursor: pointer;
    filter: brightness(95%);
    border-radius: 30px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the card proportionally */
    border-radius: 30px;
}

.image h3 {
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 10px;
    width: 100%;
    right: 20px;
}

.dest-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-bottom: 50px;
}

.location h4 {
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}

.pac-details li {
    font-size: 19px;
    color: #4c4c4c;
    margin-left: 15px;
    margin-bottom: 2px;
    list-style-type: disc;
}

.image:hover {
    filter: brightness(105%);
    transform: scale(1.03);
}

/* Scroll reveal animation */
@keyframes scrollReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply scroll reveal animation */
.card.visible, .image.visible {
    animation: scrollReveal 0.6s ease-out forwards;
    opacity: 1;
    transform: scale(1);
}

/* Initial hidden state */
.card, .image {
    opacity: 0;
    transform: scale(0.9); /* Slightly smaller initially */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .card {
        width: 50; /* Adjust card width for tablets */
        height: auto; /* Let height adapt to content */
        margin: 0 auto; /* Center the card */
    }

    .package-title h2 {
        font-size: 36px; /* Scale down the title size */
        padding-top: 50px; /* Adjust padding for better spacing */
    }

    .image {
        width: 90%; /* Maintain responsiveness for the image */
        height: auto; /* Preserve aspect ratio */
        margin: 0 auto; /* Center the image */
    }

    .card-img {
        height: auto; /* Allow dynamic height based on content */
        object-fit: contain; /* Ensure the image fits without cropping */
    }

    .text-content h2 {
        font-size: 16px; /* Adjust font size for better readability */
    }

    .text-content .destination {
        font-size: 12px; /* Scale down for smaller screens */
    }

    .arrow-btn {
        font-size: 20px; /* Resize arrow button */
        padding: 4px; /* Adjust padding */
    }

    .location h4 {
        font-size: 20px; /* Adjust location text size */
    }

    .pac-details li {
        font-size: 16px; /* Adapt text size for details */
    }
}

@media (max-width: 480px) {
    .package-title h2 {
        font-size: 28px; /* Scale down the title size further */
    }

    .image {
        width: 100%; /* Make the image fill the screen */
        height: auto; /* Maintain aspect ratio */
        margin: 0 auto; /* Center the image */
    }

    .card-img {
        height: 50vw; /* Use viewport width for proportional scaling */
        object-fit: cover; /* Ensure proper image fit */
    }

    .text-content h2 {
        font-size: 14px; /* Reduce font size for smaller screens */
    }

    .text-content .destination {
        font-size: 10px; /* Scale down font size */
    }

    .arrow-btn {
        font-size: 18px; /* Further resize arrow button */
    }

    .location h4 {
        font-size: 18px; /* Scale down location text */
    }

    .pac-details li {
        font-size: 14px; /* Adjust font size for better readability */
    }
}



/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/


/* Locations */

/* Container Styling */
.location-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.col-content {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 400px;
    background-color: #f8f8f8;
    border-radius: 27px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    filter: brightness(95%);
    opacity: 0; /* Start hidden */
    transform: scale(0.9); /* Start slightly smaller */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.6s ease;
}

/* Visible state on scroll */
.col-content.visible {
    opacity: 1;
    transform: scale(1);
}

/* Hover effect for tilt and shadow */
.col-content:hover {
    filter: brightness(120%);
    transform: scale(1.03) perspective(1000px) rotateX(3deg) rotateY(3deg);
    box-shadow: 0px 10px 20px rgba(0, 123, 255, 0.3); /* Glow effect */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.col-content img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container */
    border-radius: 27px;
}

/* Text styling within cards */
.col-content h5, .col-content p {
    position: absolute;
    border: 6px transparent;
    backdrop-filter: blur(12px);
    font-size: 20px;
    color: white;
    font-weight: 500;
    left: 20px;
    cursor: pointer;
}

.col-content h5 {
    bottom: 50px;
    font-size: 25px;
    font-weight: bold;
}

.col-content p {
    bottom: 20px;
    font-size: 20px;
}

/* Button Styling */
button#viewMoreBtn {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button#viewMoreBtn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/* Scroll reveal animation */
@keyframes scrollReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply scroll reveal animation */
.col-content.visible {
    animation: scrollReveal 0.6s ease-out forwards;
}



/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Newsletter */

.newsletter{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.newstext h2{
    margin-top: 100px;
    font-size: 38px;
}

.newstext p{
    font-size: 20px;
    color: #4c4c4c;
}

.newsletter form{
    margin-top: 100px;
    width: 100%;
    position: relative;
}

.newsletter form input:first-child{
    display: inline-block;
    width: 300px;
    font-size: 17px;
    outline: none;
    border: none;
    border-radius: 20px;
    padding: 20px 150px 20px 30px;
    box-shadow: 5px 10px 30px rgb(85 85 85 / 20%);
}

.newsletter form input:last-child{
    display: inline-block;
    position: absolute;
    outline: none;
    border: 2px solid transparent;
    border-radius: 20px;
    color: white;
    background-color: #007BFF;
    padding: 14px 30px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 450;
    top: 6px;
    right: 6px;
    transition: ease 0.30s;
}

.newsletter form input:last-child:hover{
    border: 2px solid #007BFF;
    background-color: white;
    color: #007BFF;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Footer */
/* Footer */
.footer {
    margin-top: 80px;
    background-color: #007BFF;
}

/* Footer Inner Content */
.foot {
    padding: 20px 0;
}

/* Footer Content Layout */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Footer Section Headings */
.footlinks h4 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

/* Underline for Headings */
.footlinks h4::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    left: 0;
    bottom: -7px;
    background: white;
}

/* Footer Links */
.footlinks ul li {
    margin-bottom: 15px;
}

/* Footer Links Styling */
.footlinks ul li a {
    font-size: 17px;
    color: #dddddd;
    display: block;
    transition: ease 0.30s;
}

/* Hover Effect for Footer Links */
.footlinks ul li a:hover {
    transform: translate(6px);
    color: white;
}

/* Social Icons */
.social a {
    font-size: 25px;
    margin: 4px;
    height: 40px;
    width: 40px;
    color: #007BFF;
    background-color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: ease 0.30s;
}

/* Hover Effect for Social Icons */
.social a:hover {
    transform: scale(1.2);
}

/* Footer End Text */
.end {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 12px;
}

/* Footer End Text Styling */
.end p {
    font-size: 15px;
    color: white;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Responsive Design for Mobile (Max-width 768px) */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack footer sections vertically */
        align-items: center;
    }

    .footlinks h4 {
        font-size: 18px; /* Smaller font size for headings on mobile */
    }

    .footlinks ul li a {
        font-size: 16px; /* Adjust font size for footer links */
    }

    .social a {
        margin: 6px 12px; /* Adjust margin for social icons */
        font-size: 22px; /* Adjust icon size for mobile */
        height: 36px;
        width: 36px;
    }

    .end p {
        font-size: 14px; /* Slightly smaller end text on mobile */
    }
}

/* Tablet Styles (Max-width 1024px) */
@media (max-width: 1024px) {
    .footer-content {
        justify-content: center; /* Center footer sections on tablets */
        flex-wrap: wrap;
    }

    .footlinks h4 {
        font-size: 19px; /* Adjust heading font size for tablet */
    }

    .footlinks ul li a {
        font-size: 16px; /* Adjust font size for links on tablet */
    }

    .social a {
        margin: 4px 8px; /* Slightly adjust margin for tablet */
        font-size: 24px;
        height: 38px;
        width: 38px;
    }
}

/* About Us */

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* About Us */
/* Global Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

/* Page Structure */
body {
    min-height: 100vh;
    background-repeat: no-repeat;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* About Page Styles */
.aboutbody {
    background-color: #191919;
    padding: 40px 0;
}

.aboutbody .about {
    width: 100%;
    padding: 78px 0;
}

.aboutbody .about img {
    height: auto;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.aboutbody .abt-text {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    text-align: center;
}

.aboutbody .abt-text h1 {
    font-size: 5vw;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.aboutbody .abt-text h1 span {
    color: #fc0050;
    letter-spacing: 1px;
}

.aboutbody .abt-text p {
    color: #e0e0e0;
    font-size: 1.5vw;
    margin-bottom: 45px;
    line-height: 1.6;
    letter-spacing: 1px;
}

.aboutbody .main {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 20px;
}

.aboutbody .connectbtn {
    display: inline-block;
    background-color: #fc0050;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 30px;
    transition: ease 0.4s;
    border: 2px solid transparent;
    letter-spacing: 1px;
    text-align: center;
}

.aboutbody .connectbtn:hover {
    background-color: transparent;
    border: 2px solid #fc0050;
    transform: scale(1.1);
}

.aboutbody .connect-section {
    margin-top: 26px;
}

.aboutbody .social-icons a {
    height: 40px;
    width: 40px;
    margin: 4px;
    font-size: 30px;
    color: #101010;
    background-color: #ffffff;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: ease 0.30s;
}

.aboutbody .social-icons a:hover {
    transform: scale(1.2);
}

/* Responsive Styles */

/* Tablets and Smaller Desktops */
@media (max-width: 1024px) {
    .aboutbody .abt-text {
        max-width: 80%;
        margin: 0 auto 30px;
    }

    .aboutbody .about img {
        max-width: 350px;
    }

    .aboutbody .abt-text h1 {
        font-size: 6vw;
    }

    .aboutbody .abt-text p {
        font-size: 1.4vw;
    }

    .aboutbody .main {
        justify-content: center;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .aboutbody .abt-text h1 {
        font-size: 7vw;
    }

    .aboutbody .abt-text p {
        font-size: 4vw;
    }

    .aboutbody .main {
        flex-direction: column;
        text-align: center;
    }

    .aboutbody .about img {
        max-width: 300px;
    }

    .aboutbody .connectbtn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .aboutbody .social-icons a {
        height: 35px;
        width: 35px;
        font-size: 24px;
    }
}

/* Very Small Mobile Screens */
@media (max-width: 480px) {
    .aboutbody .abt-text h1 {
        font-size: 9vw;
    }

    .aboutbody .abt-text p {
        font-size: 5vw;
    }

    .aboutbody .about img {
        max-width: 250px;
    }

    .aboutbody .connectbtn {
        padding: 8px 18px;
        font-size: 14px;
    }

    .aboutbody .social-icons a {
        height: 30px;
        width: 30px;
        font-size: 20px;
    }
}



/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Contact Us */

/* Contact Us */
.contactbody {
    background-color: #101010;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Main Contact Section */
.contact {
    padding: 110px 15%; /* Reduced padding for better responsiveness */
    height: 100%;
    min-height: 100vh;
}

/* Heading */
.contact-form h1 {
    font-size: 60px; /* Reduced size for better fit on smaller screens */
    color: white;
    margin-bottom: 20px;
}

/* Highlighted Text */
.contact-form h1 span {
    color: #fc0050;
}

/* Paragraph */
.contact-form p {
    color: white;
    line-height: 30px;
    letter-spacing: 1px;
    font-size: 23px;
    margin-bottom: 20px;
}

/* Input Fields and Textareas */
.contact-form form input, form textarea {
    width: 100%;
    padding: 17px;
    border: none;
    outline: none;
    background-color: #191919;
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Submit Button */
.contact-form form .submit-btn {
    display: inline-block;
    background-color: #fc0050;
    font-size: 27px;
    font-weight: 600px;
    border: 2px solid transparent;
    border-radius: 40px;
    width: 220px;
    cursor: pointer;
    transition: ease 0.30s;
}

/* Hover Effect on Submit Button */
.contact-form form .submit-btn:hover {
    border: 2px solid #fc0050;
    background-color: transparent;
    transform: scale(1.1);
}

/* Mobile Styles (Max-width 768px) */
@media (max-width: 768px) {
    .contact {
        padding: 80px 10%; /* Less padding on mobile */
    }

    .contact-form h1 {
        font-size: 45px; /* Smaller heading for mobile */
    }

    .contact-form p {
        font-size: 18px; /* Adjusted paragraph font size */
        line-height: 28px;
    }

    .contact-form form input, form textarea {
        font-size: 18px; /* Adjusted input field font size */
        padding: 14px; /* Reduced padding for smaller screens */
    }

    .contact-form form .submit-btn {
        font-size: 22px; /* Smaller button text */
        width: 180px; /* Smaller button size */
    }
}

/* Tablet Styles (Max-width 1024px) */
@media (max-width: 1024px) {
    .contact {
        padding: 100px 15%; /* Adjust padding for tablets */
    }

    .contact-form h1 {
        font-size: 55px; /* Adjust heading size for tablets */
    }

    .contact-form p {
        font-size: 20px; /* Adjust paragraph size */
        line-height: 30px;
    }

    .contact-form form input, form textarea {
        font-size: 19px; /* Adjust input font size */
        padding: 16px; /* Adjust padding for inputs */
    }

    .contact-form form .submit-btn {
        font-size: 25px; /* Adjust button font size */
        width: 200px; /* Adjust button width */
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* Registration Form */
/* Registration Section */
.register-body {
    background-color: #101010;
    background-image: linear-gradient(to bottom right, #111, #1c1c1c);
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.registration {
    padding: 100px 15%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form h1 {
    font-size: 72px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.register-form h1 span {
    color: #fc0050;
    animation: pulse 1.5s infinite;
}

.register-form {
    max-width: 500px;
    width: 100%;
    background: rgba(28, 28, 28, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.register-form form input {
    color: #fff;
    padding: 15px;
    background-color: #2a2a2a;
    font-size: 18px;
    outline: none;
    border: 1px solid #444;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    transition: border-color 0.3s;
}

.register-form form input:focus {
    border-color: #fc0050;
    box-shadow: 0 0 8px rgba(252, 0, 80, 0.5);
}

.register-form h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    color: #fc0050;
    text-align: center;
    text-transform: uppercase;
}

/* Submit Button */
.register-form form .submitbtn {
    display: block;
    background-color: #fc0050;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(252, 0, 80, 0.4);
}

.register-form form .submitbtn:hover {
    background-color: transparent;
    color: #fc0050;
    border: 2px solid #fc0050;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 0, 80, 0.6);
}

@keyframes pulse {
    0%, 100% {
        color: #fc0050;
    }
    50% {
        color: #ff5470;
    }
}

@media screen and (max-width: 1024px) {
    .registration {
        padding: 80px 10%; /* Reduce padding for smaller screens */
    }

    .register-form h1 {
        font-size: 60px; /* Scale down the heading size */

    }

    .register-form {
        max-width: 600px;
    }

    .register-form form input {
        font-size: 16px; /* Adjust input font size */
        padding: 12px;
    }

    .register-form form .submitbtn {
        font-size: 20px;
        padding: 12px 0;
    }
}

/* Tablets and Large Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .registration {
        padding: 60px 8%; /* Further reduce padding */
    }

    .register-form h1 {
        font-size: 48px;
         margin-top: 50px;/
    }

    .register-form {
        padding: 30px; /* Adjust padding for compact form */
    }

    .register-form form input {
        font-size: 16px; /* Slightly smaller input font size */
        padding: 10px;
    }

    .register-form form .submitbtn {
        font-size: 18px;
        padding: 10px;
    }
}

/* Large Phones (max-width: 576px) */
@media screen and (max-width: 576px) {
    .registration {
        padding: 40px 5%;
    }

    .register-form h1 {
        font-size: 36px; /* Smaller heading for phones */
        letter-spacing: 1.5px;
        margin-top: 50px;/
    }

    .register-form {
        padding: 20px;
        border-radius: 12px; /* Slightly smaller radius */
    }

    .register-form form input {
        font-size: 14px;
        padding: 10px;
    }

    .register-form form .submitbtn {
        font-size: 16px;
        padding: 10px;
    }

    .register-form h4 {
        font-size: 16px; /* Scale down the subheading */
    }
}

/* Small Phones (max-width: 400px) */
@media screen and (max-width: 400px) {
    .registration {
        padding: 20px 3%;
    }

    .register-form h1 {
        font-size: 28px; /* Compact heading size */
        margin-top: 50px;/
    }

    .register-form {
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .register-form form input {
        font-size: 12px;
        padding: 8px;
    }

    .register-form form .submitbtn {
        font-size: 14px;
        padding: 8px;
    }

    .register-form h4 {
        font-size: 14px;
    }
}




/******************************/
/******************************/
/******************************/

/* Location Section */
./* MacOS-inspired CSS for a sleek UI */

/* General Body Styling */
.location-body {
    background-color: #f5f5f7;
    color: #1d1d1f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Section Styling */
.location-section {
    padding: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #e3e3e8);
    border-radius: 12px;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
    margin: 20px;
}

/* Subtle Hover Effect on the Section */
.location-section:hover {
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Heading Styling */
.location-heading h1 {
    margin: 20px 0;
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
    opacity: 0;
    animation: slideIn 1s ease-in-out forwards;
}

/* Accent Color on Hover in Title */
.location-heading h1 span {
    color: #007aff;
    position: relative;
    display: inline-block;
}

.location-heading h1 span::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #007aff;
    bottom: -5px;
    left: 0;
    transition: width 0.4s ease-in-out;
}

.location-heading h1 span:hover::after {
    width: 100%;
}

/* Detail Section */
.location-detail h1 {
    padding-top: 40px;
    color: #007aff;
    font-size: 32px;
    text-align: center;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s 0.5s ease-in-out forwards;
}

.location-detail p {
    font-size: 18px;
    margin: 30px 0 10px;
    text-align: center;
    line-height: 1.6;
    color: #3a3a3c;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s 0.7s ease-in-out forwards;
}

/* Button Styling */
.location-section .cta-button {
    background-color: #007aff;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-top: 20px;
}

.location-section .cta-button:hover {
    background-color: #005ac1;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-video-container {
    display: flex; /* Enable Flexbox */
    justify-content: space-between; /* Space between items */
    align-items: center; /* Vertically center items */
    gap: 20px; /* Spacing between the image and video */
    padding: 20px;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

/* Image Styling */
.location-img img {
    height: 300px;
    width: 300px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transform: scale(0.9);
    opacity: 0;
    animation: zoomIn 1s 1s ease-in-out forwards;
    align-self: flex-start;
}

.location-img img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Star Rating */
.stars i {
    font-size: 18px;
    color: #ffd700;
    margin-right: 5px;
    animation: fadeIn 1.5s 1.2s ease-in-out forwards;
    opacity: 0;
}

/* Video Styling */
.video-content iframe {
    width: 100%;
    max-width: 600px; /* Limit the width of the video */
    height: 315px; /* Maintain 16:9 aspect ratio */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    align-self: flex-end; /* Align video to flex-end */
}

/* Subtle Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .location-section {
        padding: 50px;
    }

    .location-heading h1 {
        font-size: 36px;
    }

    .location-detail h1 {
        font-size: 24px;
    }

    .location-img img {
        height: 200px;
        width: 200px;
    }

    /* Adjust Button Styling for Small Screens */
    .image-video-container {
        flex-direction: column;
        gap: 10px;
    }

     

    .video-content iframe {
        width: 100%;
        height: auto;
    }

    /* CTA Button with Sticky Position */
    .location-section .cta-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
        z-index: 1000;
        border-radius: 50px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Enhance star size for better tap targets */
    .stars i {
        
        font-size: 20px;
        align-items: center;
        justify-content: center;
    }
}








/******************************/
/******************************/
/******************************/

/* Row Items for smaller screens */
@media (max-width: 768px) {
    .rowitems {
        grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    }

    .package-content {
        flex-direction: column;
    }
}


/* location hidden */

.hidden {
    display: none; /* Hide elements with this class */
}


.location-container {
    text-align: center;
    margin-top: 20px;
}

/* Center the button */
.center {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 12px 24px; /* Padding for the button */
    border: none; /* Remove borders */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Adjust font size */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}

/* Hover effect */
.center:hover {
    background-color: #45a049; /* Darker green on hover */
}

/* Style the button on focus */
.center:focus {
    outline: none; /* Remove the default outline */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
}




/* Container for the card */
/* Container for the card */
.welcome-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 40px auto; /* Increase the top margin to add space between sections */
    max-width: 900px;
}
/* Image styling */
.card-image {
    flex-basis: 45%; /* Ensures image takes 45% of the space */
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Text section styling */
.card-text {
    flex-basis: 50%; /* Ensures text takes 50% of the space */
    padding-left: 30px;
    max-width: 500px;
}

.card-text h1 {
    font-size: 36px;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin-bottom: 10px;
}

.card-text h1 span {
    color: #2e7d32;
    font-style: italic;
}

.card-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-card {
        flex-direction: column; /* Stacks image and text vertically */
        text-align: center;
    }

    .card-text {
        padding-left: 0;
        margin-top: 20px; /* Adds spacing between image and text */
    }

    .card-image img {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* 3D Canvas Style */
 
/* Responsive styles */
@media (max-width: 768px) {
    .navbar-container {
        padding: 10px 20px;
    }
    .nav-links {
        display: none;
    }
    .menu-button {
        display: block;
    }
}
