input[type="text"] {
  width: 100%;
  height: 25px;
}

p.card-text {
  color: #000000;
  font-size: 17px;
}

h4.card-title {
  color: #000000;
}

/* WhatsApp & Phone Button Styling */
.Whatsapp_btn,
.Phone_btn {
  position: fixed;
  bottom: 55px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.Whatsapp_btn {
  left: 20px;
}

.Phone_btn {
  right: 20px;
}

/* Welcome Box Styling */
.welcome-box {
  background: linear-gradient(to right, #f5f7fa, #c3cfe2);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.welcome-box h2 {
  font-size: 35px;
  color: #002d62;
  font-weight: bold;
  margin-bottom: 20px;
}

.welcome-box p {
  font-size: 17px;
  line-height: 27px;
  color: #333;
  text-align: justify;
}

.welcome-box a.read-more {
  display: inline-block;
  margin-top: 15px;
  background-color: #ffd700;
  color: #002d62;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.welcome-box a.read-more:hover {
  background-color: #002d62;
  color: #ffd700;
}

.welcome-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border: 3px solid #002d62;
  border-radius: 10px;
}

.welcome-box {
  background: linear-gradient(145deg, #f0f4f8, #cce0f3);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #002d62;
  margin-bottom: 20px;
}

.section-content {
  font-size: 16.5px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.read-more-btn {
  margin-top: 20px;
  display: inline-block;
  background-color: #ffd700;
  color: #002d62;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background-color: #002d62;
  color: #ffd700;
}

.welcome-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 3px solid #002d62;
  border-radius: 10px;
}

/* Image style fix */
.welcome-img {
  width: 100%;
  height: 260px; /* ⬆️ Increased height */
  object-fit: cover;
  border: 3px solid #002d62;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Space between images */
}

/* Extra spacing between image column and content column */
.welcome-box .row > div[class*="col-"]:first-child {
  padding-right: 25px;
}

@media (max-width: 768px) {
  .welcome-img {
    height: auto;
  }

  .welcome-box .row > div {
    padding-right: 0 !important;
  }
}

.info-box {
  background: linear-gradient(145deg, #f2f8ff, #ddeeff);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  border-top: 4px solid #002d62;
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.box-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 10px;
  color: #002d62;
  font-family: "Calibri", sans-serif;
}

.info-box p {
  text-align: left;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.info-box p i {
  color: #002d62;
  margin-right: 5px;
}

.read-more-link {
  display: inline-block;
  margin-top: 5px;
  background-color: #ffd700;
  color: #002d62;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.read-more-link:hover {
  background-color: #002d62;
  color: #ffd700;
}

.submenu {
  max-height: 300px; /* or as needed */
  overflow-y: auto;
  scrollbar-width: thin; /* Firefox */
  -ms-overflow-style: auto; /* Edge */
}

.submenu::-webkit-scrollbar {
  width: 6px;
}
.submenu::-webkit-scrollbar-thumb {
  background-color: #ffd700;
  border-radius: 4px;
}

.info-box p {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.image-row::-webkit-scrollbar {
  height: 6px;
}
.image-row::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
}
