@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&amp;family=Poppins:wght@300;400&amp;display=swap");

/*---------------------------------
  GLOBAL STYLES & VARIABLES
---------------------------------*/
:root {
  --primary-color: #040404; /* Gold */
  --secondary-color: #f5e6e8; /* Soft Pink */
  --dark-color: #1a1a1a;
  --light-color: #fff;
  --text-color: #555;
  --font-primary: "Lora", serif;
  --font-secondary: "Poppins", sans-serif;
  --transition-speed: 0.4s;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--dark-color);
  font-weight: 700;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark-color);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 800;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 25%;
  height: 3px;
  background-color: #d1ae30;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.btn-brand {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 400;
  border: 2px solid #d1ae30;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: #d1ae30;
}

.btn-brand-outline {
  background-color: black;
  color: #fff;
  border: 2px solid #d1ae30;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn-brand-outline:hover {
  background-color: #d1ae30;
  color: var(--light-color);
}

/*---------------------------------
  NAVIGATION BAR
---------------------------------*/
.navbar {
  transition: all 0.4s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0 0;
}

.navbar.scrolled .nav-link {
  color: var(--dark-color);
}

.navbar .navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--dark-color);
}

.navbar .nav-link {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 10px;
  color: #000000 !important;
  position: relative;
}


.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.quick-contact .btn {
  margin-left: 10px;
}

/*---------------------------------
  HERO SECTION
---------------------------------*/
#heroCarousel .carousel-item {
  height: 100vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
}
#heroCarousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}
.carousel-custom-caption {
  width: 100%;
  left: 50%;
  position: absolute;
  top: 54%;
  transform: translate(-50%, -50%);
}
.hero-section h1 {
  font-size: 4rem;
  color: var(--light-color);
}

.hero-section .tagline {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 500px;
  margin: 20px 0 30px;
}

.hero-section .btn {
  margin-right: 10px;
}

/*---------------------------------
  SERVICE CARD
---------------------------------*/
.service-card {
  background: linear-gradient(rgb(239 21 21), rgb(225 210 28)), 
    url("../assets/images/tstm-bnr.png");
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Top image */
.service-card .card-img {
  overflow: hidden;
  border-radius: 12px;
}

.service-card .card-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 100%;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.08);
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color, #333);
  transition: color 0.3s ease;
  padding-left: 1rem;
}

.service-card:hover h4 {
  color: var(--text-color);
}

/* Text */
.service-card .service-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}
/*---------------------------------
  PACKAGE CARD
---------------------------------*/
.package-card {
  border: 1px solid #eee;
  padding: 40px 30px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.package-name {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.package-card ul li {
  margin-bottom: 10px;
  color: #6c757d;
}

.package-card ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.package-card ul li i.fa-times {
  color: #ccc;
}

.package-card.highlighted {
  background-color: var(--dark-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.package-card.highlighted .package-name,
.package-card.highlighted h4 {
  color: var(--light-color);
}

.package-card.highlighted ul li {
  color: rgba(255, 255, 255, 0.8);
}

.highlight-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
}

/*---------------------------------
  GALLERY
---------------------------------*/
.gallery-img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 450px;
  transition: all 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-in:hover .gallery-img:not(:hover) {
  filter: blur(3px);
  opacity: 0.7;
}

/*---------------------------------
  Portfolio
---------------------------------*/
#port {
  background: #fff;
}

#port .section-title,
#port p {
  color: #3d2803;
}

#port .section-title::after {
  background-color: var(--primary-color);
}

.port-card {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 30px;
}

.port-card img {
  width: 800px;
  height: 400px;
  border-radius: "";
  object-fit: cover;
  border: 2px solid #d1ae30;
  margin-bottom: 20px;
}

.port-card .quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ddd;
}

.port-card .name {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--light-color);
  margin-top: 10px;
}
.port-card .ratings {
  color: #f39c12;
}

#port button {
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 30px;
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
}


/*---------------------------------
  TESTIMONIALS
---------------------------------*/
#testimonials {
  background:linear-gradient(rgb(239 21 21), rgb(225 210 28)), 
    url("../assets/images/tstm-bnr.png") center center/cover no-repeat fixed;
}

#testimonials .section-title,
#testimonials p {
  color: var(--light-color);
}

#testimonials .section-title::after {
  background-color: var(--primary-color);
}

