

<style>
h1 {
color: orange;
text-transform: uppercase;
font-size: 2rem;
}
a{
    text-decoration: none;
    color: black;
}
.home {
text-decoration: none;
list-style-type: none;
color: black;
font-size: large;
font-style: bold;
}

.btn {
background: linear-gradient(45deg, orange, darkorange);
/* Gradient from orange to darkorange */
border-radius: 20px;
border: none;
/* Remove the border to make the gradient seamless */
padding: 10px 20px;
font-size: 12px;
font-weight: bold;
color: white;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
/* Smooth transitions */
box-shadow: 0px 5px 10px rgba(255, 140, 0, 0.4);
/* Soft orange shadow */
}

.btn:hover {
background: linear-gradient(45deg, #ffd700, orange);
/* Hover gradient with yellowish tint */
transform: translateY(-3px);
/* Slight lift effect */
box-shadow: 0px 8px 15px rgba(255, 165, 0, 0.6);
/* Brighter shadow on hover */
}

.btn:active {
background: linear-gradient(45deg, darkorange, #ff4500);
/* Active state gradient with darker orange */
transform: translateY(1px);
/* Button slightly pressed down */
box-shadow: 0px 3px 6px rgba(255, 140, 0, 0.4);
/* Reduced shadow on click */
}
@media (max-width:700px) {
.image-container {}
}

.formbutton {
color: rgb(255, 255, 254);
background-color: orange;
padding: 0px;
height: 50px;
width: 130px;
border-radius: 20px;
border-color: orange;
}

.formbutton :hover {
background-color: rgba(131, 118, 94, 0.633);
}
/* General Popup Styling */

.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(231, 6, 6, 0);
justify-content: center;
align-items: center;
}

.popup-content {
background: #fff;
padding: 20px;
border-radius: 4px;
width: 80%;
max-width: 600px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
position: relative;
}

.popup-close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
}
/* Form Styling */

form {
display: flex;
flex-direction: column;
}

.form-group {
margin-bottom: 15px;
display: flex;
align-items: center;
}

.form-group label {
margin-right: 10px;
width: 150px;
/* Adjust based on content */
}

.form-group input,
.form-group select,
.form-group textarea {
flex: 1;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}

.form-group button {
width: 100%;
padding: 10px;
background-color: #007bff;
border: none;
border-radius: 4px;
color: #fff;
font-size: 16px;
cursor: pointer;
}

.form-group button:hover {
background-color: #ffffff;
}
/* Optional: Add some padding to the form fields */

.form-group input {
height: 30px;
}
body {
-webkit-user-select: none;
/* For Safari */
-moz-user-select: none;
/* For Firefox */
-ms-user-select: none;
/* For IE and Edge */
user-select: none;
/* Standard */
}

.fade-text {
opacity: 0;
animation: fadeIn 5s forwards;
/* Automatically fades in over 3 seconds */
color: #ddd;
}

@keyframes fadeIn {
to {
  opacity: 1;
}
}
/* Responsive design */

@media only screen and (max-width: 768px) {
.responsive-bg {
  background-size: cover;
  background-position: center;
  height: 50vh;
  /* Adjust the height for smaller screens */
  width: 100vw;
}
.imgcontainer {
  width: 300px;
  /* Smaller container size for smaller screens */
  height: 300px;
}
.fade-text h1 {
  font-size: 24px;
  /* Adjust font size for smaller screens */
}
}

@media only screen and (max-width: 480px) {
.responsive-bg {
  background-size: cover;
  background-position: center;
  height: 40vh;
  /* Further adjust the height for very small screens */
  width: 100vw;
}
.imgcontainer {
  width: 200px;
  /* Smaller container size for very small screens */
  height: 200px;
}
.fade-text h1 {
  font-size: 18px;
  /* Smaller font size for very small screens */
}
}

.readmore-container {
position: relative;
background-color: white;
width: 100%;
max-width: 90vw;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
}

.readmore-content {
line-height: 1.6;
max-height: 1.6em;
/* Show only one line of text */
overflow: hidden;
position: relative;
transition: max-height 0.5s ease;
}

.readmore-fade-overlay {
position: absolute;
bottom: 20px;
left: 0;
right: 0;
height: 20px;
/* Match the height of one line */
background: linear-gradient(transparent, white);
}

