:root {
  --primary-color: #c9a96e;
  --secondary-color: #8b7355;
  --accent-color: #d4af37;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --bg-light: #faf8f5;
  --bg-cream: #f5f1ec;
  --success-color: #7c9d8e;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}
#heroCarousel,
.carousel-inner,
.carousel-item {
  width: 100vw;
  max-width: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
 
  font-weight: 600;
  line-height: 1.3;
}

.marquee-bar {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  padding: 12px 0;
  overflow: hidden;
  
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  padding: 0 50px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.navbar {
  background: var(--white) !important;
  box-shadow: var(--shadow);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand .brand-text {
 
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  margin: 0 5px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

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

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.carousel-item {
  height: 100vh;
  min-height: 600px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(139, 115, 85, 0.5) 100%);
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 10;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}
.carousel-caption h2 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}


.carousel-caption .lead {
  font-size: 1.3rem;
  animation: fadeInUp 1.2s ease;
}

.hero-buttons {
  animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(201, 169, 110, 0.8);
  border-radius: 50%;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.carousel-indicators button.active {
  background-color: var(--primary-color);
}

.counters-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.counter-box {
  padding: 30px;
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-10px);
}

.counter-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 15px 0;
}

.counter-box p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
}

.section-title {
  margin-bottom: 30px;
}

.subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
     font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-section .lead {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.feature-points {
  margin-top: 30px;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-point:hover {
  background: var(--bg-cream);
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.feature-content h5 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #c9a96e;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
  transform: rotateY(360deg);
}

.feature-card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-card h4 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

.services-section {
  padding: 100px 0;
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  height: 250px;
  overflow: hidden;
}

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

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button {
  background: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  padding: 20px 25px;
  font-size: 1.1rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 20px 25px;
  background: var(--white);
  color: var(--text-light);
  line-height: 1.8;
}

.faq-image img {
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 20px;
}

.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin: 20px 0;
  line-height: 1.8;
}

.client-info h5 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.client-info span {
  color: var(--primary-color);
  font-size: 0.9rem;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  background-color: var(--primary-color);
}

.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  border: 2px solid #c9a96e;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-details h5 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
}

.contact-details a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #c9a96e;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 15px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.15);
}

.footer {
  background-image: url("keya-spa-hyderabad.png"); /* your image path */
  color: var(--white);
  padding: 60px 0 0;
}

.footer-widget h3,
.footer-widget h4 {
  color: var(--white);
  margin-bottom: 25px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-tagline {
     color: white;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
     color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
     color: white;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-contact a {
    color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
     color: white;
  margin: 0;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  z-index: 1000;
  display: flex;
  gap: 15px;
}

.whatsapp-float {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

.phone-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}

.phone-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(201, 169, 110, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0);
  }
}

@media (max-width: 991px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }
   .carousel-caption h2 {
    font-size: 2.5rem;
  }

  .carousel-caption .lead {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .call-btn {
    margin-top: 15px;
    width: 100%;
  }

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

  .footer-bottom .text-md-start {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption h2 {
    font-size: 2rem;
  }
  .carousel-caption .lead {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
            margin-top: 15px;
  }

  .counters-section {
    padding: 60px 0;
  }

  .counter {
    font-size: 2.5rem;
  }

  .about-section,
  .why-choose-section,
  .services-section,
  .faq-section,
  .testimonials-section,
  .contact-section {
    padding: 60px 0;
            text-align: center;
  }

  .whatsapp-float,
  .phone-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
  }

  .whatsapp-float {
    left: 20px;
  }

  .phone-float {
    right: 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 1.5rem;
  }
  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .carousel-item {
    min-height: 500px;
  }

  .marquee-content span {
    font-size: 12px;
    padding: 0 30px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .feature-card,
  .service-card,
  .testimonial-card {
    margin-bottom: 20px;
  }
}

.fade-in {
  animation: fadeInUp 1s ease;
}

section {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.shadow {
  box-shadow: var(--shadow) !important;
}

.rounded {
  border-radius: 15px !important;
}
