
.logo{
  width: 70px;
  height: 50px;
}

/* Hero Section */
.hero {
  background-color: #0e384c;
  color: #fff;
  padding: 80px 20px; /* thoda flexible */
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero h1 span {
  color: #ff6f61; /* Highlight keyword */
}
.hero p {
  font-size: 1.2rem;
  margin-top: 18px;
  margin-bottom: 30px;
  font-weight: 400;
  color: rgba(255,255,255,0.9); /* subtle greyish white */
  max-width: 520px;
}
.btn-main {
  background: linear-gradient(90deg, #ff6f61, #e63946);
  border: none;
  padding: 14px 34px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 35px;
  color: #fff;
  box-shadow: 0px 5px 14px rgba(0,0,0,0.25);
  transition: all 0.3s ease-in-out;
}
.btn-main:hover {
  background: linear-gradient(90deg, #e85a4f, #d62828);
  transform: translateY(-3px);
  box-shadow: 0px 8px 18px rgba(0,0,0,0.3);
  color: #fff;
}
.hero img {
  max-width: 100%;
  border-radius: 20px;
}

/* 🔹 Responsive Adjustments */
@media (max-width: 992px) { /* Tablet & below */
  .hero {
    padding: 60px 20px;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-main {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

@media (max-width: 576px) { /* Mobile */
  .hero {
    padding: 50px 15px;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn-main {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

.reviewshero{
    background-color: white;
    padding: 10px;
}

.services {
  background: #f9f9f9;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e384c;
}
.service-card p{
    padding: 12px 16px;
}
.section-title span {
  color: #e63946;
}
.section-subtitle {
  font-size: 1rem;
  color: #666;
}
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
  padding-bottom: 15px;
}
.service-card img{
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}
.btn-group-custom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: nowrap; /* Force same row */
}
.btn-enquiry {
  background: #0e384c;
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-enquiry:hover {
  background: #07222f;
  color: #fff;
}
.btn-book {
  background: #e63946;
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-book:hover {
  background: #b71c1c;
  color: #fff;
}

/* ✅ Media Query to force buttons in same row on small devices */
@media (max-width: 576px) {
  .btn-group-custom {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .btn-enquiry, .btn-book {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}


.cta-section {
  background: linear-gradient(135deg, #ff6f61, #e63946);
  color: #fff;
  padding: 60px 20px;
}
.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-title span {
  color: #ffd166; /* Yellow highlight */
}
.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}
.btn-cta {
  background: white;
  color: #0e384c;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 40px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.25);
}
.btn-cta:hover {
  background: #fff;
  color: #e63946;
  transform: translateY(-4px);
  box-shadow: 0px 8px 22px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .btn-cta {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

.why-us {
  background: #f9f9f9;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e384c;
}
.section-title span {
  color: #e63946;
}
.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}
.why-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 28px rgba(0,0,0,0.2);
}
.why-card .icon {
  font-size: 2.5rem;
  color: #e63946;
  background: #ffe0e3;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}
.why-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #0e384c;
}
.why-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .why-card {
    padding: 20px;
  }
}


.footer {
  background: #0e384c;
  color: #fff;
}
.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-title span {
  color: #e63946;
}
.footer-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}
.footer-subtitle {
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffd166;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #e63946;
  padding-left: 4px;
}
.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: #e63946;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.social-icons a:hover {
  background: #ffd166;
  color: #0e384c;
}
.footer-divider {
  border-color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .footer-title {
    font-size: 1.5rem;
  }
  .footer-subtitle {
    font-size: 1rem;
  }
}

.sticky-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.sticky-buttons a {
  width: 65px !important;
  height: 65px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;

}
.sticky-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.whatsapp-btn {
  background: #25d366;
}
.call-btn {
  background: #e63946;
}
@media (max-width: 576px) {
  .sticky-buttons a {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

.contact-section {
  background: #f9f9f9;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e384c;
}
.section-title span {
  color: #e63946;
}
.section-subtitle {
  font-size: 1rem;
  color: #555;
}
.contact-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}
.contact-icon {
  font-size: 2.5rem;
  color: #e63946;
  
 
  line-height: 70px;
 

}
.contact-card a {
  color: #0e384c;
  text-decoration: none;
  transition: 0.3s;
}
.contact-card a:hover {
  color: #e63946;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.map-section {
  background: #f9f9f9;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0e384c;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #555;
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .map-container iframe {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .map-container iframe {
    height: 280px;
  }
}