.readmore-btn {
background-color: darkorange;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
font-size: 16px;
margin-top: 15px;
}
/*navigation*/

.navigation ul {
display: flex;
gap: 15px;
list-style-type: none;
color: rgb(0, 0, 0);
background-color: #f3f3f3;
}

.navigation ul :hover {
color: orange;
}

.navigationul a {
text-decoration: none;
color: rgb(0, 0, 0);
}

.home {
text-decoration: none;
list-style-type: none;
color: black;
font-size: large;
font-style: bold;
}

.btn-primary {
background-color: orange;
border-radius: 20px;
border-color: darkorange;
}
/* General reset */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

.btnbtn-warning {
background-color: black;
}

body {
/* Ensure the body isn't clipping the content */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
height: 100vh;
/* Full width of the viewport */
overflow-x: hidden;
}

header {
background: transparent;
padding: 10px 20px;
width: 100%;
top: 0;
z-index: 1000;
}
/* Navbar styling */

.navbar-light {
background: transparent;
position: fixed;
width: 100%;
margin-left: -19px;
}

.navbar-logo img {
height: 30px;
margin-right: 90%;
width: 200px;
}

.navbar-light .navbar-nav .nav-link {
color: #333;
font-weight: 500;
text-transform: uppercase;
padding: 0 10px;
}

.navbar-light .navbar-nav .nav-link:hover {
color: #ff9800;
background-color: transparent;
}

.navbar-toggler {
border: none;
background: transparent;
}
/*packages*/

.grid-packages {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
/* Three equal columns */
gap: 5px;
/* Space between grid items */
width: 100%;
/* Expand to fill available width */
}

.packageul {
list-style: none;
padding-left: 0;
}

.grid-packages ul a {
text-decoration: none;
color: black;
}

.grid-packages ul a:hover {
color: orange;
}

.grid-packages h6 {
color: orange;
}

#ul-packages-1 li,
#ul-packages-2 li,
#ul-packages-3 li,
#ul-packages-4 li {
position: relative;
padding-left: 20px;
margin-bottom: 10px;
}

#ul-packages-1 li::before,
#ul-packages-2 li::before,
#ul-packages-3 li::before,
#ul-packages-4 li::before {
content: url('INDEX IMAGES/ico.png');
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 10px;
display: block;
}
/* international grid*/

.dropdown-menu {
width: fit-content;
height: fit-content;
}

.dropdown-menu .grid-dropdown {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
grid-template-columns: 33.3% 33.3% 33.3%;
grid-template-rows: 30% 30% 30%;
width: 320px;
top: 90px;
left: -10rem;
padding: 3px;
}

.dropdown-menu .grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
grid-template-columns: 33.3% 33.3% 33.3%;
grid-template-rows: 30% 30% 30%;
width: 320px;
top: 90px;
left: -10rem;
padding: 3px;
}

.dropdown-menu .grid-item img {
width: 100%;
height: fit-content;
object-fit: cover;
}

.dropdown-menu .subdropdown-button {
background: none;
border: none;
font-size: 16px;
cursor: pointer;
}

.dropdown-menu .subdropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: fit-content;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}

.dropdown-menu .subdropdown:hover .subdropdown-content {
display: block;
}
/* time to visit grid */
/* time to visit grid */

.time .timeul li a {
list-style-type: none;
color: black;
text-decoration: none;
}

.time-to-visit {
display: flex;
justify-content: space-between;
gap: 10px;
}

.timeul li a {
list-style-type: none;
text-decoration: none;
}

.timeul li a :hover {
background-color: darkorange;
}
/* destinations grid */
/* Ordered List for Grid Headings */

.grid-packages {
width: fit-content;
}

.grid-heading-packages {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
/* Ensure grid layout */
grid-gap: 200px;
}
/* Individual Grid Items */

.grid-heading-packages li {
width: fit-content;
background-color: rgba(255, 255, 255, 0.244);
text-align: center;
padding: 10px;
border: 1px solid #ddd;
transition: background-color 0.3s ease;
}
/* Headings */

.grid-heading-packages li h3 {
font-size: 1.2em;
margin-bottom: 10px;
color: #333;
}
/* Unordered List for Package Details */

