
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Permanent+Marker&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');




.carousel-item {
  height: 100vh;
  min-height: 300px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.carousel-caption {
  bottom: 270px;
}

.carousel-caption h5 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
}

.carousel-caption p {
  width: 75%;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
}

.navbar-light .navbar-brand {
  color: #000000;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

.navbar-toggler {
  background: #fff;
}

.navbar-nav {
  text-align: center;
}

.nav-link {
  padding: .2rem 1rem;
}

.nav-link.active,.nav-link:focus{
  color: #fff;
}

.navbar-toggler {
  padding: 1px 5px;
  font-size: 18px;
  line-height: 0.3;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: #000000;
}


#contact
{
  border-radius: 40px;
  background: rgb(30, 81, 234);
  font-size: 20px;
  text-decoration: none;
  
}
#contact:hover
{
  background: rgb(134, 228, 247);
  color: #fff;
  transition: all 0.3s ease-in-out;
}s


.link-area
{
  position:fixed;
  bottom:20px;
  left:20px;  
  padding:15px;
  border-radius:40px;
  background:tomato;
}
.link-area a
{
  text-decoration:none;
  color:#fff;
  font-size:25px;
}

.navbar-brand
{
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  text-shadow: rgb(255, 255, 255) 0.1em 0.1em 0.2em;
  
}
.nav-item
{
 font-family: "Bebas Neue", sans-serif;
 letter-spacing: 2px;
 font-size: 20px;


}

.nav-link.active, .nav-link:hover
{
  text-shadow: black 0.1em 0.1em 0.2em;
}
.nav-item:hover
{
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;

}
.hero-container h1
{
  font-family: "Bebas Neue", sans-serif;
  color: white;
  letter-spacing: 5px;
  text-shadow: black 0.2em 0.2em 0.3em;
}
.hero-container p
{
  font-family: "Bona Nova SC", serif;
  color: white;
  font-size: 25px;
  text-shadow: black 0.1em 0.1em 0.2em;
}

.about-container h2
{
  font-family: "Bebas Neue", sans-serif;
  color: #333;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow:rgb(21, 208, 233) 0.2em 0.2em 0.3em;
}
.about-container p
{
  font-family: "Bona Nova SC", serif;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}
.about-container a
{
  font-family: "Bebas Neue", sans-serif;
  color: #f5f5f5;
  background-color: rgb(2, 176, 210);
  text-decoration: none;
  letter-spacing: 3px;
  width: 150px;
}




.ourservices-container {
  background-color: rgb(2, 176, 210);
}
.ourservices-container h2{
  font-family: "Bebas Neue", sans-serif;
  color: #333;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow:rgb(0, 0, 0) 0.2em 0.2em 0.3em;
}

/* Card Design */
.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* Same Image Size */
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Card Body */
.service-card .card-body {
  padding: 20px;
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Button Style */
.service-card .btn {
  margin-top: 10px;
  border-radius: 25px;
  padding: 8px 22px;
  font-weight: 600;
}


.reviews-section {
  background: white;
}

.reviews-section h2
{
  font-family: "Bebas Neue", sans-serif;
  color: #333;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow:rgb(29, 206, 234) 0.2em 0.2em 0.3em;
}
.reviews-section p {
  font-family: "Bona Nova SC", serif;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

/* Card styling */
.review-card {
  background:linear-gradient(135deg, #02b0d2, #0dcaf0);
  border-radius: 18px;
  padding: 30px;
  height: 260px; /* ✅ fixed height */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card::before {
  content: "❝";
  font-size: 60px;
  color: #141515;
  position: absolute;
  top: -15px;
  left: 20px;
  opacity: 0.2;
}

/* Hover effect */
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

/* Text color changed to black */
.review-text {
  font-size: 1rem;
  color: #000000; /* ✅ black text */
  margin-bottom: 20px;
}

/* Footer */
.review-footer h6 {
  margin: 0;
  font-weight: 600;
  color: #000000; /* ✅ black name */
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
}

.reviews-btn {
  padding: 12px 35px;
  border-radius: 10px;
  font-family: "Bebas Neue", sans-serif;
  color: #f5f5f5;
  background-color: rgb(2, 176, 210);
  text-decoration: none;
  letter-spacing: 3px;
  width: 200px;
  transition: all 0.3s ease;
}

.reviews-btn:hover {
  background-color: #1c43f1;
  color: #ffffff;
  transform: translateY(-3px);
}


.footer-gradient {
  background: linear-gradient(135deg, #143340, #203a43, #29b6f2);
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: #00e5ff;
  padding-left: 5px;
  transition: 0.3s ease;
}

.footer p {
    font-size: 13px; /* smaller size */
    line-height: 1.6; /* better readability */
    color: #f1f1f1; /* optional: lighter color for dark footer */
}
.social-icons a {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #00e5ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}


#offcanvasTop {
  --bs-offcanvas-height: 80vh;
  background-color: #c5e1d4;
}





.rating-container {
  max-width: 420px;
  margin: auto;
  padding: 10px;
}

/* Emoji */
.rating-emoji {
  font-size: 2.5rem;
}

/* Stars */
.star-rating {
  direction: rtl;
  display: inline-flex;
  font-size: 2rem;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: #ccc;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.2s ease;
}

/* Hover & selected */
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ffc107;
}

/* Textarea */
.rating-feedback textarea {
  resize: none;
  font-size: 0.95rem;
}

/* Button */
.submit-rating {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background: rgb(30, 81, 234);
}
.submit-rating:hover {
  background: #04a4c4;
  transform: translateY(-2px);
}


.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(30, 81, 234);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  place-content: center;
}

.review-btn i {
  color: #ff9800;
}

.review-btn:hover {
  background: #04a4c4;
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .review-card {
    height: auto; /* ✅ auto height on mobile */
    padding: 25px;
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .review-card {
    padding: 25px;
  }

  .review-text {
    font-size: 0.95rem;
  }
}




@media (max-width: 768px) {
  .hero-container h1 {
    font-size: 2.3rem;
  }
  .hero-container p {
    font-size: 1.2rem;
  }
  
}
@media (max-width: 768px) {
  .about-container h2 {
    margin-top: 20px;
  }
  
}



/* 📱 Mobile adjustments */
@media (max-width: 576px) {
  .rating-emoji {
    font-size: 2rem;
  }

  .star-rating {
    font-size: 1.6rem;
  }

  .rating-title {
    font-size: 1.1rem;
  }
}









.neo-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.neo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.neo-img {
  height: 220px;
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  overflow: hidden;
  background: #71aae2;
}

.neo-img img {
  width: 200px;
  height: 180px;
  object-fit: cover;   /* keeps image ratio nicely */
  transition: transform 0.6s ease;
}


.neo-card:hover img {
  transform: scale(1.08);
}

.neo-body {
  padding: 25px;
  text-align: center;
  background: #d6f6fa;
}

.neo-body h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.neo-body p {
  color: #050505;
  font-size: 15px;
  margin-bottom: 20px;
}

.neo-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0d6efd, #0bbcd6);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.neo-btn:hover {
  background: linear-gradient(135deg, #0bbcd6, #0d6efd);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .neo-img {
    height: 180px;
  }
}




@media (max-width: 576px) {
    .btn.whatsapp {
        font-size: 14px;
        padding: 8px 0;
    }
}