.testimonial-card {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 30px;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  margin-bottom: 20px;
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ddd;
}

.testimonial-card .name {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--light-color);
  margin-top: 10px;
}
.testimonial-card .ratings {
  color: #f39c12;
}

#testimonialCarousel button {
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 30px;
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/*---------------------------------
  CONTACT & FORM
---------------------------------*/
.contact-form .form-control {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}
.contact-info p {
  display: flex;
  align-items: center;
}
.contact-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 15px;
  width: 20px;
}
.google-map iframe {
  border-radius: 10px;
}

/*---------------------------------
  FOOTER
---------------------------------*/
.footer-bg {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  color: var(--light-color);
  font-family: var(--font-primary);
  margin-bottom: 20px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 10px;
}

.footer-links li a:hover {
  color: var(--primary-color);
}

.footer-contact li {
  margin-bottom: 10px;
}
.footer-contact i {
  margin-right: 10px;
  color: #d1ae30;
}

.social-icons a {
  color: #d1ae30;
  font-size: 1.5rem;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-color);
  border-radius: 50%;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--dark-color);
}

.copyright-text {
  background-color: #111;
  color: rgba(255, 255, 255, 0.5);
}

.copyright-text p {
  margin: 0;
}

/*---------------------------------
  FLOATING & BACK TO TOP BUTTONS
---------------------------------*/
.floating-buttons {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-btn:hover {
  background-color: #a15a64;
  transform: scale(1.1);
  color: white;
}

.whatsapp-btn {
  background-color: #25d366;
}
.whatsapp-btn:hover {
  background-color: #128c7e;
}

.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--text-color);
  color: white;
  border-radius: 50%;
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s, transform 0.4s;
  z-index: 1030;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top-btn.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/*---------------------------------
  RESPONSIVENESS
---------------------------------*/
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--light-color);
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
  }
  .navbar .nav-link {
    color: var(--dark-color);
    width: fit-content;
    margin: 0 auto;
  }
  .quick-contact {
    margin-top: 15px;
  }
  .hero-section {
    text-align: center;
  }
  .hero-section h1 {
    font-size: 3rem;
  }
  .hero-section .tagline {
    margin: 20px auto 30px;
  }
  .contact-form {
    margin-bottom: 30px;
  }
  #testimonialCarousel button {
    display: none;
  
}

/*New Css*/


.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  outline: none;
  cursor: pointer;
  background: #d4af37;
  color: #000;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f1f1f1;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  padding: 0 15px;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* '+' ko '–' me badal dega */
}
/*.wcs-sec1 {*/
/*    background: #d4af37;*/
/*    padding: 20px 20px 20px 20px;*/
/*    border-radius: 10px 10px 10px 10px;*/
/*}*/
/*.wcs-sec1 p {*/
/*    color: #fff;*/
/*}*/

/*.wcs-sec1 h5 {*/
/*    font-size: 22px;*/
/*}*/


.wcus-tp-sec {
  padding: 80px 0;
  background: #fffafc;
}

.wcus-tp-sec .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
  text-transform: uppercase;
  position: relative;
}

.wcus-tp-sec .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 10px auto 0;
  border-radius: 2px;
}

.wcs-sec1 {
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  min-height: 230px;
}

.wcs-sec1 h5 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.wcs-sec1 p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Hover Effect */
.wcs-sec1:hover {
  background: #d4af37;
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
}

.wcs-sec1:hover h5,
.wcs-sec1:hover p {
  color: #fff;
}

/* Responsive Padding */
@media (max-width: 991px) {
  .wcus-tp-sec {
    padding: 60px 0;
  }
  .wcs-sec1 {
    padding: 25px 20px;
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .wcs-sec1 {
    margin-bottom: 20px;
  }
}

.services-sec {
  padding: 80px 0;
  background: #fffafc;
}

.services-sec .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #c2185b;
  text-transform: uppercase;
  position: relative;
}

.services-sec .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #c2185b;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Card */
.srv-sec {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
  text-align: center;
  cursor: pointer;
}

.srv-sec:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 25px rgba(194, 24, 91, 0.3);
}

/* Image wrapper */
.srv-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.srv-sec img {
    border-radius: 15px 15px 15px 15px;
}

.srv-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all 0.6s ease;
}

