:root {
  --primary: #2ecc71;
  --secondary: #0b3c5d;
  --accent: #1e3c72;

  --bg-main: #fff9f0;
  --bg-white: #ffffff;

  --text-main: #000000;
  --text-light: #ffffff;
  --text-muted: #6c757d;

  --border-main: #0b3c5d;

  --footer-1: #2ea66f;
  --footer-2: #154a63;

  --badge-bg: #f1f1f1;
  --badge-text: #333;
  --timeline-line: #dcdcdc;
}

/* ===== ORIGINAL CSS (UNCHANGED STRUCTURE) ===== */

body {
  font-family: "Manrope", sans-serif;
  font-style: normal;
}

.logo {
  font-size: 35px;
  color: var(--secondary) !important;
  font-weight: 800 !important;
}

.bg {
  background-color: var(--bg-main);
}

.bgdeg {
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 30px;
}

.title-top-row {
  color: var(--secondary);
  font-weight: 600;
  font-size: 2rem;
}

.title-top-row span {
  color: var(--text-light);
}

.txt-body {
  color: var(--text-light);
  font-weight: 300;
}

.img-top-row {
  background-image: url(Photo_1.jpg);
  border-radius: 15px;
}

.img-top-row-txt {
  background-color: var(--bg-white);
}

.image-card {
  position: relative;
  margin-bottom: 30px;
  margin-top: 20px;
}

.image-card img {
  width: 100%;
  display: block;
  border-radius: 15px;
  object-fit: cover;
}

.badge-floating {
  position: absolute;
  bottom: 5%;
  left: 50%;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  align-items: end;
  gap: 10px;
  font-size: 1rem;
}

.badge-floating.right {
  left: auto;
  right: 20px;
  transform: none;
}

.check-icon {
  background: var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
}

.check-icon-2 {
  background: var(--secondary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
}

.btn-top-row {
  background-color: var(--bg-main);
  border-radius: 7px;
}

.btn-top-row:hover {
  background-color: var(--bg-white);
  color: var(--primary);
  cursor: pointer;
}

.form-row-blank {
  background-color: var(--bg-white);
  height: 700px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.title-2-row {
  color: var(--secondary);
  font-weight: 700;
  font-size: 2rem;
}

.txt-2-body {
  color: var(--text-main);
}

.card-2-1 {
  background-color: var(--bg-white);
  border: 2px solid var(--border-main);
  border-radius: 10px;
  width: 100%;
}

.card-2-1-text {
  margin-top: 10px;
  font-size: 1.4rem;
  color: var(--text-main);
  font-weight: 400;
}

.card-2-2 {
  background-color: var(--secondary);
  border-radius: 10px;
  width: 100%;
}

.card-2-2-title {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 600;
}

.card-2-2-text {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 400;
}

.btn-bott-row {
  background: var(--primary);
  color: var(--text-light);
  border-radius: 7px;
  font-size: 1.3rem;
  font-weight: 400;
  border: 1px solid transparent;
}

.btn-bott-row:hover {
  background-color: var(--bg-white);
  border: 1px solid var(--primary);
  cursor: pointer;
  color: var(--text-main);
}

.custom-card {
  background: var(--bg-white);
  border-radius: 16px;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.icon-box {
  background: var(--primary);
  color: var(--text-light);
  width: 55px !important;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.custom-card h4 {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.5rem;
}

.custom-card p {
  color: var(--text-main);
  font-size: 1.2rem;
}

.testimonial-card {
  background-color: var(--bg-soft, #f9edc2);
  padding: 30px;
  border-radius: 20px;
}

.testimonial-text {
  font-size: 1.5rem;
  color: var(--text-main);
  font-weight: 400;
}

.testimonial-card small {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.avatar {
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--timeline-line);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 70px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--text-light);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
  z-index: 1;
}

.timeline-content h4 {
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.6rem;
}

.timeline-content p {
  color: var(--text-main);
  font-size: 1.4rem;
}

.footer {
  background: linear-gradient(to bottom, var(--footer-1), var(--footer-2));
}

.footer-text {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer a {
  color: var(--primary);
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 10px;
}

.footer a:hover {
  opacity: 0.8;
}

.carousel-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.carousel-card img {
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.carousel-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--badge-bg);
  padding: 10px 18px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--badge-text);
}

.carousel-badge .check {
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
}

#scrollBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  width: 50px;
  height: 50px;
  font-size: 20px;
  z-index: 1000;
  background-color: var(--primary);
  border: 1px solid var(--primary) !important;
}

#scrollBtn:hover {
  background-color: var(--bg-white);
  border: 1px solid var(--primary);
  color: var(--text-main);
}

.form-row-blank {
  height: auto;
}

@media (max-width: 768px) {
.carousel-card img{
height: 200px;
}

    

}