* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins";
}


/* ----------------------------------- nav bar ------------------------------------------------------ */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom right, #3E4095, #006DB5, #3E4095);
    padding: 0px 20px;
    /* position: fixed; */
    top: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    margin-bottom: 0;
}

nav a {
    text-decoration: none;
    color: white;
}

.gif-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: -2%;
}

.gif-container img {
    width: 30%;
    height: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-left: 5%;
    flex-grow: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 5px;
    transition: all 0.3s;
    text-align: center;
    font-family: "Poppins";
}

.nav-links a:hover,
.nav-links .active {
    text-decoration: underline;
    text-underline-offset: 5px;
    color: #FFFFFF;
}

.customize-btn {
    background-color: #039AE5;
    color: white;
    padding: 10px 20px;
    /* Increased padding for larger button */
    border: none;
    cursor: pointer;
    animation: pulse3 1.5s infinite;
    border-radius: 10px;
    font-family: "Poppins";
    font-size: 16px;
    width: 200px;
    /* Set a base width */
    text-align: center;
    margin: 0 auto;
}

@keyframes pulse3 {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.3);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
}

/* Right side icons */
.social-icons {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 15px;
    text-decoration: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    width: 30px;
}

.hamburger div {
    width: 100%;
    height: 4px;
    background-color: white;
}

.hamburger.open div:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 8px;
}

.hamburger.open div:nth-child(2) {
    opacity: 0;
}

.hamburger.open div:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -8px;
}

.menu {
    display: flex;
}

.menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    gap: 0;
}

.menu a {
    display: block;
    padding: 5px;
    color: white;
    text-decoration: none;
}

.menu a:hover {
    text-decoration: underline;
}

@media screen and (min-width:1500px) and (max-width: 2000px) {
    .menu {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-left: 15%;
    }
}