/* Overlay */
.srv-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(194, 24, 91, 0.4);
  opacity: 0;
  transition: all 0.6s ease;
  border-radius: 15px 15px 0 0;
}

/* Hover Effects */
.srv-sec:hover .srv-img img {
  transform: scale(1.1);
  filter: brightness(85%);
}

.srv-sec:hover .overlay {
  opacity: 1;
}

.srv-sec p {
  font-size: 15px;
  color: #555;
  padding: 20px;
  margin: 0;
  transition: color 0.4s ease;
}

.srv-sec:hover p {
  color: #c2185b;
}
.srv-sec {
    margin-bottom: 45px;
}

/* Responsive */
@media (max-width: 991px) {
  .srv-img img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .srv-img img {
    height: 200px;
  }
}


.tips-sec {
  padding: 80px 0;
  background: #fffafc;
}

.tips-sec .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.tips-sec .section-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 50px;
}

.tip-card {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 35px 25px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.tip-card i {
  font-size: 40px;
  color: #c2185b;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.tip-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.tip-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  transition: all 0.4s ease;
}

/* Hover Effects */
.tip-card:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(194, 24, 91, 0.4);
}

.tip-card:hover i,
.tip-card:hover h5,
.tip-card:hover p {
  color: #fff;
  transform: scale(1.05);
}

/* Small glow overlay effect */
.tip-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transition: all 0.5s ease;
}

