/* Logo */
.logo {
  height: 35px;
  object-fit: contain;
  border-radius: 2px;
}

/* Heading text */
h1 {
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
  color: white;
}

/* Subheading */
.subheading {
  font-size: 12px;
  display: block;
}

/* Navigation links */
.nav-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  color: #FFD700; /* optional hover effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo { height: 30px; }
  h1 { font-size: 16px; }
  .subheading { font-size: 11px; }
  .nav-link { font-size: 13px; }
}

@media (max-width: 576px) {
  .logo { height: 25px; }
  h1 { font-size: 14px; }
  .subheading { font-size: 10px; }
  .nav-link { font-size: 12px; padding: 5px; }
}

.hero {
  width: 100%;
  height: 180px;   /* default height */
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crops neatly */
  display: block;
}

/* Tablet screens */
@media (max-width: 768px) {
  .hero {
    height: 140px;  /* shorter banner */
  }
}

/* Mobile screens */
@media (max-width: 576px) {
  .hero {
    height: 100px;  /* even shorter for mobile */
  }
}

.about-hero {
  height: 200px;  /* desktop */
}

@media (max-width: 768px) {
  .about-hero {
    height: 160px;  /* tablet (slightly taller than 140px) */
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 120px;  /* mobile (slightly taller than 100px) */
  }
}

.gallery-section {
  background-color: #fff; /* optional background */
  padding: 50px 20px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.gallery-img {
  width: 100%;
  height: 150px;         /* uniform height for all images */
  object-fit: cover;     /* crop neatly without distortion */
  border-radius: 4px;    /* optional rounded corners */
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-img:hover {
  transform: scale(1.05);           /* zoom effect */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-img {
    height: 130px;
  }
}

@media (max-width: 576px) {
  .gallery-img {
    height: 120px;
  }
}

/* Paragraph */
.why-choose p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

/* Bullet Points */
.why-points li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #333;
}

.why-points i {
  color: #2b77d9;
  font-size: 1.2rem;
  margin-right: 8px;
}

/* Image tweaks */
.why-img {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose .row {
    text-align: center;
  }
  .why-img {
    margin-top: 20px;
    max-width: 100%;
  }
  .why-points {
    text-align: left;
    display: inline-block;
  }
}

.why-choose h2,
.why-choose h3 {
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important; /* keep small gap only */
}

.plans-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

/* Large wrapper for images */
.img-wrapper {
  width: 900px;  /* very large width */
  height: 600px; /* very large height */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.plan-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.plan-img:hover {
  transform: scale(1.05);
}

/* Bootstrap default arrows styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5); /* semi-transparent circle */
  border-radius: 50%;
  width: 60px;   /* bigger size */
  height: 60px;  /* bigger size */
  background-size: 50%, 50%; /* arrow icon size inside circle */
}

.carousel-control-prev { left: 10px; }
.carousel-control-next { right: 10px; }

/* Responsive adjustments */
@media (max-width: 1200px) {
  .img-wrapper {
    width: 80%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .img-wrapper {
    width: 90%;
    height: auto;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
}

.tips-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.tips-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2b77d9;
}

.tips-section h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}

.tips-list {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}

.tips-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Banner image below tips */
.tips-banner img {
  width: 100%;
  max-height: 250px;  /* banner type height */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tips-section {
    padding: 40px 15px;
  }
  .tips-section h2 {
    font-size: 1.8rem;
  }
  .tips-section h3 {
    font-size: 1.2rem;
  }
  .tips-banner img {
    max-height: 200px;
  }
}

@media (max-width: 576px) {
  .tips-section h2 {
    font-size: 1.5rem;
  }
  .tips-section h3 {
    font-size: 1rem;
  }
  .tips-banner img {
    max-height: 150px;
  }
}

.faq-section {
  background-color: #f8f9fa;
  padding: 50px 20px;
}

.faq-section .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.accordion-button {
  font-size: 1rem;
  font-weight: 500;
  color: #2b77d9;
}

.accordion-button:not(.collapsed) {
  background-color: #e0f0ff;
  color: #1a5bb8;
}

.accordion-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }
  .faq-section .section-title {
    font-size: 1.8rem;
  }
  .accordion-button {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq-section .section-title {
    font-size: 1.6rem;
  }
  .accordion-button {
    font-size: 0.9rem;
  }
}

.footer-section {
  background-color: #d9d9d9; /* light grey background */
  color: #333; /* dark text for readability */
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-section a {
  color: #333; /* social icons color */
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #50e3c2; /* hover effect matching theme */
}

.footer-section p {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .footer-section .col-md-4 {
    margin-bottom: 15px;
  }
}
