/* Animate.css CDN recommended for smooth animations */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

*{
    font-family: Marcellus;
}
.banner-text h1 {
  font-size: 3rem;
  font-weight: 700;
}

.banner-text p {
  font-size: 1.5rem;
}

.card img {
  height: 250px;
  object-fit: cover;
}

#testimonials .card {
  border: none;
  background: #fff;
}

/* text */
#highlight h1 {
  font-size: 3rem;           /* Bada font */
  letter-spacing: 2px;       /* Space between letters */
  text-transform: uppercase; /* Uppercase for bold look */
  line-height: 1.2;          /* Single line spacing */
  animation: fadeInHighlight 2s ease-in-out;
}

@media (max-width: 768px) {
  #highlight h1 {
    font-size: 2rem;         /* Mobile me thoda chhota */
  }
}

@keyframes fadeInHighlight {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* number counter */
#stats {
  position: relative;
  overflow: hidden;
}

#stats .circle-stat {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-top: -50px;
}

#stats h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

#stats .counter {
  font-size: 3rem;
}
.circle-stat {
  width: 200px;                /* Circle width */
  height: 200px;               /* Circle height */
  border-radius: 50%;          /* Makes it a circle */
  background: #fff;            /* White background */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);  /* Smooth shadow */
  display: flex;               /* Center contents */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}

.circle-stat:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.circle-stat h1 {
  font-size: 3rem;
  color: #000;
}

.circle-stat p {
  font-size: 0.9rem;
  color: #444;
  letter-spacing: 1px;
}

/* end */
.fontsize{
    font-size: 3rem;
}
.gallery-item {
  height: 250px; /* equal height for all images */
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures equal size and crops if needed */
  transition: transform 0.5s, filter 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1); /* zoom effect on hover */
  filter: brightness(1.1); /* slightly brighter on hover */
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-item {
    height: 200px; /* smaller height on tablets/mobiles */
  }
}
.golden-border {
  border: 3px solid #ffd900; /* golden yellow border */
  border-radius: 30px 0px;
  transition: transform 0.5s, filter 0.5s, box-shadow 0.5s;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.golden-border:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
  cursor: pointer;
}

@media (max-width: 768px) {
  .golden-border {
    height: 200px; 
  }
}
/* about us */
.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s, box-shadow 0.5s;
  border-radius: 50px 50px;
}

.about-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .about-img img {
    height: 300px;
  }

  #about h3 {
    font-size: 28px;
  }
}
 /* Animate.css CDN for animation */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Button Styling */
#about .btn {
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#about .btn-primary {
  background-color: #007bff;
  border: none;
}

#about .btn-primary:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

#about .btn-success {
  background-color: #07aa66;
  border: none;
}

#about .btn-success:hover {
  background-color: #059854;
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #about .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
/* service */

.book-btn {
  display: block;       /* center align */
  width: 180px;         /* button width adjust */
  margin: 20px auto 0;  /* center + top margin */
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}


/*why */

#why-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

#why-us p {
  font-size: 1rem;
  color: #555;
}

#why-us .card i {
  color: #ffc107; /* yellow like in screenshot */
}

#why-us .card h6 {
  font-weight: 600;
}

#why-us .card p {
  font-size: 0.9rem;
  color: #666;
}


/* testimonial */
#testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  color: #07aa66;
  margin-bottom: 40px;
}

/* Review Card Styling */
.review-card {
  border-radius: 15px;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.review-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-card h6 {
  font-weight: 600;
  color: #333;
}

.review-stars {
  font-size: 18px;
  color: #FFD700; /* Google gold stars */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #testimonials .col-sm-6 {
    margin-bottom: 20px;
  }
}


/* hero */
#hero {
  background: url('../images/gallery3.jpg') center center/cover no-repeat;
  min-height: 70vh;
  position: relative;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay */
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

#hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

#hero .btn-warning {
  background-color: #ffc107;
  border: none;
  transition: all 0.3s ease;
}

#hero .btn-warning:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

#hero .btn-outline-warning {
  border: 2px solid #ffc107;
  transition: all 0.3s ease;
}

#hero .btn-outline-warning:hover {
  background-color: #ffc107;
  color: #000 !important;
  transform: translateY(-2px);
}


/* footer */
.colorfooter{
  color: #ffe23d;
}

/* faq */
.faq-section .accordion-button {
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  border-radius: 0.75rem !important;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:hover {
  background-color: #f8f9fa;
  color: #000;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  background-color: #fff;
  border-radius: 0 0 0.75rem 0.75rem;
}