/* Responsive Media Queries */
@media (min-width: 1024px) {
    .banner img {
        width: 40%;
        top: 60%;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .gif-container img {
        width: 30%;
    }

    .hamburger {
        display: none;
    }

    .menu {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .customize-btn {
        display: block;
        width: 180px;
        /* Reduced width for larger screens */
    }
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .gif-container {
        margin: 0;
        padding: 0;
    }

    .gif-container img {
        width: 20%;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
    }
    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        width: 100%;
        text-align: center;
        z-index: 9999;
    }

    .social-icons {
        display: none;
    }

    .menu .social-icons {
        display: flex;
        justify-content: center;
        margin: 10px 0;
    }

    .menu .social-icons a {
        margin: 10px;
        font-size: 30px;
    }

    .customize-btn {
        width: 150px;
        /* Slightly smaller button on mobile */
        font-size: 12px;
        padding: 8px 20px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .customize-btn {
        width: 140px;
        /* Further reduced width for smaller screens */
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .customize-btn {
        width: 120px;
        /* Minimum width for small screens */
        font-size: 10px;
    }
}

/* ----------------------------------- banner bar ------------------------------------------------------ */
/* Ensure the video banner fills the viewport */
.banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents overflow outside the banner */
}

/* Style the video */
.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%; /* Fill the entire height of the banner */
    object-fit: cover; /* Make the video cover the entire area */
}

/* Responsive behavior for larger screens */
@media (min-width: 1024px) {
    .banner {
        height: 100vh; /* Ensure the banner still covers full screen */
    }
    .banner video {
        /* For large screens, the video remains full-screen */
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* For tablets and smaller devices (768px and up) */
@media (max-width: 1024px) and (min-width: 768px) {
    .banner {
        height: 50vh; /* Ensure the banner still covers full screen */
    }

    .banner video {
        width: 100%;
        height: auto;
        object-fit: cover; /* Ensure the video fills the screen */
    }
}

/* For smaller devices (480px to 767px) */
@media (max-width: 768px) and (min-width: 480px) {
    .banner {
        height: 60vh; /* Full screen height */
    }

    .banner video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* For very small devices (below 480px) */
@media (max-width: 480px) {
    .banner {
        height: 40vh; /* Full screen height */
    }

    .banner video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


@media (max-width: 900px) {
    nav {
        flex-direction: row-reverse;
        justify-content: flex-start;
        padding: 0px;
        gap: 10px;
        background-color: #000000;
    }

    .gif-container {
        order: 1;
        display: flex;
        margin-right: auto;
        padding: 0px;
        margin-left: 0;
    }

    .gif-container img {
        width: 18%;
    }

    .hamburger {
        display: flex;
        height: 20px;
        width: 25px;
        margin-left: auto;
        position: absolute;
        right: 10px;
        /* Aligns the hamburger to the right */
    }

    .nav-links {
        display: none;
        margin-left: 0;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: relative;
    }

    .menu.active {
        display: flex;
    }

    .social-icons {
        display: none;
    }

    .menu .social-icons {
        display: flex;
        justify-content: center;
        margin: auto;
    }

    .menu .social-icons a {
        margin: 10px;
        font-size: 30px;
    }

    .customize-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: -1%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 10px;
        padding: 5px;
        width: 30%;
    }
}
/*  ----------------------------------Gallery Section------------------------------------------------- */
/* .portfolio {
    padding-top: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    background-color: #E7F3FF;
    border-radius: 10px;
    padding: 10px;
}

.category-button {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: #323232;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Poppins";
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-button:hover,
.category-button.active {
    background-color: #1BBFE5;
    color: #FFFFFF;
}

.gallery-container {
    max-width: 1500px;
    margin: 10px;
    padding: 5px;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

Grid Item Sizes
.item-1 { grid-column: span 4; grid-row: span 3; }
.item-2 { grid-column: span 2; grid-row: span 2; }
.item-3 { grid-column: span 2; grid-row: span 2; }
.item-4 { grid-column: span 4; grid-row: span 2; }
.item-5 { grid-column: span 4; grid-row: span 2; }
.item-6 { grid-column: span 4; grid-row: span 2; }
.item-7 { grid-column: span 4; grid-row: span 2; }
.item-8 { grid-column: span 5; grid-row: span 1; }
.item-9 { grid-column: span 3; grid-row: span 1; }
.item-10 { grid-column: span 4; grid-row: span 3; }
.item-11 { grid-column: span 2; grid-row: span 2; }
.item-12 { grid-column: span 2; grid-row: span 2; }
.item-13 { grid-column: span 4; grid-row: span 2; }
.item-14 { grid-column: span 4; grid-row: span 2; }
.item-15 { grid-column: span 4; grid-row: span 2; }
.item-16 { grid-column: span 4; grid-row: span 2; }
.item-17 { grid-column: span 5; grid-row: span 1; }
.item-18 { grid-column: span 3; grid-row: span 1; }
.item-19 { grid-column: span 4; grid-row: span 3; }
.item-20 { grid-column: span 2; grid-row: span 2; }
.item-21 { grid-column: span 2; grid-row: span 2; }
.item-22 { grid-column: span 4; grid-row: span 2; }
.item-23 { grid-column: span 4; grid-row: span 2; }
.item-24 { grid-column: span 4; grid-row: span 2; }
.item-25 { grid-column: span 4; grid-row: span 2; }
.item-26 { grid-column: span 5; grid-row: span 1; }
.item-27 { grid-column: span 3; grid-row: span 1; }
.item-28 { grid-column: span 4; grid-row: span 3; }
.item-29 { grid-column: span 2; grid-row: span 2; }
.item-30 { grid-column: span 2; grid-row: span 2; }
.item-31 { grid-column: span 4; grid-row: span 2; }
.item-32 { grid-column: span 4; grid-row: span 2; }
.item-33 { grid-column: span 4; grid-row: span 2; }
.item-34 { grid-column: span 4; grid-row: span 2; }
.item-35 { grid-column: span 5; grid-row: span 1; }
.item-36 { grid-column: span 3; grid-row: span 1; }
.item-37 { grid-column: span 4; grid-row: span 3; }
.item-38 { grid-column: span 2; grid-row: span 2; }
.item-39 { grid-column: span 2; grid-row: span 2; }
.item-40 { grid-column: span 4; grid-row: span 2; }
.item-41 { grid-column: span 4; grid-row: span 2; }
.item-42 { grid-column: span 4; grid-row: span 2; }
.item-43 { grid-column: span 4; grid-row: span 2; }
.item-44 { grid-column: span 5; grid-row: span 1; }
.item-45 { grid-column: span 3; grid-row: span 1; }
.item-46 { grid-column: span 4; grid-row: span 3; }
.item-47 { grid-column: span 2; grid-row: span 2; }
.item-48 { grid-column: span 2; grid-row: span 2; }
.item-49 { grid-column: span 4; grid-row: span 2; }
.item-50 { grid-column: span 4; grid-row: span 2; }
.item-51 { grid-column: span 4; grid-row: span 2; }
.item-52 { grid-column: span 4; grid-row: span 2; }
.item-53 { grid-column: span 5; grid-row: span 1; }
.item-54 { grid-column: span 3; grid-row: span 1; }
.item-55 { grid-column: span 4; grid-row: span 3; }
.item-56 { grid-column: span 2; grid-row: span 2; }
.item-57 { grid-column: span 2; grid-row: span 2; }
.item-58 { grid-column: span 4; grid-row: span 2; }
.item-59 { grid-column: span 4; grid-row: span 2; }
.item-60 { grid-column: span 4; grid-row: span 2; }
.item-61 { grid-column: span 4; grid-row: span 2; }
.item-62 { grid-column: span 5; grid-row: span 1; }
.item-63 { grid-column: span 3; grid-row: span 1; }
.item-64 { grid-column: span 4; grid-row: span 3; }
.item-65 { grid-column: span 2; grid-row: span 2; }
.item-66 { grid-column: span 2; grid-row: span 2; }
.item-67 { grid-column: span 4; grid-row: span 2; }
.item-68 { grid-column: span 4; grid-row: span 2; }
.item-69 { grid-column: span 4; grid-row: span 2; }
.item-70 { grid-column: span 4; grid-row: span 2; }
.item-71 { grid-column: span 5; grid-row: span 1; }
.item-72 { grid-column: span 3; grid-row: span 1; }


@media (max-width: 768px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding: 10px;
    }
}
@media screen and (min-width:769px) and (max-width: 1200px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 15px;
        padding: 10px;
    }
}
@media screen and (min-width:1201px) and (max-width: 1500px) {
    .categories {
        width: 90%;
        height: auto;
        margin-left: 5%;
    }
    .gallery-grid {
        padding: 10px;
    }
} */


/* ------------------------------------- Back to Top Button Styles-------------------------------- */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #039AE5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 2px solid white;
    animation: bounce 1.5s infinite;
    animation-delay: 0.5s;
}

.back-to-top i {
    font-size: 24px;
    animation: ringing 1s ease-in-out infinite;
    /* Apply ringing animation */
}

@keyframes ringing {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.enquiry-text {
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
}

.enquiry-text span {
    display: block;
}

@media (max-width: 768px) {
    .back-to-top {
        padding: 8px 15px;
        width: auto;
    }

    .back-to-top i {
        font-size: 20px;
    }

    .enquiry-text {
        font-size: 12px;
    }
}



/* --------------------------------- new gallery ----------------------------------------- */

.filter-button {
    font-size: 16px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
    color: #323232;
    font-family: "Poppins";
    font-weight: 600;
  }

  .filter-button:hover {
    color: white;
    background-color: #1BBFE5;
  }

  .filter-button.active {
    color: white;
    background-color: #1BBFE5;
  }

  .image-container {
    margin-top: 1em;
    column-count: 4;
    row-gap: 10px;
    padding: 20px;
  }

  .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
  }

  .image-container .travel {
    display: flex;
  }

  @media (max-width: 768px) {
    .image-container {
      column-count: 1;
    }
  }

  .button-container {
    text-align: center;
    margin-bottom: 20px;
    background-color: #E7F3FF;
    margin: 20px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

  .button1 {
    display: inline-block;
    padding: 0.5em 1.0em;
    border-radius: 4px;
    background: #ffffff;
    font-family: sans-serif;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #000000;
    margin: 10px;
  }

  .button1:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .gallery-text-container {
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .gallery-text1 {
    font-size: 1rem;
    font-weight: bold;
    color: orchid;
  }

  .gallery-description {
    font-size: 0.875rem;
  }

  @media (max-width: 576px) {
    .gallery-text1 {
      font-size: 0.875rem;
    }

    .gallery-description {
      font-size: 0.75rem;
    }
  }