/* Services page specific styles
 *
 * Paste your /services/styles.css contents here.
 */
 .develop {
   width: 100%;
   height: 100%;
 }
 
 .develop h2,
 h3 {
   font-weight: 600;
 }
 
 .develop a {
   font-weight: 500;
 }
 
 /* ---------------------Hero Section------------------------ */
 /* Hero Section */
 .services-hero {
   width: 100%;
   height: 700px;
   max-height: 100svh;
 
   display: flex;
   flex-direction: column;
   position: relative;
   overflow: hidden;
 
   padding: 0 !important;
   margin: 0 !important;
   background-color: #f5f5f5;
 }
 
 .services-hero .hero-content {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 3;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .services-hero .hero-text {
   text-align: center;
   color: var(--white-color);
   width: 100%;
   padding: 2rem;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 
 .services-hero .hero-text h1 {
   font-size: 4rem;
   font-weight: 700;
   margin-bottom: 1rem;
   text-transform: uppercase;
   line-height: 1.1;
 }
 
 .services-hero .hero-text h1 .highlight {
   color: var(--secondary-color);
 }
 
 .services-hero .hero-text p {
   font-size: 1.5rem;
   font-weight: 400;
   margin-bottom: 2rem;
   opacity: 0.9;
 }
 
 .services-hero .hero-text .separator {
   margin: 0 auto;
   background-color: var(--secondary-color);
   height: 3px;
   width: 100px;
 }
 
 .services-hero .hero-image {
   width: 100%;
   height: 100%;
   position: relative;
   z-index: 1;
 }
 
 .services-hero .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .services-hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: black;
   opacity: 0.25;
   z-index: 2;
 }
 
 /* Services Content Section */
 .services-content {
   padding: 4rem 0;
   background-color: var(--white-color);
 }
 
 .services-layout {
   display: grid;
   grid-template-columns: 300px 1fr;
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
 }
 
 /* Left Navigation */
 .services-nav {
   background-color: var(--white-color);
   position: sticky;
   top: 120px; /* Account for header height */
   height: fit-content;
   z-index: 100;
   border-radius: 8px;
   padding: 1rem 0;
 }
 
 .services-menu {
   list-style: none;
   padding: 0;
   margin: 0;
 }
 
 .service-item {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1.5rem 0;
   cursor: pointer;
   border-bottom: 1px solid #f0f0f0;
   transition: all 0.3s ease;
   position: relative;
 }
 
 .service-item:hover {
   background-color: #f8f9fa;
   padding-left: 1rem;
 }
 
 .service-item.active {
   background-color: #f8f9fa;
   padding-left: 1rem;
 }
 
 .service-item.active .service-text {
   color: var(--primary-color);
   font-weight: 600;
 }
 
 .service-item.active .service-dot {
   background-color: var(--secondary-color);
   transform: scale(1.2);
 }
 
 .service-text {
   font-size: 1rem;
   color: var(--text-color);
   transition: all 0.3s ease;
   flex: 1;
 }
 
 .service-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background-color: #ddd;
   transition: all 0.3s ease;
   margin-left: 1rem;
   margin-right: 1rem;
 }
 
 /* Right Content Area */
 .services-main {
   background-color: var(--white-color);
   padding: 1rem 2rem 2rem 2rem;
 }
 
 .service-content {
   display: none;
   animation: fadeIn 0.5s ease-in-out;
 }
 
 .service-content.active {
   display: block;
 }
 
 @keyframes fadeIn {
   from {
     opacity: 0;
     transform: translateY(20px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 
 .service-content h2 {
   font-size: 2.5rem;
   font-weight: 700;
   color: var(--primary-color);
   margin-bottom: 1rem;
   line-height: 1.2;
 }
 
 .service-underline {
   width: 100px;
   height: 4px;
   background-color: var(--secondary-color);
   margin-bottom: 2rem;
 }
 
 .service-description {
   margin-bottom: 2rem;
 }
 
 .service-description p {
   font-size: 1.1rem;
   line-height: 1.7;
   color: var(--text-color);
   margin-bottom: 1.5rem;
 }
 
 .service-image {
   width: 100%;
   max-width: 100%;
   margin-left: auto;
   overflow: hidden;
 
   display: flex;
   justify-content: center;
   align-items: center;
 }
 
 .service-image img {
   width: 100%;
   height: auto;
   border-radius: 2px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
   aspect-ratio: 16/9;
 }
 
 .service-image img:hover {
   transform: scale(1.02);
 }
 
 /* ---------------------Services Hero Section Responsive------------------------ */
 @media (max-width: 1200px) {
   .services-hero {
     height: 600px;
   }
 
   .services-hero .hero-text h1 {
     font-size: 3.5rem;
   }
 
   .services-hero .hero-text p {
     font-size: 1.3rem;
   }
 }
 
 @media (max-width: 768px) {
   .services-hero {
     height: 500px;
   }
 
   .services-hero .hero-text h1 {
     font-size: 2.5rem;
   }
 
   .services-hero .hero-text p {
     font-size: 1.2rem;
   }
 
   .services-hero .hero-text .separator {
     width: 80px;
     height: 2px;
   }
 }
 
 @media (max-width: 480px) {
   .services-hero {
     height: 400px;
   }
 
   .services-hero .hero-text {
     padding: 1rem;
   }
 
   .services-hero .hero-text h1 {
     font-size: 2rem;
   }
 
   .services-hero .hero-text p {
     font-size: 1rem;
   }
 
   .services-hero .hero-text .separator {
     width: 60px;
     height: 2px;
   }
 }
 
 /* Services Content Responsive */
 @media (max-width: 1024px) {
   .services-layout {
     grid-template-columns: 250px 1fr;
     gap: 3rem;
   }
 
   .service-content h2 {
     font-size: 2.2rem;
   }
 }
 
 @media (max-width: 768px) {
   .service-content {
     padding: 0rem 0 2rem 0;
     display: flex !important;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
   }
 
   .services-layout {
     grid-template-columns: 1fr;
     gap: 2rem;
   }
 
   .services-nav {
     order: 2;
     position: static; /* Remove sticky on mobile */
     top: auto;
 
     display: none !important;
   }
 
   .services-main {
     order: 1;
     padding: 1rem;
   }
 
   .service-item {
     padding: 1rem 0;
     border-bottom: 1px solid #e0e0e0;
   }
 
   .service-item:hover,
   .service-item.active {
     padding-left: 0.5rem;
   }
 
   .service-content h2 {
     font-size: 2rem;
   }
 
   .service-description {
     margin-bottom: 0.5rem;
   }
 
   .service-description p {
     font-size: 1rem;
     margin-bottom: 0.5rem;
   }
 
   .service-image {
     max-width: 100%;
     margin-left: 0;
   }
 }
 
 @media (max-width: 480px) {
   .services-content {
     padding: 1rem 0;
 
     display: flex !important;
   }
 
   .services-main {
     padding: 0.5rem;
   }
 
   .service-content h2 {
     font-size: 1.8rem;
   }
 
   .service-underline {
     width: 70vw;
     height: 3px;
     margin-bottom: 1rem;
   }
 
   .service-text {
     font-size: 0.9rem;
   }
 }
 
 /* Brochures and Contact Section */
 .brochures-contact-section {
   padding: 2rem 0 4rem 0;
   background-color: var(--white-color);
   width: 100%;
   max-width: 100%;
   min-width: 100%;
   box-sizing: border-box;
 }
 
 .brochures-contact-layout {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: flex-start;
   gap: 4rem;
   max-width: 1200px;
   margin: 0 auto;
 }
 
 /* Left Column - Brochures and Contact */
 .brochures-contact-left {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   width: 300px;
 }
 
 .brochures-section/* Our Brochures Section */
  h3 {
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--text-color);
   margin-bottom: 0.5rem;
 }
 
 .brochures-underline {
   width: 60px;
   height: 3px;
   background-color: var(--secondary-color);
   margin-bottom: 1.5rem;
 }
 
 .brochure-buttons {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .brochure-btn {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   padding: 1rem 1.5rem;
   background-color: #f8f9fa;
   border: 1px solid #e9ecef;
   border-radius: 4px;
   text-decoration: none;
   color: var(--text-color);
   font-weight: 500;
   transition: all 0.3s ease;
 }
 
 .brochure-btn:hover {
   background-color: #e9ecef;
   transform: translateY(-2px);
 }
 
 .brochure-btn i {
   font-size: 1.2rem;
   color: var(--secondary-color);
 }
 
 /* 24/7 Quick Contact Section */
 .quick-contact-section {
   background-color: #f8f9fa;
   border-radius: 4px;
   overflow: hidden;
 }
 
 .quick-contact-header {
   background-color: var(--secondary-color);
   padding: 1rem;
   text-align: center;
 }
 
 .quick-contact-header h4 {
   color: var(--white-color);
   font-size: 1.1rem;
   font-weight: 600;
   margin: 0;
 }
 
 .contact-details {
   padding: 1.5rem;
 }
 
 .contact-details p {
   margin: 0 0 0.75rem 0;
   color: var(--text-color);
   font-size: 0.95rem;
   line-height: 1.5;
 }
 
 .contact-details a {
   color: var(--secondary-color);
   text-decoration: none;
   font-weight: 500;
   transition: all 0.3s ease;
 }
 
 .contact-details p:last-child {
   margin-bottom: 0;
 }
 
 .contact-details strong {
   color: var(--primary-color);
   font-weight: 600;
 }
 
 /* Right Column - Services We Offer */
 .services-offering-right {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
 
   height: 100%;
   width: calc(100% - 350px);
   max-width: 100%;
   box-sizing: border-box;
   padding: 0 2rem;
 }
 
 .services-offering-right h3 {
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--text-color);
   margin-bottom: 0.5rem;
 }
 
 .services-underline {
   width: 50vw;
   max-width: 100px;
   height: 3px;
   background-color: var(--secondary-color);
   margin-bottom: 1.5rem;
 }
 
 .services-description {
   color: #666;
   font-size: 1rem;
   line-height: 1.6;
   margin-bottom: 1rem;
   min-height: 100px;
 }
 
 /* Service Cards */
 /* Amenities Carousel */
 .amenities-carousel-container {
   margin-top: 0rem;
   position: relative;
   padding: 0;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 
 .amenities-swiper {
   padding: 20px 0 60px 0;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   box-sizing: border-box;
 }
 
 .amenities-swiper .swiper-wrapper {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: stretch;
   padding-top: 1rem;
   padding-bottom: 0.5rem;
 }
 
 .amenities-swiper .swiper-slide {
   height: auto;
   display: flex;
   align-items: stretch;
   margin: 0;
 }
 
 .amenity-item {
   text-align: center;
   padding: 0.5rem 1.5rem;
   background-color: var(--white-color);
   border-radius: 12px;
   box-sizing: border-box;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   width: 100% !important;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   border: 1px solid #e0e0e0;
 }
 
 .amenity-item:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   border-color: var(--secondary-color);
 }
 
 .amenity-icon {
   width: 60px;
   height: 60px;
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: #f8f9fa;
   border-radius: 50%;
   padding: 12px;
   transition: all 0.3s ease;
   background-color: var(--secondary-color);
 }
 
 .amenity-item:hover .amenity-icon {
   background-color: var(--secondary-color);
   transform: scale(1.1);
 }
 
 .amenity-icon img {
   width: 36px;
   height: 36px;
   object-fit: contain;
   filter: grayscale(100%);
   transition: all 0.3s ease;
 }
 
 .amenity-item:hover .amenity-icon img {
   filter: grayscale(0%) brightness(0) invert(1);
 }
 
 .amenity-item h4 {
   font-size: 1.1rem;
   font-weight: 600;
   color: var(--text-color);
   margin: 0 0 0.5rem 0;
   text-align: center;
 }
 
 .amenity-item p {
   font-size: 0.9rem;
   color: var(--gray-color);
   line-height: 1.4;
   margin: 0;
   text-align: center;
 }
 
 /* Swiper Navigation */
 .amenities-swiper-buttons {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   width: 100%;
   position: relative;
   gap: 2rem;
   margin-top: 4rem;
 }
 
 .amenities-carousel-container .swiper-button-next,
 .amenities-carousel-container .swiper-button-prev {
   color: var(--secondary-color);
   background: var(--white-color);
   width: 50px;
   height: 50px;
   border-radius: 50%;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   transition: all 0.3s ease;
   position: relative !important;
 
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
 }
 
 .amenities-carousel-container .swiper-button-next {
   position: relative !important;
 }
 
 .amenities-carousel-container .swiper-button-prev {
   position: relative !important;
 }
 
 .amenities-carousel-container .swiper-button-next:hover,
 .amenities-carousel-container .swiper-button-prev:hover {
   background: var(--secondary-color);
   color: var(--white-color);
   transform: scale(1);
 }
 
 .amenities-carousel-container .swiper-button-next:after,
 .amenities-carousel-container .swiper-button-prev:after {
   font-size: 18px;
   font-weight: bold;
 }
 
 /* Swiper Pagination */
 .amenities-carousel-container .swiper-pagination {
   bottom: 20px;
 }
 
 .amenities-carousel-container .swiper-pagination-bullet {
   background: #ccc;
   opacity: 0.7;
   width: 12px;
   height: 12px;
   margin: 0 6px;
   transition: all 0.3s ease;
 }
 
 .amenities-carousel-container .swiper-pagination-bullet-active {
   background: var(--secondary-color);
   opacity: 1;
   transform: scale(1.2);
 }
 
 /* Responsive Design for Brochures and Contact */
 @media (max-width: 1024px) {
   .brochures-contact-layout {
     grid-template-columns: 300px 1fr;
     gap: 3rem;
   }
 
   .amenities-carousel-container {
     padding: 0 30px;
     box-sizing: border-box;
   }
 }
 
 @media (max-width: 768px) {
   .brochures-contact-section {
     padding: 2rem 0;
   }
 
   .brochures-section {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
   }
 
   .brochures-underline {
     width: 40vw;
     height: 3px;
     background-color: var(--secondary-color);
     margin-bottom: 1.5rem;
   }
 
   .brochures-contact-layout {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
   }
 
   .brochures-contact-left {
     order: 2;
     width: 100%;
     max-width: 100%;
     box-sizing: border-box;
     padding: 0 0.25rem;
     box-sizing: border-box;
   }
 
   .services-offering-right {
     order: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 100%;
     max-width: 100%;
     box-sizing: border-box;
     padding: 0 0.25rem;
     order: 1;
   }
 
   .amenities-carousel-container {
     padding: 0px;
   }
 
   .amenity-item{
     min-height: 300px;
   }
 
   .amenities-swiper .swiper-button-next,
   .amenities-swiper .swiper-button-prev {
     display: none;
   }
 
   .brochure-buttons {
     flex-direction: row;
     gap: 1rem;
   }
 
   .brochure-btn {
     flex: 1;
     width: 100%;
     max-width: 100%;
     box-sizing: border-box;
     padding: 0 0.25rem;
     justify-content: center;
   }

   .amenities-swiper-buttons {
     margin-top: 3rem;
   }
 }
 
 @media (max-width: 480px) {
   .brochures-contact-section {
     padding: 1rem 0;
   }
 
   .brochure-buttons {
     flex-direction: column;
     width: 98%;
   }
 
   .brochure-btn {
     width: 100%;
     max-width: 100%;
     box-sizing: border-box;
     padding: 1rem 0.25rem;
     justify-content: center;
     align-items: center;
     margin: 0 auto;
   }
 
   .service-card {
     padding: 1rem;
   }
 
   .service-icon {
     width: 50px;
     height: 50px;
   }
 
   .service-icon i {
     font-size: 1.2rem;
   }

   .amenity-item{
    min-height: 220px;
  }

  .quick-contact-section {
    display: none !important;
  }
 }
 
