.body {
    background-color: #faf5f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
  background: white !important;
  box-shadow:  20px 8px rgba(0,0,0,0.04);
  padding: 10px 0px;
}
.navbar-brand img {
  max-height: 60px;
}
.navbar-brand {
  margin-right: auto; /* pushes nav links to the right */
  margin-left: 30px;     /* stick to left corner */
}

.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: #ff4b5c !important;
}


/* Hero Banner */
.hero-banner {
    background:url('./src/img/bg3.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 200px 20px;
    opacity: calc(1.2);
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    font-family: ' Poppins', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner p {
    font-size: 30px;
    max-width: 700px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    color: #c150a3;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 30px;
    color: #874672;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(193, 80, 163, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 1rem;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(193, 80, 163, 0.2);
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit:fill;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c150a3;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Navbar */
.navbar {
  background: white !important;
  box-shadow: 20px 8px rgba(0,0,0,0.08);
  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;
}

/* For smaller screens */
@media (max-width: 992px) {
  .navbar-nav {
    margin-top: 1rem;
    text-align: center;
  }
  .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

.view-more-btn {
    background-color: #c150a3;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
}

.view-more-btn:hover {
    background-color: #a43c8c;
}

/* View More functionality with CSS only */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    text-align: left;
}

.service-details-content {
    padding: 1.5rem 0 0;
    border-top: 1px solid #eee;
}

.expand-checkbox {
    display: none;
}

.expand-btn {
    display: inline-block;
    margin-top: 1rem;
}

.expand-checkbox:checked ~ .service-details {
    max-height: 500px;
}

.expand-checkbox:checked ~ .expand-btn .view-more-text {
    display: none;
}

.expand-checkbox:checked ~ .expand-btn .view-less-text {
    display: inline;
}

.view-less-text {
    display: none;
}

.service-details h4 {
    color: #c150a3;
    margin-bottom: 1rem;
}

.service-details ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-details li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-link {
    display: inline-block;
    color: #c150a3;
    text-decoration: none;
    font-weight: 500;
}

.service-link:hover {
    text-decoration: underline;
}

/* Banner Section */
.banner {
    /*background: linear-gradient(to right, #8000a5, #874672);*/
    color: #7c3a6e;
    text-align: center;
    padding: 2.5rem 0;
}

.banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background-color: #c150a3;
    color: #f7f7f7;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*Footer layout */
.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;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;

    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .hero-banner p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Service Details Hidden by Default */
.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  text-align: left;
}

.service-details-content {
  padding: 1.5rem 0 0;
  border-top: 1px solid #eee;
}

.expand-checkbox {
  display: none; /* hide checkbox */
}

/* Expand only the clicked card */
.expand-checkbox:checked ~ .service-details {
  max-height: 500px; /* expand smoothly */
}

.expand-checkbox:checked ~ .expand-btn .view-more-text {
  display: none;
}

.expand-checkbox:checked ~ .expand-btn .view-less-text {
  display: inline;
}

.view-less-text {
  display: none;
}

.expand-btn {
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
}
.copy{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 15px;
    padding: 5px;
    padding-top: 15px;
}