.package-details-packages {
list-style-type: none;
/* Remove bullets for inner list */
padding-left: 0;
text-align: left;
width: auto;
height: auto;
}

.package-details-packages li {
margin-bottom: 5px;
font-size: 10px;
color: #555;
}
/* Anchor Tag Styling */

.package-details-packages li a {
text-decoration: none;
color: #007bff;
/* Link color */
}

.package-details-packages li a:hover {
text-decoration: underline;
/* Underline on hover */
}
/* Hover effect for grid item */

.grid-heading-packages li:hover {
background-color: #f1f1f1;
}
/* Show dropdown on hover */

.nav-item.dropdown:hover .dropdown-menu {
display: block;
}

.grid-dropdown-packages ol ul li a {
text-decoration: none;
list-style-type: none;
color: #000000;
font-size: 15px;
}
/* Dropdown menu */

.dropdown-menu {
border: none;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in-out;
width: fit-content;
}

.dropdown-item:hover {
background-color: #000000;
color: #ff9800;
}

.dropdown-menu h6 {
font-size: 1rem;
font-weight: 600;
color: #ff9800;
padding: 10px 20px;
}

.dropdown-menu hr {
margin: 5px 0;
border: 0;
border-top: 1px solid #ff9800;
}

.btn-warning {
background-color: #ff9800;
border: none;
padding: 8px 20px;
font-size: 0.7rem;
text-size-adjust: 1rem;
}

.btn-warning a {
color: white;
text-decoration: none;
}

.btn-warning a:hover {
color: #000000;
text-decoration: none;
}
/* Ensure that the dropdown menu is hidden by default */

.months {
display: none;
position: absolute;
background: white;
border: 1px solid #ddd;
list-style: none;
padding: 0;
margin: 0;
z-index: 1000;
}
/* Show the dropdown menu on hover */

ul:hover .months {
display: block;
}
/* Style the individual items */

.months li {
padding: 10px;
}

.months li a {
text-decoration: none;
color: black;
}

.months li a:hover {
background-color: #f1f1f1;
}

.enquiry-link {
color: inherit;
text-decoration: none;
display: block;
padding: 8px 16px;
}
/* Remove caret arrows from dropdowns */

.no-arrow .dropdown-toggle::after {
display: none !important;
}
/* destination */

.grid-dropdown {
display: grid;
grid-template-columns: repeat(2, 1fr);
/* 3 columns */
grid-template-rows: repeat(3, auto);
/* 3 rows */
}

.grid-dropdown :hover {
background-color: orange;
color: white;
}

.grid-dropdown a {
list-style-type: none;
text-decoration: none;
color: #000000;
padding: 3px;
}

.grid-item {
padding: 10px;
background-color: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 4px;
text-align: center;
}

.grid-item img {
width: 100px;
/* Remove the extra space between '70' and 'px' */
height: 0px;
}
/* subdropdown */

.dropdown-container {
display: flex;
flex-direction: column;
width: 150px;
margin: 20px auto;
}

.subdropdown {
position: relative;
display: block;
margin-bottom: 10px;
}

.subdropdown-button {
background-color: darkorange;
color: white;
padding: 12px 20px;
font-size: 16px;
border: none;
cursor: pointer;
border-radius: 5px;
width: 100%;
text-align: left;
}

.subdropdown-content {
display: none;
position: absolute;
background-color: white;
min-width: 160px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 5px;
}

.subdropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
font-size: 14px;
}

.subdropdown-content a:hover {
background-color: #ff9800;
/* Highlight with orange color */
color: white;
/* Change text color for better contrast */
}

.subdropdown:hover .subdropdown-content {
display: block;
}

.subdropdown:hover .subdropdown-button {
background-color: #ffffff;
}

.custom-dropdown-menu {
background-color: rgba(0, 0, 0, 0);
}
/* Media Queries for Responsiveness */

@media (max-width: 768px) {
.dropdown-menu {
  width: 100%;
  /* Full width on small screens */
  padding: 10px;
}
.subdropdown-button {
  font-size: 14px;
  padding: 10px;
  width: 100%;
}
.subdropdown-content {
  width: 100%;
  /* Full width for subdropdown content */
}
h5 {
  font-size: 18px;
}
}

