.hero-title h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #039ede;
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 2.5px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.35s ease;
}
.feature-card {
  position: relative;
  padding: 30px 25px;
  border-radius: 18px;
  background: #fff;
  z-index: 1;
  height: 100%;
}

/* Gradient Border */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px; /* border thickness */
  background: linear-gradient(135deg, #df1d7e, #039ede);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card h4 {
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
  font-size: 14px;
}

.feature-card-alt {
  position: relative;
  padding: 30px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border: 1px solid #eee;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
}

/* Top Gradient Bar */
.feature-card-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6a00, #ee0979, #039ede);
}

/* Soft Glow Effect */
.feature-card-alt::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 0, 150, 0.15), transparent);
  top: -50px;
  right: -50px;
  transition: 0.5s;
}

/* Hover Effect */
.feature-card-alt:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.feature-card-alt:hover::after {
  top: -30px;
  right: -30px;
}

/* Icon Animation */
.feature-card-alt .icon-box {
  transition: 0.4s;
}

.feature-card-alt:hover .icon-box {
  transform: rotate(8deg) scale(1.1);
}

/* Text */
.feature-card-alt h4 {
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 10px;
}

.feature-card-alt p {
  color: #555;
  font-size: 14px;
}

/* icon box */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

/* colors */
.blue {
  background: #4a7ebb;
}
.green {
  background: #8bb441;
}
.pink {
  background: #e93d7f;
}
.orange {
  background: #ff6a35;
}

.video-card {
  width: 85%;
}

.video-card img {
  border-radius: 20px;
}

/* Second Image Styling */
.second-card {
  top: 40%;
  left: 50%;
  width: 70%;
}

/* Yellow Background */
.bg-yellow {
  background-color: #f4c95d;
}

/* LEFT INFO CARD */

.service-intro {
  background: linear-gradient(135deg, #039ede, #1da8d9);
  color: white;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.small-title {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.service-intro h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.see-btn {
  border: 1px solid white;
  padding: 10px 18px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  width: fit-content;
}

.see-btn:hover {
  background: white;
  color: #039ede;
}

/* SERVICE CARD */

.service-card {
  position: relative;
  border-radius: 14px;
  min-height: 240px;
  cursor: pointer;
  perspective: 1200px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  min-height: 240px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.service-card.is-flipped .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-card-front {
  background: #fff;
}

.service-card-back {
  background: linear-gradient(160deg, #ffffff 0%, #f8eff4 100%);
  transform: rotateY(180deg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.service-card-back h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #1e88c8;
}

.service-card-back p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card.is-flipped:hover img {
  transform: none;
}

/* LABEL */

.service-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-label span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #df1d7e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-card:focus-visible {
  outline: 3px solid rgba(30, 136, 200, 0.35);
  outline-offset: 4px;
}
#aboutus {
  background-image: url("/assets/images/about-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 75vh;
}

/* CARD */

.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: 0.35s;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* CHECK ICON */

.check-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1e7a, #c40063);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;

  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* TEXT */

.value-card h3 {
  color: #1284b5;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}
.contact-section {
  background: #f7f7f7;
}

/* remove default bootstrap styles */
.line-input {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  font-size: 16px;
}

.line-input:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid #df1d7e;
}

/* label style */
.contact-form label {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
  display: block;
}
.contact-section {
  background: linear-gradient(120deg, #f8f8f8, #eef4f7);
}

/* FLOATING INPUT */

.floating-group {
  position: relative;
}

.floating-group input,
.floating-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #bbb;
  background: transparent;
  padding: 12px 0;
  font-size: 16px;
  outline: none;
}

/* LABEL */

.floating-group label {
  position: absolute;
  left: 0;
  top: 12px;
  color: #666;
  transition: 0.3s ease;
  pointer-events: none;
}

/* FLOAT EFFECT */

.floating-group input:focus + label,
.floating-group textarea:focus + label,
.floating-group input:valid + label,
.floating-group textarea:valid + label {
  top: -12px;
  font-size: 13px;
  color: #df1d7e;
}

/* UNDERLINE ANIMATION */

.floating-group .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #df1d7e, #039ede);
  transition: 0.4s;
}

.floating-group input:focus ~ .line,
.floating-group textarea:focus ~ .line {
  width: 100%;
}

/* TEXTAREA FIX */

textarea {
  resize: none;
}

/* BUTTON IMPROVEMENT */

.send-btn {
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 40px;
  transition: 0.35s;
}

.send-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.founder-section {
  padding: 50px 0;
}

/* Card */
.founder-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: 0.3s ease;
  position: relative;
}

.founder-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.founder-card img {
  width: 100%;
  transition: 0.4s ease;
  object-fit: cover;
}

/* HOVER ZOOM (smooth) */
.founder-card:hover img {
  transform: scale(1.05);
}

.founder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.15)
  );
  pointer-events: none;
}

/* Info */
.founder-info {
  background: linear-gradient(180deg, #3a8dde, #2a64c5);
  color: #fff;
  padding: 18px;
}

.founder-info h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.founder-info p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.founder-info ul {
  padding-left: 16px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Message Boxes */
.message-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Left Accent Curve Style */
.message-box.blue {
  border-left: 4px solid #2f80ed;
}

.message-box.pink {
  border-left: 4px solid #ff4da6;
}

.message-box h6 {
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.message-box p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
}

/* CTA */
.cta-box {
  background: linear-gradient(90deg, #ff4da6, #2f80ed);
  color: #fff;
  padding: 20px;
  border-radius: 14px;
  text-align: center;

  font-family: "Luckiest Guy", cursive; /* 🔥 main change */
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 1.4;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Layout spacing fix */
.row.g-4 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .founder-card img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .cta-box {
    font-size: 15px;
    padding: 16px;
  }

  .message-box {
    padding: 16px;
  }
}

.message-box {
  border-radius: 14px;
}

.message-box::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 10px;
  bottom: 10px;
  width: 6px;
  border-radius: 10px;
}