.tip-card:hover::before {
  top: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .tips-sec {
    padding: 60px 0;
  }
  .tip-card {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .tip-card {
    margin-bottom: 20px;
  }
}


.bridal-transform, .trust-section {
  padding: 70px 0;
  background-color: #fff9f9;
}

.bridal-transform img,
.trust-section img {
  transition: all 0.6s ease;
  border-radius: 15px;
}

.bridal-transform img:hover,
.trust-section img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.bridal-transform p,
.trust-section p {
  color: #444;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

a.bn-wed {
    background: #d4af37;
    color: #fff;
    padding: 15px 42px 19px 40px;
    border-radius: 50px 50px 50px 50px;
    margin-top: 24px;
}

@media (max-width: 576px){
    
    .bridal-transform img, .trust-section img{
        margin-top:35px;
        
    }
}

/* Container for the images */
.pnt-sec {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px; /* Space between items */
}

/* Image styling */
.nail-img {
    width: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: blur(0px); /* Initially no blur */
    transform: scale(1); /* Keep images at normal size */
    object-fit: cover; /* Ensure image covers the space properly */
}

/* When hovering over any image, the others should blur */
.pnt-sec:hover .nail-img {
    filter: blur(5px); /* Blur all images on hover */
}

/* When hovering over an image, that image stays in focus */
.pnt-sec:hover .nail-img:hover {
    filter: blur(0px); /* Remove blur from the hovered image */
    transform: scale(1.05); /* Optional: slightly zoom in on the hovered image */
}

/* Optional: Add a nice border to the images */
.pnt-sec img {
    border-radius: 8px;
}

/* Center the paragraph below the image */
.pnt-sec p {
    text-align: center;
    margin-top: 10px;
}

/* Responsive layout for smaller screens */
@media (max-width: 767px) {
    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .col-md-3 {
        width: 100%; /* Full width for each item on small screens */
        margin-bottom: 20px; /* Space between images */
    }

    .pnt-sec {
        padding: 0 10px; /* Add padding to ensure images don't touch the sides */
    }
    
}

/* Larger screens (tablet and desktop) */
@media (min-width: 768px) {
    .col-md-3 {
        width: 25%; /* 4 images per row on medium to large screens */
    }
}

/*.ornl-sec {*/
/*    background: #d4af37;*/
/*    color: #fff;*/
/*    padding: 24px 25px 29px 26px;*/
/*    border-radius: 15px 15px 15px 15px;*/
/*}*/

/* Basic styling for each section */
.ornl-sec {
    padding: 20px;
    background-color: #ffffff; /* Initial background color */
    border-radius: 8px;        /* Rounded corners for a modern look */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    text-align: center;         /* Center text in each section */
    transition: all 0.3s ease;  /* Smooth transition for background and shadow */
}

/* Hover effect: Change background color to #d4af37 (gold) */
.ornl-sec:hover {
    background-color: #d4af37;   /* Gold background on hover */
    transform: translateY(-5px);  /* Slight lift effect */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

/* Text styling for h3 inside .ornl-sec */
.ornl-sec h3 {
    font-size: 18px;             /* Set font size */
    color: #333;                 /* Default text color */
    font-weight: 600;            /* Bold text */
    margin-bottom: 10px;         /* Space between heading and paragraph */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

/* Change h3 text color on hover */
.ornl-sec:hover h3 {
    color: #ffffff; /* White text color on hover for contrast */
}

/* Styling for paragraph inside .ornl-sec */
.ornl-sec p {
    font-size: 14px;
    color: #555;         /* Soft grey color for paragraph text */
    line-height: 1.5;     /* Improve readability */
    margin-top: 0;        /* Remove top margin */
    margin-bottom: 15px;  /* Add space at the bottom of the paragraph */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

/* Change paragraph text color on hover */
.ornl-sec:hover p {
    color: #fff; /* Change paragraph text color to white on hover */
}

/* Optional: Add some margin to the row */
.row {
    margin-top: 30px; /* Space between sections */
}


/* Styling for the unique text section */
.nail-text-container {
    padding: 30px;               /* Increased padding for better spacing */
    background-color: #f9f9f9;   /* Light gray background */
    border-radius: 12px;         /* Rounded corners for soft edges */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Larger shadow for depth */
    transition: all 0.3s ease;   /* Smooth transition for hover effect */
    height:100%;
}

.nail-text-container:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
    transform: translateY(-5px); /* Slight lift effect on hover */
}

/* Styling for the section title */
.nail-section-title {
    font-size: 28px;             /* Larger font size for the title */
    color: #333;                 /* Dark text color */
    font-weight: 700;            /* Bold heading */
    margin-bottom: 20px;         /* Space below the heading */
}

/* Styling for the list of points */
.nail-points-list {
    list-style-type: none;       /* Remove default list bullets */
    padding-left: 0;            
    margin-top:100px;
}

.nail-points-list li {
    font-size: 18px;             /* Font size for list items */
    color: #555;                 /* Softer gray color for text */
    margin-bottom: 12px;         /* Space between each list item */
    line-height: 1.7;            /* Line height for readability */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.nail-points-list li strong {
    font-weight: 600;            /* Bold the point text */
}

.nail-points-list li:hover {
    color: #d4af37;              /* Gold color on hover for list items */
}

/* Styling for the image container */
.nail-image-container {
    position: relative;
    overflow: hidden;            /* Ensures the image stays within bounds */
    border-radius: 12px;         /* Rounded corners for the container */
}

/* Styling for the image */
.nail-image {
    width: 100%;                 /* Make the image responsive */
    border-radius: 12px;         /* Rounded corners for the image */
    transition: transform 0.3s ease; /* Smooth zoom effect on hover */
}

.nail-image-container:hover .nail-image {
    transform: scale(1.1);       /* Larger zoom on hover */
}

/* Ensure responsive layout for mobile */
@media (max-width: 767px) {
    .row {
        flex-direction: column;   /* Stack the columns vertically on mobile */
    }

    .nail-text-container {
        margin-bottom: 20px;      /* Add space below text section */
    }

    .nail-section-title {
        font-size: 24px;          /* Smaller font size for heading on mobile */
    }

    .nail-points-list li {
        font-size: 16px;          /* Smaller font size for list items */
    }
}



.faq-section {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.faq {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    background-color: #d4af37;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-icon {
    font-size: 20px;
    color: #d4af37;
}

.faq-question {
    flex-grow: 1;
    margin-left: 10px;
    font-size: 1.1em;
}

.faq-content {
    background-color: #f9f9f9;
    padding: 15px;
    display: none;
    font-size: 1em;
}

.faq-content p {
    margin: 0;
}

.faq-header:hover {
    background: #fff;
}


.nail-extension-service {
    background-color: #f9f9f9;
    padding: 40px;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: 2em;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-specification {
    font-size: 1.3em;
    color: #d4af37;
    margin-bottom: 10px;
}

.specification-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.specification-list li {
    font-size: 1.1em;
    color: #333;
    margin: 5px 0;
}

.contact-buttons {
    text-align: center;
}

.call-button,
.book-button {
    display: inline-block;
    background-color: #d4af37;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.call-button:hover,
.book-button:hover {
    background-color: #b38f29;
}

.call-button i,
.book-button i {
    margin-right: 8px;
}