@media (max-width: 480px) {
.subdropdown-button {
  font-size: 12px;
  padding: 8px;
}
h5 {
  font-size: 16px;
}
}
/*upper footer styling*/

.ul a:hover {
text-decoration: none;
color: #ffa703;
}

.h {
width: 100%;
border-width: 0.4rem;
}

.ul {
padding: 0;
margin: 0;
}

.ul ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
/* Allows items to wrap to the next line on small screens */
justify-content: center;
/* Center items horizontally */
}

.ul li {
margin: 10px;
/* Add margin for spacing */
list-style-type: none;
}

.ul li a {
margin: 10px;
/* Add margin for spacing */
list-style-type: none;
text-decoration: none;
color: #000000;
font-weight: bold;
}

@media (max-width: 768px) {
.ul ul {
  flex-direction: column;
  /* Stack items vertically */
  align-items: center;
  /* Center items horizontally */
}
.ul li {
  width: 100%;
  /* Full width for each item */
  text-align: center;
  /* Center text */
  margin: 5px 0;
  /* Vertical margin for spacing */
}
.ul img {
  width: 30px;
  /* Adjust image size for smaller screens */
}
}
/* Footer Styling */

footer {
background-color: darkorange;
color: white;
width: 100%;
/* or any other appropriate value */
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}

.footer-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
padding: 20px 0;
}

.footer-col {
flex: 1;
padding: 20px;
min-width: 250px;
}

.footer-col h3 {
margin-bottom: 20px;
font-size: 20px;
text-transform: uppercase;
}

.footer-col ul {
list-style-type: none;
}

.footer-col ul li {
margin-bottom: 10px;
}

.footer-col ul li a {
text-decoration: none;
color: white;
font-size: 16px;
transition: color 0.3s ease;
}

.footer-col ul li a:hover {
color: darkorange;
}

.social-links a {
margin-right: 10px;
text-decoration: none;
color: white;
font-size: 20px;
transition: color 0.3s ease;
}

.social-links a:hover {
color: darkorange;
}

.footer-bottom {
background-color: darkorange;
width: 100%;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}

.footer-bottom p {
font-size: 14px;
}
</style>



/* Itinerary Css */

.itenery {
    display: flex;
    background-color: rgb(255, 255, 255);
    width: fit-content;
    height: fit-content;
    justify-content: space-around;
    gap: 10%;
}

.filter {
    background-color: #ffffff;
    width: 15rem;
    height: 100%;
    margin-left: 3%;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Equal gap between sections */
}

.inner2-filter,
.inner3-filter,
.inner4-filter {
    width: 15rem;
    height: 12rem; /* Decreased height */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

.inner-filter {
    width: 15rem;
    height: fit-content;
}

.scroll-container {
    background-color: inherit;
    overflow-y: auto; /* Allow scroll when content overflows */
    flex-grow: 1; /* Ensures scroll container fills available space */
    height: 200px; /* Set a fixed height */
}

/* Custom Scrollbar for WebKit-based browsers */
.scroll-container::-webkit-scrollbar {
    width: 8px; /* Scrollbar width */
}
.scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
}
.scroll-container::-webkit-scrollbar-thumb {
    background: #888; /* Scrollbar thumb color */
    border-radius: 10px;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* General styles */
.filter {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.inner-filter {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.inner h6 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.inner-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-filter ul li {
    margin: 5px 0;
}

.inner-filter ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px;
    display: inline-block;
    transition: color 0.3s, background-color 0.3s;
}

.inner-filter ul li a:hover {
    color: white;
    background-color: orange;
    border-radius: 5px;
}

.ITINERARY {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: fit-content;
    margin-right: 5%;
    width: 80rem;
    background-color: rgb(255, 255, 255);
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.scrollspy-container {
    width: 150px;
    background: rgb(255, 166, 0);
    color: #ffffff;
    padding: 10px;
    margin-right: 20px;
}

.scrollspy-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.scrollspy-container a {
    color: #000000;
    text-decoration: none;
    padding: 5px;
    display: block;
}

.scrollspy-container a.active {
    background: white;
}

.content {
    flex: 1;
}

.section {
    display: none; /* Hide all sections by default */
    padding: 20px;
    height: 100%;
    border: 1px solid #ffffff;
}

.section.active {
    display: block; /* Show the active section */
}

.cardtime-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    padding: 20px;
}

.cardtime-text {
    flex: 1;
    padding-right: 20px;
}

.cardtime-image {
    flex: 1;
    position: relative;
}

.cardtime-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .itenery {
        flex-wrap: wrap; /* Allow wrapping */
        gap: 2rem;
    }
    
    .filter,
    .inner-filter,
    .inner2-filter,
    .inner3-filter,
    .inner4-filter {
        width: 100%; /* Full width for filters */
        margin: 0 auto;
    }
    
    .ITINERARY {
        width: 100%; /* Full width for the itinerary */
    }
    
    .container {
        flex-direction: column; /* Stack vertically */
    }
    
    .scrollspy-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .cardtime-container {
        flex-direction: column; /* Stack text and image */
    }
    
    .cardtime-image {
        display: block; /* Show image */
    }
}

/* Cards */
.packages-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden; /* Ensure overflow is hidden */
    max-width: 100%;
    width: 100%;
}

