body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;


}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}

.gallery img {
height: 300px;
width: 300px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: transform 0.3s, box-shadow 0.3s;
cursor: pointer;
}

.gallery img:hover {
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}




/* Navbar */
.navbar {
background: white !important;
box-shadow: 20px 8px rgba(0,0,0,0.04);
padding: 10px 0px;
}
.navbar-brand img {
max-height: 60px;
}
.navbar-nav .nav-link {
color: #7c3a6e !important;
font-size: 1.2rem;
font-weight: 500;
margin-right: 18px;
transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
color: #7c3a6e !important;
}
/* Navbar Hamburger */
.navbar-toggler {
border: none;
font-size: 1.6rem;
background: linear-gradient(135deg, #7b2cbf, #ff66b2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 992px) { /* Tablet */
.navbar-brand img {
max-height: 50px;
}
.navbar-nav .nav-link {
font-size: 1rem;
margin-right: 12px;
}
}

@media (max-width: 768px) { /* Mobile */
.navbar-nav {
text-align: center;
}
.navbar-nav .nav-link {
display: block;
margin: 10px 0;
}
}


.welcome-section {
padding: 60px 0;
font-family: poppins, sans-serif;
}

/* Banner */
.about-banner {
width: 100%;
height: 70vh; /* or 100vh for full screen */
background: url('./src/img/ourworks.jpg') no-repeat center center;
background-size: cover; /* fills entire width */
position: relative;
display: flex;
align-items: center;
justify-content: center;
color: white;
}





.about-banner::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6); /* Dark overlay */
z-index: 1;
}

.about-banner .container {
position: relative;
z-index: 2;
height: 70vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: white;
padding: 0 20px;
}





/* Responsive Styles */
@media (max-width: 992px) { /* Tablet */
.about-banner {
height: 70vh;
}
.about-banner h1 {
font-size: 2rem;
}
}

@media (max-width: 768px) { /* Mobile */
.about-banner {
height: 60vh;
padding: 0 10px;
}
.about-banner h1 {
font-size: 1.6rem;
line-height: 1.3;
}
}

@media (max-width: 576px) { /* Small devices */
.about-banner {
height: 50vh;
}
.about-banner h1 {
font-size: 1.3rem;
}
}



/* General Section Styling */
.welcome-section {
padding: 60px 0;
}

.welcome-text h2 {
font-size: 2rem;
font-weight: 600;
color: #333;
}

.welcome-text p {
font-size: 1rem;
line-height: 1.7;
color: #555;
}

/* Images */
.welcome-images img {
max-width: 100%;
height: auto;
border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) { /* Tablet */
.welcome-section {
padding: 40px 0;
}
.welcome-text h2 {
font-size: 1.8rem;
}
.welcome-text p {
font-size: 0.95rem;
}
}

@media (max-width: 768px) { /* Mobile */
.welcome-section {
text-align: center; /* Center text on mobile */
padding: 30px 15px;
}
.welcome-text {
margin-top: 20px; /* Space between image & text */
}
.welcome-text h2 {
font-size: 1.6rem;
}
.welcome-text p {
font-size: 0.9rem;
}
.welcome-text ul {
text-align: left; /* Keep lists aligned */
display: inline-block;
margin: 0 auto;
}
}

@media (max-width: 576px) { /* Small phones */
.welcome-section {
padding: 20px 10px;
}
.welcome-text h2 {
font-size: 1.4rem;
}
.welcome-text p,
.welcome-text ul li {
font-size: 0.85rem;
}
}








.yellow-footer {
background-color: #9b4d81;
background: linear-gradient(135deg, #7b2cbf #ff66b2);
padding: 40px 5%;
font-family: 'Poppins', sans-serif;
color: white;
}

.footer-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px;
}

/* Left Section */
.footer-left {
flex: 1;
min-width: 250px;
}

.footer-left h3 {
font-weight: bold;
margin-bottom: 10px;
}

.footer-left p {
margin: 6px 0;
line-height: 1.5;
}

.travel-message {
margin-top: 20px;
font-weight: bold;
}

/* Right Section */
.footer-right {
display: flex;
gap: 60px;
min-width: 300px;
justify-content: flex-end;
}

.footer-links {
display: flex;
gap: 60px;
}

.footer-links div {
display: flex;
flex-direction: column;
gap: 10px;
}

.footer-links a {
text-decoration: none;
font-weight: bold;
color: white;
}

.footer-links a:hover {
text-decoration: underline;
}

/* Social Icons */
.social-icons {
display: flex;
flex-direction: column;
gap: 20px;
align-items: center;
}

.social-icons svg {
width: 35px;
height: 35px;
transition: transform 0.3s ease;
}

.social-icons svg:hover {
transform: scale(1.2);
}

/* Bottom Text */
.footer-description {
margin-top: 20px;
font-size: 0.9rem;
line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
text-align: center;
}
.footer-right {
justify-content: center;
flex-direction: column;
align-items: center;
gap: 30px;
}
}



.copy{
font-family: 'Poppins', sans-serif;
text-align: center;
font-size: 15px;
padding: 5px;
padding-top:15px;
}
