@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'LT Wave Regular';
    font-style: normal;
    src: url('/font/LTWave-Regular.woff') format('woff'),
         url('/font/LTWave-Regular.otf') format('opentype');

}

:root {
    --primary-color: #0d6efd;
    --secondary-color: rgb(244,128,32);
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #555;
    --white-color: #fff;
    --border-radius: 12px;
    --box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    --light-blue: rgb(44,156,220);
    --dark-blue: rgb(56,90,167);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'outfit', sans-serif;
    scroll-behavior: smooth;
}

/* --- Global Styles --- */
.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}


/***LOGO TEXT****/
.brand-text{
  display: flex;
  align-items: flex-end;
  gap: 8px;
  line-height: 1;
}

/* Ecstasy - orange, heavier weight */
.brand-ecstasy{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-block;
  transform: translateY(1px);
  font-family: 'LT Wave Regular';
}

/* Holidays - blue gradient text with slightly lighter weight */
.brand-holidays{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 600;
  background: linear-gradient(90deg, var(--light-blue) 0%, var(--dark-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-family: 'LT Wave Regular';
}

a{
    text-decoration: none;
}

.section-cta {
  text-align: center;
  margin-top: 60px;
}




.page-section { padding: 30px 0; }

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
    font-size: 30px;
}

.section-subtitle strong {
    color: var(--dark-blue);
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background-color: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

/* --- Animations --- */
.animate-on-load { animation: fadeIn 1s ease-in-out; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- Header --- */
header {
    position: fixed;
    top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    padding: 10px 30px;
}
.header-container {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%;
    margin: 0 auto;
}
.logo {display: flex; flex-direction: column; align-items: center;}
.logo .brand-text{gap: 5px; font-size: 22px;}
.logo img { height: 45px; }
.navbar a { text-decoration: none; color: #000; margin: 0 15px; position: relative; padding: 5px 0; }
.navbar a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background-color: var(--secondary-color); border-radius: 2px; transition: width 0.3s ease; }
.navbar a:hover { color: var(--primary-color); }
.navbar a.active { color: var(--primary-color); }
.nav-link.dropbtn i{transition: all 0.3s;}
.navbar .nav-link.dropbtn:hover i{rotate: 180deg;}
.dropdown { position: relative; display: inline-block;}
.dropdown-content { display: none; position: absolute; top: 25px; background-color: #cacaca; box-shadow: var(--box-shadow); border-radius: var(--border-radius); z-index: 1; overflow: hidden; animation: fadeIn 0.3s ease; width: 180px;}
.dropdown-content a { color: #000; display: block; margin: 0; font-weight: 400; padding: 12px 15px; border-bottom: 1px solid #55555556; font-size: 14px;}
.dropdown-content a:hover { color: var(--primary-color); }
.dropdown:hover .dropdown-content { display: block; }
.hamburger-menu { display: none; font-size: 1.8rem; cursor: pointer; }

/* --- Hero Sections (Home & Pages) --- */
.home-section { height: 100vh; display: flex; align-items: center; text-align: center; color: var(--white-color); }
.hero-content { margin: 0 auto; padding: 20px; }
.hero-content h1 { font-size: 4.5rem; font-family: 'LT Wave Regular';}
.hero-content p { font-size: 1.5rem; margin: 20px 0; }
.hero-content .promo { font-size: 1.2rem; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); padding: 10px 20px; border-radius: 50px; display: inline-block; }

.page-hero { padding: 150px 20px 100px; text-align: center; color: var(--white-color); background-size: cover; background-position: center; }
.page-hero h1 { font-size: 2.5rem; }

.home-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.home-slider .hero-content {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 20px;
}

.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4); /* semi-transparent background */
  border: none;
  color: #fff;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.slick-dotted.slick-slider{
    margin: 0 !important;
}

.home-slider .hero-content.slider1{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/Slider/slider1.webp') no-repeat center center/cover;
}
.home-slider .hero-content.slider2{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/Slider/slider2.webp') no-repeat center center/cover;
}
.home-slider .hero-content.slider3{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/Slider/slider3.webp') no-repeat center center/cover;
}
.home-slider .hero-content.slider4{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/Slider/slider4.webp') no-repeat center center/cover;
}
.home-slider .hero-content.slider5{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/Slider/slider5.webp') no-repeat center center/cover;
}

/* Make Slick arrows larger & transparent *

/* Positioning */
.slick-prev {
  left: 25px !important;
}

.slick-next {
  right: 60px !important;
}

/* Remove default text */
.slick-prev:before, .slick-next:before {
  content: "";
}

.slick-prev:hover, .slick-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slick-next:before{
    font-size: 40px !important;
    color: #ffa20096 !important;
}

.slick-prev:before{
    font-size: 40px !important;
    color: #ffa20096 !important;
}

.slick-dots {
  bottom: 40px !important;
}

.slick-dots li.slick-active button:before {
  color: #fff; /* active dot orange */
  opacity: 1;
}

.slick-dots li button:before  {
    color: #fff !important;
    font-size: 12px !important;
}

/* Hide dots on desktop */
@media (min-width: 769px) {
  .slick-dots {
    display: none !important;
  }
}

/* Show dots on mobile */
@media (max-width: 768px) {
  .slick-dots {
    display: block !important;
  }
}

.about-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-snapshot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.about-snapshot-content .section-title {
  font-size: 2.2rem;
}
.about-snapshot-content p {
  line-height: 1.8;
  margin-bottom: 25px;
}

/* --- About Us Snapshot Section --- */
.about-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-snapshot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.about-snapshot-content .section-title {
  font-size: 2.2rem;
}
.about-snapshot-content p {
  line-height: 1.8;
  margin-bottom: 25px;
}

/* --- START: Responsive Adjustments --- */

/* For Tablets and smaller screens (992px and below) */
@media (max-width: 992px) {
  .about-snapshot-grid {
    /* Switch to a single column layout */
    grid-template-columns: 1fr;
    gap: 40px; /* This will now be the vertical space between image and text */
  }

  .about-snapshot-content {
    /* Center the text when the layout is stacked */
    text-align: center;
  }
}

/* For Mobile phones (768px and below) */
@media (max-width: 768px) {
  .about-snapshot-content .section-title {
    font-size: 1.8rem; /* Make the title smaller for mobile */
  }

  .about-snapshot-content p {
    font-size: 1rem; /* Adjust paragraph font size for readability */
  }
}
/* --- END: Responsive Adjustments --- */

/* --- Homepage Featured Services Styling --- */
.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.featured-service-card {
  text-align: center;
  padding: 30px;
  background-color: transparent;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-service-card:hover {
  background-color: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.featured-service-card .service-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fcf4ea;
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.featured-service-card:hover .service-icon {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.featured-service-card .service-title {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.featured-service-card .service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* --- START: Responsive Adjustments --- */
@media (max-width: 768px) {
  .featured-services-grid {
    /* Reduce the space between cards on mobile */
    gap: 20px;
  }

  .featured-service-card {
    /* Reduce the padding inside the card */
    padding: 25px 20px;
  }

  .featured-service-card .service-icon {
    /* Make the icon slightly smaller */
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .featured-service-card .service-title {
    /* Make the title slightly smaller */
    font-size: 1.2rem;
  }
}
/* --- END: Responsive Adjustments --- */

/* --- About Page --- */
.about-intro { margin: 0 auto 50px auto; }
.about-intro h2 { font-size: 2.5rem; margin-bottom: 20px; text-align: center; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;}
.about-intro p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom:  50px; }
.feature-card { background: var(--white-color); padding: 30px; text-align: center; border-radius: var(--border-radius); box-shadow: var(--box-shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.feature-card i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.5rem; color: var(--dark-color); margin-bottom: 10px; }
.feature-card p { color: var(--text-color); line-height: 1.7; }
.about-bottom p {text-align: center; font-size: 18px;}

/* --- Packages Page --- */
.package-category-title { font-size: 2.2rem; color: var(--dark-color); margin-top: 50px; margin-bottom: 30px; text-align: center; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.package-card.coming-soon{
    padding: 50px;
}

  .package-card:hover{
    transform: translateY(-10px);
    transition: all 0.3s;
   }
        
        
.package-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Location text overlay */
.location-text {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 2;
}

.terms-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #4a90e2; /* Or your brand's primary color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.terms-link:hover {
  color: #3367a1; /* A slightly darker shade for hover */
  text-decoration: underline;
}

/* Styles the PDF icon next to the text */
.terms-link .fas {
  margin-right: 5px;
}

        
.package-info {
    padding: 15px;
    flex-grow: 1;
}

.package-card .action {
    padding: 15px;
    background-color: #fff;
}

.package-card .action button {
    padding: 8px 20px;
    border: 0;
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    cursor: pointer;
    width: 100%;
    font-weight: 600;
}
        
        .package-title {
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 8px;
            color: #494949;
            line-height: 1.3;
        }
        
        .package-details {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }
        
        .date-price {
            margin-top: 8px;
            font-size: 14px;
            color: #333;
        }
        
        .special-card {
            grid-column: span 1;
            background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 100%);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 250px;
        }
        
        .special-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .special-subtitle {
            font-size: 48px;
            font-weight: bold;
        }

/* --- Contact Page --- */
#contact { background-color: var(--light-color); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-info { background: linear-gradient(135deg, var(--secondary-color), var(--light-blue)); color: var(--white-color); padding: 40px; border-radius: var(--border-radius); }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; }
.contact-info p { display: flex; align-items: flex-start; margin-bottom: 25px; line-height: 1.6; }
.contact-info p i { font-size: 1.4rem; margin-right: 15px; margin-top: 5px; width: 25px; }
.contact-info a { color: var(--white-color); text-decoration: none; transition: opacity 0.3s; }
.contact-info a:hover { opacity: 0.8; }
.social-icons { margin-top: 30px; }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: rgba(255,255,255,0.2); border-radius: 50%; text-decoration: none; color: var(--white-color); margin-right: 10px; transition: all 0.3s ease; }
.social-icons a:hover { background-color: var(--white-color); color: var(--primary-color); transform: scale(1.1); }
.contact-form-container { background: var(--white-color); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.contact-form-container h3 { text-align: center; margin-bottom: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25); }
.contact-form button { width: 100%; }


/*********Service Page*********/

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.section-intro .section-subtitle {
  font-size: 1rem;
  color: #4a90e2; /* Or your brand color */
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-intro .section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.section-intro .section-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Grid container for the service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Individual service card styling */
.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the cards */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.service-card .service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Title styling */
.service-card .service-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Description styling */
.service-card .service-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* --- Footer --- */
/* /style.css */

/* --- Professional Footer Styling --- */

.site-footer {
  background-color: #1a2a45;
  color: #a9b3c9;
  padding: 30px 0 0 0;
  font-size: 0.95rem;
  line-height: 1.6; /* Improved line spacing for readability */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 20px;
}

.footer-col-title {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-about {
  line-height: 1.7;
  margin-bottom: 25px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  margin-right: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background-color: #ff9d005d;
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.links-col a {
  color: #a9b3c9;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.links-col a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.contact-col ul li {
  display: flex;
  align-items: center;
  min-height: 30px;
}
.contact-col ul li:first-child span{
  text-align: left;
}
.contact-col h3{
  text-align: left;
}
.contact-col .fas {
  margin-right: 15px;
  font-size: 1rem;
  width: 20px;
  text-align: center;
  color: var(--secondary-color);
}
.contact-col a, .contact-col span {
  color: #a9b3c9;
  text-decoration: none;
}
.contact-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a9b3c9;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .navbar {
        position: absolute;
        display: flex;
        top: -500px; 
        left: 0; 
        width: 100%;
        background-color: var(--white-color);
        flex-direction: column;
        box-shadow: var(--box-shadow);
        transition: top 0.4s ease; 
        border-radius: 0 0 30px 30px;
        overflow: hidden;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    }

    .navbar.active {
        /* Move the menu down into view, right below the header */
        top: 100%; 
    }
    
    /* The rest of your styles can remain the same */
    .navbar a { margin: 5px 0; font-size: 16px; border-bottom: 1px solid #55555556; padding: 10px 20px; }
    .navbar .last-nav{border-bottom: 0 !important;}
    .dropdown { display: block; }
    .dropdown > a { display: none; }
    .dropdown-content { position: static; display: block; width: 100%; background: none; box-shadow: none; }
    .dropdown-content a { padding: 10px 20px; margin-bottom: 15px; }
    .dropdown.active .dropdown-content { display: block; }
    .hamburger-menu { display: block; }
    .hero-content h1 { font-size: 3.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .page-hero { padding: 100px 20px 40px; text-align: center; color: var(--white-color); background-size: cover; background-position: center; }
    .page-hero h1 { font-size: 2rem; line-height: 35px; }

}

/*******Skeleton loader*******/

.skeleton-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.skeleton {
  animation: shimmer 1.5s infinite linear;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  color: transparent;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-image {
  height: 200px;
  width: 100%;
}

.skeleton-info {
  padding: 15px;
}

.skeleton-title {
  height: 24px;
  width: 70%;
  margin-bottom: 10px;
  border-radius: 4px;
}

.skeleton-text {
  height: 16px;
  width: 90%;
  margin-bottom: 6px;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 50%;
}

@media (max-width: 768px) {
    .package-grid { grid-template-columns: 1fr; }
    .about-intro h2 {font-size: 30px;}
    .section-title {font-size: 30px;}
    .section-intro .section-title {font-size: 30px;}
    .section-subtitle {font-size: 20px; margin-bottom: 30px; line-height: 1.3;}
    .page-section {padding: 30px 0;}
    .page-hero h1 { font-size: 1.5rem; line-height: 35px; }
    .about-intro p{line-height: 1.4;}
    .feature-card p {line-height: 1.4;}
    .hero-content h1{font-size: 35px;}
    .hero-content p{font-size: 18px;}
    .hero-content .promo{font-size: 16px;}
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .contact-info, .contact-form-container { padding: 25px; }
    .logo .brand-text{font-size: 16px;}
    .logo img{height: 25px;}
    .hero-content h1{font-size: 30px;}
    .hero-content p {font-size: 16px;}
    .hero-content .promo {font-size: 14px; padding: 10px;}
    .hero-content .btn {padding: 10px 20px;}
    .about-intro h2{font-size: 22px; line-height: 1;}
}








/*****TESTIMONIAL SECTION (UPDATED)*****/

.testimonial-slider .slick-slide {
    padding: 20px 15px;
}

.testimonial-card {
    background-color: #ffffff;
    /* Increased top padding to make space for the new icon */
    padding: 20px 30px; 
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #e0e0e0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform: scale(0.9);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 992px) {
    .testimonial-card {
        opacity: 1;
        transform: scale(1);
    }
}

.client-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    font-size: 16;
    color: #575757;
    line-height: 1.7;
    margin: 0 0 15px 0;
    position: relative;
    font-family: "Poppins";
    font-style: italic;
    z-index: 1;
}

/* --- NEW STYLES FOR THE QUOTATION MARK --- */
.testimonial-quote::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -55px;
    left: 0;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.60;
    z-index: -1;
}
/* --- END OF NEW STYLES --- */

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
}

.testimonial-slider .slick-center .testimonial-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* --- Professional Slick Arrow & Dot Styling --- */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f053'; /* Left arrow */
    color: var(--dark-blue);
    font-size: 16px;
}

.testimonial-slider .slick-next:before {
    content: '\f054'; /* Right arrow */
}

.testimonial-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--dark-blue);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary-color);
}













/* /style.css */

/* --- General Enhancements --- */
.alternate-bg {
  background-color: #f9fafb; /* A very light grey for section contrast */
}
.btn-secondary {
  background-color: transparent;
  color: #333;
  border: 2px solid #ddd;
}
.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
