 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..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&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-color: #E06100;
     --secondary-color: #FCEFE5;
     --light-color: white;
     --dark-color: #1E1E1E;
 }

 html {
     scroll-behavior: smooth;
     font-size: 62.5%;
 }

 body {
     font-family: "Poppins", sans-serif;
     overflow-x: hidden;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .nav-container {
     position: fixed;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     width: 95%;
     max-width: 1200px;
     z-index: 1000;
 }

 .navbar {
     background: #e0610099;
     border-radius: 10rem;
     padding: 18px 40px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     box-shadow: 0 8px 32px rgba(224, 122, 63, 0.3);
     backdrop-filter: blur(10px);
 }

 .brand {
     font-size: 5.5rem;
     font-weight: 600;
     color: white;
     text-decoration: none;
     letter-spacing: -1px;
     line-height: 0rem;
     font-family: "Playfair Display", serif;
 }

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 1.5rem;
     align-items: center;
 }

 .nav-item {
     margin: 0;
 }

 .nav-link {
     color: #ffffffd5;
     text-decoration: none;
     font-size: 1.2rem;
     font-weight: 300;
     padding: 12px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     border-radius: 20px;
     white-space: nowrap;
 }

 .nav-link:hover {
     background-color: rgba(255, 255, 255, 0.15);
     transform: translateY(-1px);
     color: white;
 }

 .d-flex {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .book-btn {
     background-color: white;
     color: var(--primary-color);
     font-size: 1.2rem;
     font-weight: 400;
     padding: 10px 35px;
     border-radius: 25px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .book-btn:hover {
     background-color: #f8f9fa;
     transform: translateY(-1px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 /* Mobile Menu Toggle */
 .mobile-toggle {
     display: none;
     background: none;
     border: none;
     color: white;
     font-size: 2.5rem;
     cursor: pointer;
     padding: 5px;
     transition: all 0.3s ease;
 }

 .mobile-toggle:hover {
     transform: scale(1.1);
 }

 /* Responsive Design */
 @media (max-width: 968px) {
     .nav-container {
         width: 100%;
         top: 0;
     }

     .navbar {
         padding: 15px 20px;
         flex-wrap: wrap;
         position: relative;
         border-radius: 0;
     }

     .nav-menu {
         display: none;
         width: 100%;
         flex-direction: column;
         gap: 10px;
         position: absolute;
         top: 100%;
         left: 0;
         background: #e06100c1;
         border-radius: 0px;
         padding: 20px;
         box-shadow: 0 8px 32px rgba(224, 122, 63, 0.3);
     }

     .nav-menu.active {
         display: flex;
         gap: 2rem;
         background-color: #e46a0cfe;
     }

     .nav-link {
         padding: 10px 20px;
         text-align: center;
         border-radius: 15px;
         font-size: 1.4rem;
         color: white;
     }

     .mobile-toggle {
         display: inline-block;
     }

     .book-btn {
         font-size: 1.1rem;
         padding: 8px 20px;
     }
 }

 @media (max-width: 768px) {
     .brand {
         font-size: 4.5rem;
     }


     .book-btn {
         margin: 0;
         font-size: 1rem;
         padding: 8px 16px;
     }
 }

 @media (max-width: 576px) {
     .brand {
         font-size: 3.5rem;
     }

 }

 /* Hero Section */
 .hero-section {
     height: 100vh;
     background: linear-gradient(rgba(224, 122, 63, 0.2), rgba(212, 98, 43, 0.3)),
         url('/images/hero-home.jpg');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     display: flex;
     align-items: center;
     justify-content: start;
     position: relative;
 }

 .hero-content {
     width: calc(100vw - 4rem);
 }

 .hero-title {
     font-family: "Playfair Display", serif;
     font-size: 5.5rem;
     font-weight: 400;
     color: white;
     line-height: 1.2;
     margin-bottom: 3rem;
 }

 .hero-title p {
     max-width: 600px;
 }

 .hero-buttons {
     display: flex;
     gap: 2rem;
     flex-wrap: wrap;
 }

 .btn-primary-custom {
     background-color: white;
     color: #e07a3f;
     font-size: 1.3rem;
     font-weight: 600;
     padding: 1.2rem 3rem;
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1px;
     border: none;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 1rem;
 }

 .btn-secondary-custom {
     background-color: transparent;
     color: white;
     font-size: 1.3rem;
     font-weight: 600;
     padding: 1.2rem 3rem;
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1px;
     border: 1px solid white;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 1rem;
 }

 .btn-primary-custom:hover {
     background-color: #f8f9fa;
     transform: translateY(-2px);
     color: var(--primary-color);
 }

 .btn-secondary-custom:hover {
     background-color: white;
     color: var(--primary-color);
     transform: translateY(-2px);
 }

 /* Social Media Buttons */
 .social-buttons {
     position: fixed;
     right: 3rem;
     top: 50%;
     transform: translateY(-50%);
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
     z-index: 999;
 }

 .social-btn {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: var(--primary-color);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 2rem;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(224, 122, 63, 0.3);
 }

 .social-btn:hover {
     background-color: #e07a3f;
     transform: scale(1.1);
     box-shadow: 0 6px 20px rgba(224, 122, 63, 0.4);
     color: white;
 }

 /* Responsive Design for Hero and Social */
 @media (max-width: 992px) {
     .hero-title {
         font-size: 4.5rem;
     }

 }

 @media (max-width: 768px) {
     .hero-content {
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .hero-title {
         text-align: center;
     }

     .hero-buttons {
         justify-content: center;
         flex-direction: column;
         align-items: center;
     }

     .btn-primary-custom,
     .btn-secondary-custom {
         width: 100%;
         max-width: 300px;
         justify-content: center;
     }


     .social-btn {
         width: 45px;
         height: 45px;
         font-size: 1.8rem;
     }

     html {
         font-size: 55%;
     }
 }

 @media (max-width: 576px) {
     .hero-section {
         background-attachment: scroll;
     }


 }

 /* ----------------------------------------------------------------- */

 /* About Section */
 .about-section {
     padding: 10rem 0;
     background-color: var(--light-color);
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6rem;
     align-items: center;
 }

 .about-images {
     position: relative;
     height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 3rem;
 }

 .image-container {
     overflow: hidden;
 }

 .image-container img {
     height: 100%;
     object-fit: cover;
 }

 .img-1 {
     height: 100%;
 }

 .img-2 {
     height: 60%;
     margin-bottom: 6rem;
 }


 .about-title {
     font-family: "Playfair Display", serif;
     font-size: 4rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
     font-weight: 500;
 }

 .title-underline {
     margin-bottom: 2rem;
 }

 .title-underline img {
     width: 100%;
 }

 .about-description {
     font-size: 1.4rem;
     line-height: 2;
     color: var(--dark-color);
     font-weight: 300;
 }

 .about-btn {
     background-color: var(--primary-color);
     color: white;
     font-size: 1.1rem;
     font-weight: 500;
     padding: 1.5rem 4rem;
     border-radius: 30px;
     text-transform: uppercase;
     letter-spacing: 1px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 1rem;
     transition: all 0.3s ease;
     margin-top: 1rem;
 }

 .about-btn:hover {
     background-color: #d4622b;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(224, 97, 0, 0.3);
     color: white;
 }

 /* Responsive Design for About Section */

 @media (max-width: 1200px) {
     .about-images {
         height: 400px;
     }

     .social-buttons {
         top: auto;
         bottom: -55px;
     }
 }

 @media (max-width: 1100px) {
     .about-content {
         grid-template-columns: 1fr;
         gap: 4rem;
         text-align: center;
     }


     .about-images {
         height: 300px;
     }

 }

 @media (max-width: 400px) {
     .about-images {
         height: 250px;
     }

 }


 /* ----------------------------------------------------------------- */

 /* Special Services Section */
 .special-services-section {
     background: linear-gradient(135deg, #E06100 0%, #d4622b 100%);
     padding: 25rem 0 10rem;
     margin-top: 20rem;
     position: relative;
 }

 .special-services-section.v2 {
     padding: 8rem 0;
     margin-top: 0;
     background: none;
 }

 .services-header {
     text-align: center;
     position: absolute;
     left: 0;
     top: -20rem;
     height: 40rem;
     width: 100%;
 }

 .video-container {
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
     display: flex;
     align-items: center;
     border-radius: 200rem;
 }

 .video-container img {
     object-fit: cover;
     display: block;
     width: 100%;
 }

 .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 18rem;
     height: 18rem;
     cursor: pointer;
 }

 .play-icon {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-45%, -50%);
     color: white;
     font-size: 2rem;
     z-index: 2;
 }

 .circular-text {
     width: 18rem;
     height: 18rem;
     animation: rotate 10s linear infinite;
 }

 .circular-text svg {
     width: 100%;
     height: 100%;
 }

 .circular-text text {
     fill: white;
     font-size: 8px;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 @keyframes rotate {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 .services-content {
     text-align: center;
     margin-bottom: 6rem;
 }

 .services-title {
     font-family: "Playfair Display", serif;
     font-size: 5rem;
     color: white;
     font-weight: 400;
     line-height: 1.2;
     position: relative;
     z-index: 22;
 }

 .special-services-section.v2 .services-title {
     color: var(--primary-color);
 }

 .services-title-upper {
     position: relative;
     max-width: fit-content;
     margin: 0 auto 2rem;
 }

 .services-title-upper img {
     position: absolute;
     bottom: -0.5rem;
     right: 5rem;
     width: 25rem;
     z-index: 20;
 }

 .services-description {
     font-size: 1.4rem;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.8;
     font-weight: 300;
     width: 95%;
     max-width: 1000px;
     margin: 0 auto 2rem;
 }
 .services-description  * {
    color: rgba(255, 255, 255, 0.9) !important;

}

 .special-services-section.v2 .services-description {
     color: var(--dark-color)
 }

 .services-btn {
     background-color: white;
     color: var(--primary-color);
     font-size: 1.1rem;
     font-weight: 500;
     padding: 1.5rem 4rem;
     border-radius: 30px;
     text-transform: uppercase;
     letter-spacing: 1px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 1rem;
     transition: all 0.3s ease;
     margin-top: 2rem;
 }

 .services-btn:hover {
     background-color: #f8f9fa;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
 }

 .service-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 3rem;
     margin-top: 4rem;
 }

 .service-cards.blogs {
     grid-template-columns: repeat(2, 1fr);
     gap: 8rem 3rem;
 }

 .service-card {
     position: relative;
 }
.old-price{
    text-decoration: line-through;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: 1rem;
}

 .card-image {
     height: 45rem;
     overflow: hidden;
 }

 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-top-left-radius: 50rem;
     border-top-right-radius: 50rem;
 }

 .card-image.blogs {
     height: 35rem;
 }

 .card-image.blogs img {
     border-radius: 3rem !important;
 }

 .card-content {
     padding: 1.5rem 0.5rem 2.5rem;
     text-align: center;
     width: 90%;
     background-color: var(--secondary-color);
     position: absolute;
     bottom: -5rem;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2rem;
     z-index: 11;
     min-width: 300px;
 }

 .card-title {
     font-size: 2rem;
     color: var(--primary-color);
     font-weight: 500;
     margin-bottom: 1.25rem;
     font-family: "Playfair Display", serif;
 }

 .card-price {
     margin-bottom: 1rem;
 }

 .price {
     font-size: 3rem;
     color: var(--primary-color);
     font-weight: 500;
     font-family: "Playfair Display", serif;
 }

 .duration {
     font-size: 1.2rem;
     color: var(--dark-color);
     font-weight: 400;
 }

 .card-btn {
     background-color: transparent;
     color: var(--primary-color);
     font-size: 1rem;
     font-weight: 500;
     padding: 1rem 2.5rem;
     border: 1px solid var(--primary-color);
     border-radius: 25px;
     text-transform: uppercase;
     letter-spacing: 1px;
     text-decoration: none;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 1rem;
     justify-content: center;
     width: fit-content;
     margin: 0 auto;
 }

 .card-btn.blogs {
     margin-top: 1rem !important;
 }

 .card-btn:hover {
     background-color: var(--primary-color);
     color: white;
     transform: translateY(-2px);
 }

 /* Responsive Design for Special Services */
 @media (max-width: 1200px) {
     .service-cards {
         gap: 2rem;
     }

 }

 @media (max-width: 992px) {
     .special-services-section {
         padding: 18rem 0 8rem 0;
     }

     .service-cards {
         grid-template-columns: 1fr 1fr;
         margin: 4rem auto 0;
         gap: 8rem 4rem;
     }

     .card-image {
         height: 40rem;
     }

     .special-services-section {
         margin-top: 10rem;
     }

 }

 @media (max-width: 768px) {

     .services-header {
         margin-bottom: 4rem;
     }

     .services-content {
         margin-bottom: 4rem;
     }



     .play-button {
         width: 10rem;
         height: 10rem;
     }

     .circular-text {
         width: 10rem;
         height: 10rem;
     }
 }

 @media (max-width: 576px) {
     .special-services-section {
         padding: 13rem 0 8rem 0;
     }

     .service-cards {
         grid-template-columns: 1fr;
         margin: 4rem auto 0;
         gap: 8rem 4rem;
     }

     .service-cards.blogs {
         grid-template-columns: 1fr;
     }

     .services-title-upper img {
        right: 50%;
        transform:translateX(50%)
     }
     .service-card {
         max-width: 370px;
         margin: 0 auto;
     }

     .card-image {
         height: 35rem;
     }


     .card-title {
         margin-bottom: 0.25rem;
     }

     .card-content {
         padding: 1rem 0.5rem 1.5rem;
     }

     .special-services-section {
         margin-top: 5rem;
     }
 }

 /* --------------------------------------------------- */

 /* Testimonials Section */
 .testimonials-section {
     padding: 10rem 0 4rem;
     background-color: var(--light-color);
 }

 .testimonials-header {
     text-align: center;
     margin-bottom: 6rem;
 }

 .testimonials-title-upper {
     position: relative;
     width: fit-content;
     margin: 0 auto;
 }

 .testimonials-title-upper img {
     position: absolute;
     bottom: -0.5rem;
     right: 0;
     width: 25rem;
     z-index: 20;
 }

 .testimonials-title {
     font-family: "Playfair Display", serif;
     font-size: 4.5rem;
     color: var(--primary-color);
     font-weight: 500;
     margin-bottom: 2rem;
     position: relative;
     z-index: 22;
 }

 .testimonials-description {
     font-size: 1.25rem;
     line-height: 1.8;
     color: var(--dark-color);
     font-weight: 300;
     max-width: 800px;
     margin: 0 auto;
 }

 .testimonial-card {
     padding: 4rem 1rem;
     position: relative;
     max-width: 1000px;
     margin: 0 auto;
 }

 .testimonial-content {
     display: grid;
     grid-template-columns: 1fr 2fr;
     gap: 4rem;
     align-items: center;
 }

 /* Customer Section with Orange Background */
 .customer-section {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 1.25rem;
     position: relative;
     padding-right: 15rem;
 }

 .orange-bg-element,
 .orange-bg-element2 {
     width: 45px;
     height: 300px;
     background: var(--primary-color);
     border-radius: 100px;
 }

 .orange-bg-element2 {
     height: 150px;
     align-self: self-start;
 }

 .customer-image-container {
     position: absolute;
     z-index: 2;
     margin-left: 22rem;
     margin-top: 5rem;
 }

 .customer-image-circle {
     width: 200px;
     height: 200px;
     border-radius: 50%;
     overflow: hidden;
     border: 5px solid var(--primary-color);
     background-color: var(--primary-color);
 }

 .customer-image-circle img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Testimonial Main Content */
 .testimonial-main {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     position: relative;
 }


 .quote-mark img {
     width: 3rem;
 }

 .customer-details {
     margin-bottom: 1rem;
 }

 .customer-name {
     font-family: "Playfair Display", serif;
     font-size: 2.2rem;
     color: var(--primary-color);
     font-weight: 500;
     margin-bottom: 0.5rem;
 }

 .customer-location {
     font-size: 1.3rem;
     color: var(--dark-color);
     font-weight: 400;
     margin-bottom: 0.5rem;
 }

 .rating {
     display: flex;
     gap: 0.3rem;
 }

 .star {
     font-size: 1.8rem;
     color: var(--primary-color);
 }

 .star.empty {
     color: #ddd;
 }

 .testimonial-text {
     margin-bottom: 2rem;
 }

 .testimonial-heading {
     font-family: "Playfair Display", serif;
     font-size: 2.4rem;
     color: var(--primary-color);
     font-weight: 400;
     margin-bottom: 1.5rem;
     line-height: 1.3;
 }

 .testimonial-quote {
     font-size: 1.3rem;
     line-height: 1.8;
     color: var(--dark-color);
     font-weight: 400;
 }

 .quote-mark-right {
     position: absolute;
     bottom: 0;
     right: 0;
     transform: rotate(180deg);
 }

 .quote-mark-right img {
     width: 3rem;
 }

 .testimonial-navigation {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin-top: 4rem;
 }

 .nav-btn {
     width: 5rem;
     height: 5rem;
     border-radius: 50%;
     border: 2px solid var(--primary-color);
     background: transparent;
     color: var(--primary-color);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 2rem;
 }

 .nav-btn:hover {
     background: var(--primary-color);
     color: white;
     transform: scale(1.1);
 }

 .next-btn {
     background: var(--primary-color);
     color: white;
 }

 .next-btn:hover {
     background: #d4622b;
 }



 @media (max-width: 768px) {
     .testimonials-section {
         padding: 6rem 0 2rem;
     }

     .testimonials-title {
         font-size: 3.5rem;
     }

     .testimonial-card {
         padding: 3rem 2rem;
     }

     .customer-image-container {
         display: flex;
         justify-content: center;
         align-items: center;
         position: relative;
         margin-left: 0;
         margin-top: 0;
     }

     .customer-section {
         padding-right: 0;
     }

     .orange-bg-element,
     .orange-bg-element2 {
         display: none;
     }

     .customer-image-circle {
         width: 120px;
         height: 120px;
     }

     .testimonial-heading {
         font-size: 2rem;
     }
 }

 @media (max-width: 576px) {
     .testimonials-title {
         font-size: 2.9rem;
     }

     .testimonials-title-upper img {
         width: 18rem;
     }

     .testimonial-card {
         padding: 2rem 1.5rem;
     }

     .testimonial-content {
         grid-template-columns: 1fr;
     }

     .customer-section {
         display: none;
     }

     .testimonial-heading {
         font-size: 1.8rem;
     }

     .testimonial-quote {
         font-size: 1.3rem;
     }
 }

 /* --------------------------------------------------- */

 /* Gallery Section */
 .gallery-section {
     padding: 0rem 0 4rem;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 3rem;
     align-items: center;
 }

 .gallery-item {
     position: relative;
     overflow: hidden;
     cursor: pointer;
 }


 .gallery-image {
     width: 100%;
     height: 350px;
     overflow: hidden;
     position: relative;
 }

 .gallery-image img {
     height: 100%;
     object-fit: cover;
 }



 .item-2 {
     margin-top: 10rem;
 }



 .item-4 {
     margin-top: 10rem;

 }


 /* Responsive Design for Gallery */
 @media (max-width: 1200px) {
     .gallery-grid {
         gap: 2rem;
     }

     .gallery-image {
         height: 300px;
     }
 }

 @media (max-width: 992px) {
     .gallery-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 1.5rem;
     }

     .gallery-image {
         height: 250px;
     }
 }

 @media (max-width: 768px) {
     .gallery-section {
         /* padding: 6rem 0; */
     }

     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 0.5rem;
     }

     .gallery-grid {
         gap: 2rem;
     }

     .item-2 {
         margin-top: 0rem;
     }

     .item-4 {
         margin-top: 0rem;

     }

     .gallery-image {
         height: 300px;
         display: flex;
         justify-content: center;
         align-items: center;
     }
 }

 @media (max-width: 576px) {


     .gallery-image {
         height: 200px;
     }

 }

 /* ---------------------------------------------------------- */

 /* Special Blogs Section */


 .blogs-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .blogs-title-upper {
     position: relative;
     width: fit-content;
 }

 .blogs-title-upper img {
     position: absolute;
     bottom: -0.5rem;
     right: 0;
     width: 20rem;
     z-index: 20;
 }

 .blogs-title {
     font-family: "Playfair Display", serif;
     font-size: 4rem;
     color: var(--primary-color);
     margin-bottom: 2rem;
     font-weight: 500;
     line-height: 1.2;
     position: relative;
     z-index: 22;
 }

 .blogs-description {
     font-size: 1.4rem;
     line-height: 2;
     color: var(--dark-color);
     font-weight: 300;
     margin-bottom: 2rem;
     max-width: 700px;
 }

 .blogs-btn {
     background-color: var(--primary-color);
     color: white;
     font-size: 1.1rem;
     font-weight: 500;
     padding: 1.5rem 4rem;
     border-radius: 30px;
     text-transform: uppercase;
     letter-spacing: 1px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 1rem;
     transition: all 0.3s ease;
     margin-top: 1rem;
 }

 .blogs-btn:hover {
     background-color: #d4622b;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(224, 97, 0, 0.3);
     color: white;
 }

 .blogs-images {
     position: relative;
     height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .blogs-images.v2 {
     align-items: start;
     margin-top: 1rem;
     overflow: hidden;
 }

 .blog-image-container {
     overflow: hidden;
     width: fit-content;
 }


 .blog-image-container img {
     width: 100%;
     object-fit: cover;
     max-width: 500px;

 }


 /* Responsive Design for Blogs Section */

 @media (max-width: 992px) {
     .blogs-content {
         grid-template-columns: 1fr;
         gap: 4rem;
         text-align: center;
     }


     .blogs-title-upper {
         margin: 0 auto;
     }

     .blogs-description {
         margin: 0 auto;
     }

     .blogs-images {
         height: fit-content;
     }

     .blog-image-container {
         width: 400px;
         margin: 0 auto;
     }

 }

 @media (max-width: 768px) {
     .blogs-section {
         padding: 6rem 0;
     }

     .blogs-title {
         font-size: 3.5rem;
     }

     .blogs-images {
         height: 300px;
     }
 }

 @media (max-width: 576px) {
     .blogs-title {
         font-size: 3rem;
     }

     .blogs-images {
         height: 250px;
     }

     .blogs-description {
         font-size: 1.3rem;
     }

     .blog-image-container {
         max-width: 300px;
         margin: 0 auto;
     }

     .blogs-title-upper img {
         width: 15rem;
     }
 }

 /* ------------------------------------------------------------------------- */

 /* Newsletter Section */
 .newsletter-section {
     padding: 8rem 0;
     background-color: var(--secondary-color);
 }

 .newsletter-content {
     text-align: center;
     max-width: 800px;
     margin: 0 auto;
 }

 .newsletter-title {
     font-family: "Playfair Display", serif;
     font-size: 4rem;
     color: var(--primary-color);
     font-weight: 500;
     line-height: 1.3;
     margin-bottom: 4rem;
 }

 .newsletter-form {
     display: flex;
     justify-content: center;
 }

 .email-form {
     width: 100%;
     max-width: 600px;
 }

 .form-wrapper {
     display: flex;
     border: 1px solid var(--primary-color);
     border-radius: 50px;
     padding: 5px;
 }



 .email-input {
     flex: 1;
     border: none;
     outline: none;
     padding: 1.5rem 2.5rem;
     font-size: 1.4rem;
     background: transparent;
     color: var(--dark-color);
     font-family: "Poppins", sans-serif;
     border-radius: 50px;
     width: 10rem;
 }



 .email-input::placeholder {
     color: var(--primary-color);
     font-weight: 400;
 }

 .subscribe-btn {
     background-color: var(--primary-color);
     color: white;
     border: none;
     padding: 1.5rem 3rem;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.8rem;
     white-space: nowrap;
     font-family: "Poppins", sans-serif;
 }

 .subscribe-btn:hover {
     background-color: #d4622b;
     transform: translateX(2px);
     box-shadow: 0 6px 20px rgba(224, 97, 0, 0.3);
 }

 .subscribe-btn:active {
     transform: translateX(0px) translateY(1px);
 }

 /* Responsive Design for Newsletter */


 @media (max-width: 576px) {
     .newsletter-title {
         font-size: 2.8rem;
     }

     .form-wrapper {
         padding: 1rem;
     }

     .email-input {
         font-size: 1.3rem;
         padding: 1rem 1.5rem;
     }

     .subscribe-btn {
         font-size: 1rem;
         padding: 1rem 1.5rem;
     }
 }

 /* ------------------------------------------------------ */

 /* Footer Section */
 .footer-section {
     background: linear-gradient(rgba(224, 97, 0, 0.9), rgba(212, 98, 43, 0.9)),
         url('/images/video-watch.png');
     background-size: cover;
     background-position: center;
     padding: 6rem 0 2rem;
     color: white;
 }

 .footer-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
     margin-bottom: 4rem;
 }

 .footer-left {
     display: flex;
     flex-direction: column;
 }

 .brand-footer {
     font-family: "Playfair Display", serif;
     font-size: 8rem;
     font-weight: 600;
     color: white;
     margin-bottom: 4rem;
     line-height: 1;
 }

 .footer-description {
     font-size: 1.4rem;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.9);
     font-weight: 300;
     margin-bottom: 3rem;
     max-width: 600px;
 }

 .footer-social {
     display: flex;
     gap: 1.5rem;
 }

 .footer-social-btn {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background-color: var(--light-color);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     font-size: 2rem;
     text-decoration: none;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.3);
 }

 .footer-social-btn:hover {
     background-color: white;
     color: var(--primary-color);
     transform: scale(1.1);
 }

 .footer-right {
     display: flex;
     justify-content: flex-end;
 }

 .contact-info {
     max-width: 400px;
 }

 .contact-title {
     font-family: "Playfair Display", serif;
     font-size: 3rem;
     color: white;
     font-weight: 500;
     margin-bottom: 3rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .contact-list {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     margin-bottom: 2.5rem;
 }

 .contact-icon {
     width: 2.5rem;
     height: 2.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.8rem;
     flex-shrink: 0;
 }

 .contact-details {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .contact-label {
     font-size: 1.5rem;
     color: rgba(255, 255, 255, 0.8);
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-family: "Playfair Display", serif;
 }

 .contact-value {
     font-size: 1.2rem;
     color: white;
     font-weight: 400;
 }

 .address-content {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .show-map-btn {
     color: white;
     text-decoration: underline;
     font-size: 1.2rem;
     font-weight: 400;
     transition: all 0.3s ease;
     align-self: flex-start;
 }

 .show-map-btn:hover {
     color: rgba(255, 255, 255, 0.8);
 }

 .footer-bottom {
     padding-top: 2rem;
 }

 .footer-divider {
     width: 100%;
     height: 1px;
     background-color: rgba(255, 255, 255, 0.3);
     margin-bottom: 2rem;
 }

 .footer-copyright {
     text-align: center;
     font-size: 1.3rem;
     color: rgba(255, 255, 255, 0.9);
     font-weight: 300;
 }

 /* Responsive Design for Footer */
 @media (max-width: 992px) {
     .footer-content {
         grid-template-columns: 1fr;
         gap: 4rem;
         text-align: center;
     }

     .footer-right {
         justify-content: center;
     }

     .contact-info {
         max-width: none;
     }

     .brand-footer {
         font-size: 5rem;
     }

     .footer-description {
         margin: 0 auto 2rem;
     }

     .footer-social {
         justify-content: center;
     }
 }


 .testimonials-slider {
     position: relative;
     overflow: hidden;
     width: 100%;
 }

 .testimonials-wrapper {
     display: flex;
     transition: transform 0.5s ease-in-out;
     width: 100%;
 }

 .testimonial-slide {
     min-width: 100%;
     display: flex;
     justify-content: center;
 }


 /* Slider indicators */
 .slider-indicators {
     display: flex;
     justify-content: center;
     gap: 0.5rem;
     margin-top: 2rem;
     margin-bottom: 1rem;
 }

 .indicator {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(224, 97, 0, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .indicator.active {
     background: var(--primary-color);
     transform: scale(1.2);
 }

 /* About Us Hero Section */
 .about-hero-exact {
     position: relative;
     overflow: hidden;
     /* clip the blurred edges */
     height: 60vh;
     min-height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* blurred background */
 .about-hero-exact::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('/images/about-us-hero.jpg') center/cover no-repeat;
     filter: blur(3px);
     z-index: 0;
 }

 /* gradient overlay on top of the blur */
 .about-hero-exact::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(rgba(224, 97, 0, 0.3),
             rgba(224, 97, 0, 0.3));
     z-index: 1;
 }

 /* your actual content sits above both layers */
 .about-hero-exact>* {
     position: relative;
     z-index: 2;
 }


 .about-hero-content-exact {
     text-align: center;
     width: 100%;
 }

 .about-title-with-border {
     position: relative;
 }

 .about-hero-title-exact {
     font-family: "Playfair Display", serif;
     font-size: 7rem;
     font-weight: 400;
     color: white;
     margin: 0;
     padding: 2rem 6rem;
     position: relative;
     z-index: 2;
 }

 .about-title-with-border img {
     position: absolute;
     top: 50%;
     left: 2rem;
     transform: translateY(-50%);
     width: 65%;
     z-index: 1;
 }

 /* About Content Section */
 .about-content-exact {
     padding: 8rem 0;
     background-color: var(--light-color);
 }

 .about-main-grid {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 6rem;
     align-items: center;
 }

 /* Left Side - Images with Blur Effect */
 .about-images-exact {
     height: 50rem;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .about-images-exact img {
     height: 100%;
 }



 /* Right Side - Text Content */
 .about-text-exact {
     padding-left: 2rem;
 }

 .about-main-title-exact {
     font-family: "Playfair Display", serif;
     font-size: 4.5rem;
     color: var(--primary-color);
     font-weight: 400;
     line-height: 1.2;
     margin-bottom: 1rem;
 }

 .title-underline-exact {
     margin-bottom: 2rem;
 }

 .underline-decoration img {
     width: 100%;
     max-width: 40rem;
 }

 .about-paragraph-exact {
     font-size: 1.25rem;
     line-height: 1.8;
     color: var(--dark-color);
     font-weight: 300;
     margin-bottom: 0.75rem;
     text-align: justify;
 }

 .about-paragraph-exact:last-child {
     margin-bottom: 0;
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .about-main-grid {
         gap: 3rem;
     }

 }

 @media (max-width: 992px) {
     .about-hero-title-exact {
         padding: 1.5rem 0rem;
     }

     .about-main-grid {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .about-text-exact {
         padding-left: 0;
     }

     .about-images-exact {
         order: -1;
         height: 400px;
         margin: 0 auto;
         max-width: 400px;
     }

     .about-main-title-exact {
         font-size: 3.8rem;
     }

     .about-paragraph-exact {
         text-align: center;
     }
 }

 @media (max-width: 768px) {
     .about-hero-exact {
         height: 50vh;
         min-height: 400px;
         background-attachment: scroll;
     }

     .about-title-with-border::before {
         width: 110%;
         height: 75%;
     }

     .about-content-exact {
         padding: 6rem 0;
     }

     .about-main-title-exact {
         font-size: 3.2rem;
     }

     .about-images-exact {
         height: 350px;
     }

 }

 @media (max-width: 576px) {


     .about-main-title-exact {
         font-size: 2.8rem;
     }

     .about-images-exact {
         height: 300px;
     }

     .circle-image-1,
     .circle-image-2 {
         width: 160px;
         height: 200px;
     }

     .about-main-grid {
         gap: 3rem;
     }
 }

 @media (max-width: 400px) {


     .about-images-exact {
         height: 250px;
     }

     .circle-image-1,
     .circle-image-2 {
         width: 140px;
         height: 180px;
     }
 }

 /* Beniamen Habshi Section */
 .beniamen-section {
     padding: 8rem 0;
 }

 .beniamen-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6rem;
     align-items: center;
     position: relative;
 }

 .beniamen-info {
     display: flex;
     flex-direction: column;
 }

 .beniamen-title-container {
     margin-bottom: 3rem;
     background-color: var(--primary-color);
     padding: 4rem 3rem;
 }

 .beniamen-main-title {
     font-family: "Playfair Display", serif;
     font-size: 4.5rem;
     color: white;
     font-weight: 400;
     line-height: 1.2;
     margin-bottom: 1rem;
     position: relative;
     z-index: 2;
 }

 .beniamen-title-underline {
     margin-bottom: 2rem;
 }

 .beniamen-title-underline img {
     width: 100%;
     max-width: 35rem;
 }

 .beniamen-description-box {
     border-radius: 0;
     position: relative;
 }

 .beniamen-description-text {
     font-size: 1.25rem;
     line-height: 1.5;
     color: var(--secondary-color);
     font-weight: 300;
     margin-bottom: 2rem;
 }

 .beniamen-description-text:last-child {
     margin-bottom: 0;
 }

 .beniamen-stats {
     display: flex;
     gap: 4rem;
     justify-content: center;
 }

 .stat-item {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .stat-number {
     font-family: "Playfair Display", serif;
     font-size: 4.5rem;
     font-weight: 500;
     color: var(--primary-color);
     line-height: 1;
     margin-bottom: 0.5rem;
 }

 .stat-label {
     font-size: 1.2rem;
     color: var(--dark-color);
     font-weight: 400;
     line-height: 1.3;
     margin-top: 0.75rem;
 }

 .beniamen-image {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .beniamen-image-circle {
     height: 60rem;
     overflow: hidden;
 }

 .beniamen-image-circle img {
     height: 100%;
     object-fit: cover;
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .beniamen-content {
         gap: 4rem;
     }

     .beniamen-stats {
         gap: 3rem;
     }
 }

 @media (max-width: 992px) {
     .beniamen-content {
         grid-template-columns: 1fr;
         gap: 5rem;
         text-align: center;
     }

     .beniamen-main-title {
         font-size: 3.8rem;
     }

     .beniamen-image {
         order: -1;
     }


     .beniamen-stats {
         justify-content: center;
         gap: 3rem;
     }

     .stat-item {
         text-align: center;
     }

     .beniamen-image-circle {
         height: 40rem;
     }
 }

 @media (max-width: 768px) {
     .beniamen-section {
         padding: 6rem 0;
     }

     .beniamen-main-title {
         font-size: 3.2rem;
     }

     .beniamen-image-circle {
         height: 30rem;
     }



     .stat-number {
         font-size: 3.5rem;
     }

     .beniamen-description-box {
         padding: 2rem;
     }
 }

 @media (max-width: 576px) {
     .beniamen-main-title {
         font-size: 2.8rem;
     }

     .beniamen-image-circle {
         height: 30rem;
     }

     .stat-number {
         font-size: 3rem;
     }

     .stat-label {
         font-size: 1.1rem;
         max-width: none;
     }

     .beniamen-stats {
         flex-direction: column;
         gap: 2rem;
         align-items: center;
     }
 }


 /* Why Choose Beniamen Section */
 .why-choose-section {
     padding: 8rem 0;
     background-color: var(--light-color);
 }

 .why-choose-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: flex-start;
 }

 /* Left Side - Content */
 .why-choose-left {
     display: flex;
     flex-direction: column;
 }

 .why-choose-title-container {
     margin-bottom: 3rem;
     position: relative;
     width: fit-content;

 }

 .why-choose-title {
     font-family: "Playfair Display", serif;
     font-size: 4.5rem;
     color: var(--primary-color);
     font-weight: 400;
     line-height: 1.2;
     margin-bottom: 1rem;
     position: relative;
     z-index: 2;
 }

 .why-choose-title-underline {
     margin-bottom: 1rem;
     position: absolute;
     bottom: -1rem;
     left: -1rem;
     z-index: 1;
 }

 .why-choose-title-underline.v2 {
     right: -1rem;
     left: unset;
 }

 .why-choose-title-underline img {
     width: 100%;
     max-width: 20rem;
 }

 .why-choose-description {
     font-size: 1.3rem;
     line-height: 1.8;
     color: var(--dark-color);
     font-weight: 300;
     margin-bottom: 3rem;
     max-width: 60rem;
 }

 .why-choose-image {
     position: relative;
     width: 100%;
     max-width: 45rem;
     overflow: hidden;
 }

 .why-choose-image img {
     width: 100%;
     object-fit: cover;
 }

 /* Right Side - FAQ Accordion */
 .why-choose-right {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .faq-item {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     border: none;
 }

 .faq-item:hover {
     box-shadow: 0 8px 25px rgba(224, 97, 0, 0.1);
 }

 /* Active FAQ Item - Orange Background */
 .faq-item.active,
 .faq-item.default-active {
     background-color: var(--primary-color);
     color: white;
     box-shadow: 0 8px 25px rgba(224, 97, 0, 0.2);
 }

 .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 2rem 2.5rem;
     cursor: pointer;
     font-size: 1.4rem;
     font-weight: 400;
     color: var(--primary-color);
     transition: all 0.3s ease;
     border: none;
     background: none;
     width: 100%;
     text-align: left;
 }

 /* Active Question Text */
 .faq-item.active .faq-question,
 .faq-item.default-active .faq-question {
     color: white;
 }

 .faq-arrow {
     font-size: 1.2rem;
     transition: transform 0.3s ease;
     color: var(--primary-color);
 }

 /* Active Arrow */
 .faq-item.active .faq-arrow,
 .faq-item.default-active .faq-arrow {
     transform: rotate(180deg);
     color: white;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: all 0.3s ease;
     background: white;
 }

 .faq-answer.active {
     max-height: 200px;
     padding: 0 2.5rem 2rem 2.5rem;
 }

 /* Active Answer Background */
 .faq-item.active .faq-answer,
 .faq-item.default-active .faq-answer {
     background-color: var(--primary-color);
 }

 .faq-answer-text {
     font-size: 1.2rem;
     line-height: 1.6;
     color: var(--dark-color);
     font-weight: 300;
 }

 /* Active Answer Text */
 .faq-item.active .faq-answer-text,
 .faq-item.default-active .faq-answer-text {
     color: rgba(255, 255, 255, 0.9);
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .why-choose-content {
         gap: 4rem;
     }
 }

 @media (max-width: 992px) {
     .why-choose-content {
         grid-template-columns: 1fr;
         gap: 5rem;
         text-align: center;
     }

     .why-choose-title-container {
         margin: 0 auto;
     }

     .why-choose-title {
         font-size: 3.8rem;
     }

     .why-choose-image {
         margin: 0 auto;
     }

     .why-choose-title-underline {
         display: flex;
         justify-content: center;
     }

     .why-choose-description {
         margin: 2rem auto;
     }
 }

 @media (max-width: 768px) {
     .why-choose-section {
         padding: 6rem 0;
     }

     .why-choose-title {
         font-size: 3.2rem;
     }



     .faq-question {
         padding: 1.5rem 2rem;
         font-size: 1.3rem;
     }

     .faq-answer.active {
         padding: 0 2rem 1.5rem 2rem;
     }

     .why-choose-title-underline img {
         width: 15rem;
     }
 }

 @media (max-width: 576px) {
     .why-choose-title {
         font-size: 2.8rem;
     }

     .why-choose-image {
         width: 90%;
     }

     .faq-question {
         padding: 1.2rem 1.5rem;
         font-size: 1.2rem;
     }

     .faq-answer.active {
         padding: 0 1.5rem 1.2rem 1.5rem;
     }

     .why-choose-title-underline img {
         max-width: 25rem;
     }
 }



 /* Contact Us Hero Section */
 .contact-hero-section {
     position: relative;
     overflow: hidden;
     height: 60vh;
     min-height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Blurred background */
 .contact-hero-section::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('/images/contactus-hero.jpg') center/cover no-repeat;
     filter: blur(3px);
     z-index: 0;
 }

 /* Gradient overlay */
 .contact-hero-section::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(rgba(224, 97, 0, 0.3), rgba(224, 97, 0, 0.3));
     z-index: 1;
 }

 /* Content above layers */
 .contact-hero-section>* {
     position: relative;
     z-index: 2;
 }

 .contact-hero-content {
     text-align: center;
     width: 100%;
 }

 .contact-title-with-border {
     position: relative;
 }

 .contact-hero-title {
     font-family: "Playfair Display", serif;
     font-size: 7rem;
     font-weight: 400;
     color: white;
     margin: 0;
     position: relative;
     z-index: 2;
 }

 .contact-title-with-border img {
     position: absolute;
     top: 55%;
     left: 0rem;
     transform: translateY(-50%);
     width: 70%;
     z-index: 1;
 }

 .contact-title-with-border.services img {
     left: auto;
     right: 2rem;
 }

 .contact-hero-section.services::before {
     background: url('/images/services-hero.jpg') center/cover no-repeat;
 }

 /* Contact Section */
 .contact-section {
     padding: 4rem 0;
 }

 .contact-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: flex-start;
 }

 .contact-info-title-upper img {
     width: 100%;
     max-width: 25rem;
     margin-bottom: 2rem;
 }

 .location-cards-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem
 }

 /* Left Side - Contact Information */
 .contact-info-side {
     display: flex;
     flex-direction: column;
     gap: 4rem;
 }

 .contact-info-title {
     font-family: "Playfair Display", serif;
     font-size: 4.5rem;
     color: var(--primary-color);
     font-weight: 400;
     line-height: 1.2;
     position: relative;
     width: fit-content;
 }

 .contact-info-description {
     font-size: 1.3rem;
     line-height: 1.8;
     color: var(--dark-color);
     font-weight: 400;
     max-width: 500px;
 }

 .location-card {
     display: flex;
     gap: 1rem;
     flex-direction: column;
 }


 .location-title {
     font-family: "Playfair Display", serif;
     font-size: 2.8rem;
     color: var(--primary-color);
     font-weight: 500;
     margin-bottom: 1rem;
 }

 .location-item {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .location-icon {
     width: 2rem;
     height: 2rem;
     color: var(--primary-color);
     font-size: 2rem;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .location-text {
     font-size: 1.3rem;
     color: var(--dark-color);
     font-weight: 400;
 }

 /* Follow Us Section */

 .follow-title {
     font-family: "Playfair Display", serif;
     font-size: 2.8rem;
     color: var(--primary-color);
     font-weight: 500;
     margin-bottom: 2rem;
     text-align: left;
 }

 .social-links {
     display: flex;
     align-items: center;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .social-link {
     width: 4.5rem;
     height: 4.5rem;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     font-size: 1.8rem;
     text-decoration: none;
     transition: all 0.3s ease;
     border: 1px solid #eee;
 }

 /* Right Side - Contact Form */
 .contact-form-side {
     display: flex;
     flex-direction: column;
 }

 .contact-form-container {
     background: white;
     padding: 4rem 3rem;
 }

 /* Form Styling */
 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 2.5rem;
 }

 .form-group {
     display: flex;
     flex-direction: column;
 }

 .form-label {
     font-size: 1.1rem;
     font-weight: 400;
     color: #000000b6;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .form-input,
 .form-select,
 .form-textarea {
     padding: 1rem;
     border: none;
     border-radius: 0.75rem;
     border-bottom: 2px solid var(--primary-color);
     background: transparent;
     font-size: 1.4rem;
     color: var(--dark-color);
     font-family: "Poppins", sans-serif;
     outline: none;
     transition: all 0.3s ease;
 }

 .form-input:focus,
 .form-select:focus,
 .form-textarea:focus {
     border-bottom-color: #d4622b;
 }

 .form-textarea {
     resize: vertical;
     min-height: 60px;
     border-radius: 0.75rem;
     border-bottom: 2px solid var(--primary-color);
 }

 /* Phone Input with Country Code */
 .phone-input-wrapper {
     display: flex;
     align-items: center;
     border-radius: 0.75rem;
     border-bottom: 2px solid var(--primary-color);
     transition: all 0.3s ease;
     padding: 0 1rem;
 }

 .phone-input-wrapper:focus-within {
     border-bottom-color: #d4622b;
 }

 .country-code {
     border: none;
     background: transparent;
     font-size: 1.4rem;
     color: var(--primary-color);
     padding: 1.5rem 1rem 1.5rem 0;
     outline: none;
     margin-right: 1rem;
     cursor: pointer;
 }

 .phone-input {
     flex: 1;
     border: none;
     border-bottom: none;
     padding: 1.5rem 0;
 }

 /* Select Dropdown */
 .form-select {
     cursor: pointer;
     appearance: none;
     background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E06100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 0.5rem center;
     background-size: 1.5rem;
     padding-right: 2.5rem;
 }

 .form-select option {
     padding: 1rem;
     font-size: 1.4rem;
     background: white;
     color: var(--dark-color);
 }

 /* Submit Button */
 .contact-submit-btn {
     background-color: var(--primary-color);
     color: white;
     font-size: 1.1rem;
     font-weight: 400;
     padding: 1.5rem 3rem;
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1px;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 1rem;
     align-self: flex-start;
     margin-top: 1rem;
     font-family: "Poppins", sans-serif;
 }

 .contact-submit-btn:hover {
     background-color: #d4622b;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(224, 97, 0, 0.3);
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .contact-content {
         gap: 4rem;
     }
 }

 @media (max-width: 992px) {
     .contact-content {
         grid-template-columns: 1fr;
         gap: 5rem;
     }

     .contact-info-title {
         text-align: center;
     }

     .contact-info-title-upper {
         display: flex;
         align-items: center;
         flex-direction: column;
     }

     .contact-info-description {
         text-align: center;
         margin: 0 auto 4rem;
     }

 }

 @media (max-width: 768px) {
     .contact-info-title {
         font-size: 3.2rem;
     }

     .contact-form-container {
         padding: 2rem 1.5rem;
     }

     .location-card,
     .follow-section {
         padding: 2rem 1.5rem;
     }

     .location-title,
     .follow-title {
         font-size: 2.4rem;
     }

     .social-links {
         gap: 1rem;
     }


 }

 @media (max-width: 576px) {
     .contact-info-title {
         font-size: 2.8rem;
     }

     .contact-hero-title {
         font-size: 6rem;
     }

     .form-input,
     .form-select,
     .form-textarea,
     .country-code {
         font-size: 1.3rem;
     }

     .contact-submit-btn {
         padding: 1.2rem 2.5rem;
         font-size: 1.1rem;
         align-self: stretch;
         justify-content: center;
     }

     .location-title,
     .follow-title {
         font-size: 2rem;
     }

     .contact-info-side {
         gap: 3rem;
     }

     .location-cards-container {
         gap: 0;
         grid-template-columns: 1fr;
     }
 }

 .map-section img {
     width: 100%;
 }

 /* Our Blogs Hero Section */
 .blogs-hero-section {
     position: relative;
     overflow: hidden;
     height: 60vh;
     min-height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Blurred background */
 .blogs-hero-section::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('/images/ourBlogs-hero.jpg') center/cover no-repeat;
     filter: blur(3px);
     z-index: 0;
 }

 /* Gradient overlay */
 .blogs-hero-section::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(rgba(224, 97, 0, 0.3), rgba(224, 97, 0, 0.3));
     z-index: 1;
 }

 /* Content above layers */
 .blogs-hero-section>* {
     position: relative;
     z-index: 2;
 }

 .blogs-hero-content {
     text-align: center;
     width: 100%;
 }

 .blogs-title-with-border {
     position: relative;
 }

 .blogs-hero-title {
     font-family: "Playfair Display", serif;
     font-size: 7rem;
     font-weight: 400;
     color: white;
     margin: 0;
     position: relative;
     z-index: 2;
 }

 .blogs-title-with-border img {
     position: absolute;
     top: 55%;
     right: -2rem;
     transform: translateY(-50%);
     width: 80%;
     z-index: 1;
 }

 /* Special Blogs Section */
 .special-blogs-section {
     padding: 8rem 0;
     background-color: var(--light-color);
 }

 .blogs-header-content {
     text-align: center;
     margin-bottom: 6rem;
 }

 .blogs-main-title-upper {
     position: relative;
     width: fit-content;
     margin: 0 auto;
 }

 .blogs-main-title-upper h2 {
     position: relative;
     z-index: 22;
 }

 .blogs-main-title-upper img {
     position: absolute;
     bottom: -0.5rem;
     right: 0rem;
     width: 25rem;
     z-index: 20;
 }

 .blogs-main-title {
     font-family: "Playfair Display", serif;
     font-size: 4.5rem;
     color: var(--primary-color);
     font-weight: 400;
     line-height: 1.2;
     margin-bottom: 2rem;
     position: relative;
     z-index: 22;
 }

 .blogs-main-description {
     font-size: 1.25rem;
     line-height: 1.8;
     color: var(--dark-color);
     font-weight: 300;
     max-width: 800px;
     margin: 0 auto;
 }

 /* Blog Cards */
 .blog-cards {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 4rem;
     margin-top: 4rem;
 }

 .blog-card {
     position: relative;
     background: white;
     border-radius: 2rem;
     overflow: hidden;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .blog-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(224, 97, 0, 0.15);
 }

 .blog-card-image {
     height: 25rem;
     overflow: hidden;
 }

 .blog-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .blog-card:hover .blog-card-image img {
     transform: scale(1.05);
 }



 /* More Blogs Button */
 .more-blogs-container {
     text-align: center;
     margin-top: 12rem;
 }

 .more-blogs-btn {
     background-color: var(--primary-color);
     color: white;
     font-size: 1.1rem;
     font-weight: 500;
     padding: 1.5rem 4rem;
     border-radius: 30px;
     text-transform: uppercase;
     letter-spacing: 1px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 1rem;
     transition: all 0.3s ease;
 }

 .more-blogs-btn:hover {
     background-color: #d4622b;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(224, 97, 0, 0.3);
     color: white;
 }

 /* Responsive Design for Blogs Page */
 @media (max-width: 1200px) {
     .blog-cards {
         gap: 3rem;
     }
 }

 @media (max-width: 992px) {


     .blog-cards {
         gap: 3rem;
     }

     .blog-card-image {
         height: 22rem;
     }
 }

 @media (max-width: 768px) {
     .blogs-hero-section {
         height: 50vh;
         min-height: 400px;
         background-attachment: scroll;
     }


     .special-blogs-section {
         padding: 6rem 0;
     }



     .blog-cards {
         grid-template-columns: 1fr;
         gap: 3rem;
         max-width: 400px;
         margin: 4rem auto 0;
     }

     .blog-card-image {
         height: 20rem;
     }

     .blog-card-content {
         padding: 2.5rem 2rem;
     }

     .blog-card-title {
         font-size: 2rem;
     }
 }

 @media (max-width: 576px) {
     .blogs-hero-title {
         font-size: 6rem;
     }

     .blogs-main-title-upper img {
         width: 18rem;
         right: 50%;
         transform:translateX(50%);

     }

     .blog-card-image {
         height: 18rem;
     }

     .blog-card-title {
         font-size: 1.8rem;
     }

     .blog-card-content {
         padding: 2rem 1.5rem;
     }
 }

 /* Blog Detail Hero Section with Integrated Image */
 .blog-detail-hero-integrated {
     padding: 12rem;
     margin-top: 0;
     position: relative;
 }

 .blog-hero-title-section {
     text-align: center;
     margin-bottom: 18rem;
     margin-top: 6rem;
     position: relative;
     z-index: 100;
 }

 /* Blurred background */
 .blog-detail-hero-integrated::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('/images/hero-home.jpg') center/cover no-repeat;
     filter: blur(3px);
     z-index: 0;
 }

 /* Gradient overlay */
 .blog-detail-hero-integrated::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(rgba(224, 97, 0, 0.3), rgba(224, 97, 0, 0.3));
     z-index: 1;
 }

 .blog-hero-title {
     font-family: "Playfair Display", serif;
     font-size: 5.5rem;
     font-weight: 400;
     color: white;
     line-height: 1.2;
     margin: 0;
 }

 .blog-hero-image-container {
     display: flex;
     justify-content: center;
     margin-top: 4rem;
     position: absolute;
     z-index: 101;
     height: 40rem;
     bottom: -20rem;
     left: 50%;
     transform: translateX(-50%);
     overflow: hidden;
     border-radius: 2rem;
     width: 99%;
     max-width: 120rem;
 }

 .blog-hero-featured-image {
     width: 100%;
     overflow: hidden;
     border-radius: 2.5rem;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
 }

 .blog-hero-featured-image img {
     width: 100%;
     object-fit: cover;
 }

 /* Blog Content Section */
 .blog-content-section {
     padding: 25rem 0 5rem;
     background-color: var(--light-color);
 }

 .blog-content-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 3rem;
     padding-bottom: 2rem;
 }

 .blog-description-title {
     font-family: "Playfair Display", serif;
     font-size: 3rem;
     color: var(--primary-color);
     font-weight: 400;
     margin: 0;
 }

 .blog-share-horizontal {
     display: flex;
     align-items: center;
     gap: 2rem;
 }

 .share-label {
     font-family: "Poppins", sans-serif;
     font-size: 1.2rem;
     font-weight: 600;
     color: var(--primary-color);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .share-icons-horizontal {
     display: flex;
     gap: 1rem;
     align-items: center;
 }

 .share-icon-horizontal {
     width: 3.8rem;
     height: 3.8rem;
     border-radius: 50%;
     background-color: transparent;
     border: 1px solid #eee;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     font-size: 1.4rem;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .share-icon-horizontal:hover {
     background-color: var(--primary-color);
     color: white;
     transform: scale(1.1);
     border-color: var(--primary-color);
 }

 /* Article Text Content */
 .blog-article-text {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .blog-article-text p {
     font-size: 1.4rem;
     line-height: 1.8;
     color: var(--dark-color);
     font-weight: 300;
     text-align: justify;
     margin: 0;
 }

 /* Responsive Design for Blog Detail */


 @media (max-width: 992px) {
     .blog-hero-featured-image {
         height: 30rem;
     }

     .blog-content-section {
         padding: 13rem 0 5rem;
     }

     .blog-share-horizontal {
         align-self: flex-end;
     }
 }

 @media (max-width: 768px) {
     .blog-detail-hero-integrated {
         padding: 10rem 0 25rem;
     }

     .blog-hero-title {
         font-size: 3.5rem;
     }

     .blog-hero-title-section {
         margin-bottom: 3rem;
     }

     .blog-hero-featured-image {
         height: 280px;
         border-radius: 2rem;
     }

     .blog-content-section {
         padding: 15rem 0 5rem;
     }

     .blog-description-title {
         font-size: 2.5rem;
     }

     .blog-share-horizontal {
         align-self: center;
     }

     .blog-article-text p {
         font-size: 1.3rem;
         text-align: left;
     }
 }

 @media (max-width: 576px) {
     .blog-hero-title {
         font-size: 2.8rem;
     }

     .blog-hero-featured-image {
         height: 250px;
         border-radius: 1.5rem;
     }

     .blog-description-title {
         font-size: 2.2rem;
     }

     .blog-article-text p {
         font-size: 1.2rem;
     }

     .blog-content-section {
         padding: 12rem 0 4rem;
     }

     .share-icons-horizontal {
         gap: 0.8rem;
     }

     .blog-share-horizontal {
         gap: 1.5rem;
         flex-direction: column;
         align-items: center;
     }

     .blog-content-header {
         flex-direction: column;
         justify-content: center;
         align-items: center;
         gap: 1rem;
     }
 }


 /* ------------------------------------ */

 /* Service Detail Hero Section */
 .service-detail-hero {
     position: relative;
     overflow: hidden;
     height: 50vh;
     min-height: 350px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Blurred background */
 .service-detail-hero::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('/images/massage-service-hero.jpg') center/cover no-repeat;
     filter: blur(3px);
     z-index: 0;
 }

 /* Gradient overlay */
 .service-detail-hero::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(rgba(224, 97, 0, 0.4), rgba(224, 97, 0, 0.4));
     z-index: 1;
 }

 /* Content above layers */
 .service-detail-hero>* {
     position: relative;
     z-index: 2;
 }

 .service-hero-content {
     text-align: center;
     width: 100%;
 }

 .service-hero-title {
     font-family: "Playfair Display", serif;
     font-size: 6rem;
     font-weight: 400;
     color: white;
     margin: 0;
     text-align:center;
 }

 /* Service Detail Content Section */
 .service-detail-content {
     padding: 8rem 0;
     background-color: var(--light-color);
 }

 .service-detail-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6rem;
     align-items: flex-start;
 }

 /* Left Side - Service Image */
 .service-detail-image {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .service-image-oval {
     width: 100%;
     max-width: 450px;
     height: 350px;
     overflow: hidden;
     border-radius: 50%;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
 }

 .service-image-oval img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Right Side - Service Information */
 .service-detail-info {
     display: flex;
     flex-direction: column;
     gap: 3rem;
 }

 /* Description Section */
 .service-section-title {
     font-family: "Playfair Display", serif;
     font-size: 3rem;
     color: var(--primary-color);
     font-weight: 400;
     margin-bottom: 1.5rem;
 }

 .service-description-text {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .service-description-text p {
     font-size: 1.3rem;
     line-height: 1.7;
     color: var(--dark-color);
     font-weight: 300;
     text-align: justify;
     margin: 0;
 }

 /* Include and Exclude Section */
 .include-exclude-section {
     margin-top: 2rem;
 }

 .include-exclude-title {
     font-family: "Playfair Display", serif;
     font-size: 2.5rem;
     color: var(--primary-color);
     font-weight: 400;
     margin-bottom: 2rem;
 }

 .include-exclude-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
 }

 .include-exclude-column,
 .exclude-exclude-column {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .include-item,
 .exclude-item {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     font-size: 1.2rem;
     color: var(--dark-color);
     font-weight: 400;
 }

 .include-icon {
     color: var(--primary-color);
     font-size: 1.8rem;
 }

 .exclude-icon {
     color: var(--primary-color);
     font-size: 1.8rem;
 }

 /* Service Booking Section */
 .service-booking-section {
     margin-top: 3rem;
     padding-top: 2rem;
     border-top: 1px solid #eee;
 }

 .service-price {
     margin-bottom: 3rem;
     position: relative;
 }

 .service-price img {
     position: absolute;
     top: 0rem;
     left: 0;
     width: 13rem;
     height: 110%;
 }

 .price-amount {
     font-family: "Playfair Display", serif;
     font-size: 4rem;
     color: var(--primary-color);
     font-weight: 500;
 }

 .price-duration {
     font-size: 1.4rem;
     color: var(--dark-color);
     font-weight: 400;
     margin-left: 0.5rem;
 }

 .booking-actions {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .service-book-btn {
     background-color: var(--primary-color);
     color: white;
     font-size: 1.1rem;
     font-weight: 500;
     padding: 1.5rem 3.5rem;
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     transition: all 0.3s ease;
 }

 .service-book-btn:hover {
     background-color: #d4622b;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(224, 97, 0, 0.3);
     color: white;
 }

 .service-share {
     display: flex;
     align-items: center;
     gap: 1.5rem;
 }

 .service-share-label {
     font-family: "Poppins", sans-serif;
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--primary-color);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .service-share-icons {
     display: flex;
     gap: 0.8rem;
     align-items: center;
 }

 .service-share-icon {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background-color: transparent;
     border: 1px solid #eee;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     font-size: 1.3rem;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .service-share-icon:hover {
     background-color: var(--primary-color);
     color: white;
     transform: scale(1.1);
     border-color: var(--primary-color);
 }

 /* Responsive Design for Service Detail */
 @media (max-width: 1200px) {
     .service-detail-layout {
         gap: 4rem;
     }
 }

 @media (max-width: 992px) {

     .service-detail-layout {
         grid-template-columns: 1fr;
         gap: 0;
         text-align: center;
     }

     .service-image-oval {
         max-width: 400px;
         height: 320px;
     }

     .service-detail-info {
         align-items: center;
         text-align: center;
     }

     .service-description-text p {
         text-align: center;
     }


     .booking-actions {
         justify-content: center;
         flex-direction: column;
         align-items: center;
     }
 }

 @media (max-width: 768px) {
     .service-detail-hero {
         height: 40vh;
         min-height: 300px;
         background-attachment: scroll;
     }

     .service-hero-title {
         font-size: 4rem;
     }

     .service-detail-content {
         padding: 6rem 0;
     }




     .price-amount {
         font-size: 3.5rem;
     }
 }

 @media (max-width: 576px) {
     .service-hero-title {
         font-size: 6rem;
     }

     .service-image-oval {
         max-width: 300px;
         height: 240px;
     }



     .service-description-text p {
         font-size: 1.2rem;
         text-align: left;
     }



     .price-amount {
         font-size: 3rem;
     }

     .service-book-btn {
         padding: 1.2rem 2.5rem;
         font-size: 1rem;
         margin-bottom: 1rem;
     }

     .booking-actions {
         gap: 1.5rem;
     }

     .service-share {
         gap: 1rem;
     }

     .service-share-icons {
         gap: 0.6rem;
     }
 }

 /* Book Now Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
    box-sizing: border-box;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 2.5rem;
    max-width: 90rem;
    width: 97%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background-color: #f5f5f5;
}

.modal-content {
    padding: 4rem 3rem 3rem;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap:2rem
}

.modal-header {
    text-align: left;
    margin-bottom: 2rem;
}

.modal-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1rem;
    position: relative;
}

.modal-title-underline {
    margin-bottom: 1rem;
}

.modal-title-underline img {
    width: 100%;
    max-width: 20rem;
}

.modal-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--dark-color);
    font-weight: 300;
    margin-bottom: 3rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
}

.modal-form-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-input-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.modal-form-input,
.modal-form-select,
.modal-form-textarea {
    padding: 0.2rem 1rem;
    border: none;
    border-radius: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    font-size: 1.3rem;
    color: var(--dark-color);
    font-family: "Poppins", sans-serif;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-form-input:focus,
.modal-form-select:focus,
.modal-form-textarea:focus {
    border-bottom-color: var(--primary-color);
}

.modal-form-textarea {
    resize: vertical;
    border-radius: 0.75rem;
}

/* Phone Input with Country Code */
.modal-phone-input-wrapper {
    display: flex;
    align-items: center;
    border-radius: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.modal-phone-input-wrapper:focus-within {
    border-bottom-color: var(--primary-color);
}

.modal-country-code {
    border: none;
    background: transparent;
    font-size: 1.3rem;
    color: var(--primary-color);
    padding: 1.2rem 1rem;
    outline: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

.modal-phone-input {
    flex: 1;
    border: none;
    border-bottom: none;
    background: transparent;
    padding: 1.2rem 0.5rem 1.2rem 0;
}

/* Select Dropdown */
.modal-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E06100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.modal-form-select option {
    padding: 1rem;
    font-size: 1.3rem;
    background: white;
    color: var(--dark-color);
}

/* Submit Button */
.modal-submit-btn {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    font-family: "Poppins", sans-serif;
}


/* Responsive Design for Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 3rem 2rem 2rem;
        grid-template-columns: 1fr;
    }
    
    .modal-title {
        font-size: 3rem;
    }
    
    .modal-form {
        gap: 1.5rem;
    }
    
    .modal-form-input,
    .modal-form-select,
    .modal-form-textarea,
    .modal-country-code {
        font-size: 1.2rem;
        padding: 0.2rem 0.8rem;
    }
    
    .modal-submit-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .modal-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
    }
}
.brand img{
    width:50px;
    height:50px

}
.brand-footer img{
    width:100px;
    height:100px

}

/* Duration Price Table Styling */
.service-durations-table {
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
}

.duration-price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
    font-family: "Poppins", sans-serif;
}

.duration-price-table thead {
    background: linear-gradient(135deg, var(--primary-color), #f4a261);
    color: white;
}

.duration-price-table thead th {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
}

.duration-price-table thead th:first-child {
    border-top-left-radius: 15px;
}

.duration-price-table thead th:last-child {
    border-top-right-radius: 15px;
}

.duration-price-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.duration-price-table tbody tr:hover {
    background: linear-gradient(135deg, #fff5f0, #fcefe5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 97, 0, 0.1);
}

.duration-price-table tbody tr:last-child {
    border-bottom: none;
}

.duration-price-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.duration-price-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.duration-price-table tbody td {
    padding: 1.8rem 2rem;
    font-size: 1.3rem;
    color: #333;
    border: none;
    vertical-align: middle;
}

.duration-price-table tbody td:first-child {
    font-weight: 500;
    color: #555;
    position: relative;
}

.duration-price-table tbody td:first-child::before {
    content: "⏱️";
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.duration-price-table tbody td:last-child {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.duration-price-table tbody td:last-child::before {
    content: "💰";
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .duration-price-table {
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .duration-price-table thead th,
    .duration-price-table tbody td {
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
    }
    
    .duration-price-table thead th {
        font-size: 1.2rem;
    }
    
    .duration-price-table tbody td:last-child {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .service-durations-table {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .duration-price-table {
        border-radius: 8px;
    }
    
    .duration-price-table thead th,
    .duration-price-table tbody td {
        padding: 1rem 0.8rem;
        font-size: 1rem;
    }
    
    .duration-price-table thead th {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }
    
    .duration-price-table tbody td:last-child {
        font-size: 1.1rem;
    }
    
    .duration-price-table tbody td:first-child::before,
    .duration-price-table tbody td:last-child::before {
        display: none;
    }
}