.packages-card .text-section {
    flex: 1;
    padding: 15px;
    order: 2;
    text-align: center;
    width: 100%;
    display: flex; /* Add flex display */
    flex-direction: column; /* Stack text and buttons */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    color: #333; /* Ensure text color is visible */
}

.packages-card .image-container {
    flex: 0 0 auto;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eaeaea;
    order: 1;
}

.packages-card .image-container img {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .packages-card .text-section {
        padding: 10px;
        font-size: 14px;
        width: 100%; /* Full width for medium screens */
    }

    .packages-card .text-section h2 {
        font-size: 18px;
    }

    .button {
        flex-direction: column;
        align-items: center;
    }

    .button .btn,
    .button .formbutton {
        width: 80%;
        max-width: 250px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .packages-card .text-section {
        padding: 8px;
        font-size: 12px;
        width: 100%; /* Ensure full width */
        align-self: center;
    }

    .packages-card .text-section h2 {
        font-size: 16px;
    }

    .packages-card .image-container {
        height: 200px;
    }

    .packages-card .image-container img {
        height: 200px;
    }

    .button {
        flex-direction: column;
        align-items: center;
    }

    .button .btn,
    .button .formbutton {
        width: 90%; /* Increased width for very small screens */
        max-width: 280px;
        margin-bottom: 10px;
    }
}

@media (max-width: 320px) {
    .button .btn,
    .button .formbutton {
        width: 95%; /* Almost full width for the smallest screens */
        padding: 8px 12px;
        font-size: 14px;
    }
}



/*Filter sticky*/


.filter {
    position: sticky;
    top: 5rem;
}

@media(max-width:600px) {
    .filter {
        position: relative;

    }
}


/*Scrollspy Containner*/

<style>
.scrollspy-container {
    width: fit-content;
    height: fit-content;
}

.ul-scrollspy {
    display: flex;
}
</style>




/*Accordion Css */

.accordion {
    width: 100%;
    max-width: 90%;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 10px;
    background-color: #f1f1f1;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #e0e0e0;
}

.accordion-content {
    display: none;
    padding: 10px;
    background-color: #fff;
}

.photo-gallery {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
}

.photo-item {
    flex: 0 0 calc(12.5% - 10px);
    /* Adjust to fit 8 items per row */
    margin: 5px;
    text-align: center;
}

.photo-item a {
    text-decoration: none;
    color: inherit;
}

.photo-item img {
    width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 8px;
}

.photo-caption {
    margin-top: 8px;
    font-size: 12px;
    /* Reduce caption size for better fit */
    color: #555;
}
/* Responsive styles */

@media (max-width: 768px) {
    .accordion-header {
        font-size: 18px;
    }
    .photo-item {
        flex: 0 0 calc(25% - 10px);
        /* 4 items per row for smaller screens */
    }
}

@media (max-width: 480px) {
    .accordion-header {
        font-size: 16px;
    }
    .photo-item {
        flex: 0 0 calc(50% - 10px);
        /* 2 items per row for smallest screens */
    }
}



