.navbar-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.contact-custom {
  background: #f7f7f7;
  padding: 40px 20px;
}

/* LEFT FORM */
/* .contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  overflow: visible;
  max-height: 650px;
  position: relative;
  z-index: 1;
} */

.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;

  height: 650px; /* FIXED height */
  overflow-y: auto; /* SCROLL INSIDE */
  overflow-x: hidden;
}
.nice-select .list {
  max-height: 150px;
  overflow-y: auto;
}
.contact-box h3 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-box .note {
  text-align: center;
  font-size: 12px;
  color: #666;
}

.contact-box .warning {
  color: red;
  font-size: 13px;
  margin: 15px 0;
}

.contact-box label {
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-box .form-control {
  height: 45px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  background: #45cc07e8;
  color: #fff;
  border: none;
  height: 45px;
}

/* RIGHT GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
}

.info-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.info-card p {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
  color: black;
}

/* HOVER */
.info-card:hover {
  transform: translateY(-5px);
}
/* Tablet */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-box {
    max-height: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 15px;
  }

  .info-card img {
    height: 150px;
  }
}
.custom-form label {
  font-weight: 500;
  margin-bottom: 5px;
}

.custom-form .form-control {
  height: 45px;
  border-radius: 5px;
}

.submit-btn {
  background: #45cc07e8;
  color: #fff;
  padding: 10px 40px;
  border: none;
}

.nice-select {
  width: 100%;
  position: relative;
}

.nice-select .list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.contact-custom {
  position: relative;
  z-index: 2;
}

.one-about-area {
  position: relative;
  z-index: 1;
}

.testimonial-slider-section {
  background: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  color: #45cc07e8;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 40px 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.user-img {
  width: 70px;
  height: 70px;
  margin: -50px auto 10px;
  border-radius: 50%;
  border: 4px solid #45cc07e8;
  overflow: hidden;
}

.user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
}

.testimonial-card h4 {
  margin-top: 10px;
  font-size: 16px;
}

.testimonial-card span {
  font-size: 13px;
  color: #888;
}

/* DOTS WRAPPER */
.testimonial-slider .owl-dots {
  text-align: center;
  margin-top: 25px;
}

/* EACH DOT */
.testimonial-slider .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  display: inline-block;
  background: #9bd3b0; /* light green */
  border-radius: 50%;
  transition: 0.3s;
}

/* ACTIVE DOT */
.testimonial-slider .owl-dot.active {
  width: 25px;
  border-radius: 10px;
  background: #45cc07e8; /* dark green */
}
.testimonial-slider .owl-stage-outer {
  overflow: hidden;
}

/* DOT CONTAINER */
.testimonial-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}

/* DEFAULT DOT */
.testimonial-slider .owl-dot {
  display: inline-block;
  width: 8px;
  height: 6px;
  margin: 0 5px;
  background: #dcdcdc; /* light grey */
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* ACTIVE DOT (GREEN PILL) */
.testimonial-slider .owl-dot.active {
  width: 30px; /* long bar */
  background: #45cc07e8; /* your green */
}
.testimonial-slider .owl-dot {
  background: #dcdcdc !important;
}

.testimonial-slider .owl-dot.active {
  background: #45cc07e8 !important;
}

/*  */
.stats-section {
  background: #45cc07e8;
  padding: 35px 20px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  flex: 1;
  min-width: 220px;
}

.stat-item img {
  width: 45px;
  height: 45px;
}

.stat-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.stat-text h2 {
  margin: 2px 0;
  font-size: 28px;
  font-weight: 700;
}

.stat-text span {
  font-size: 12px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/*  */
.process-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.process-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* TIMELINE */
.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 75px; /* 👈 move line to left */
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 50px 1fr; /* icon | number | text */
  align-items: center;
  margin-bottom: 40px;
}
.timeline-center {
  display: flex;
  justify-content: center;
  position: relative;
}

.timeline-center span {
  position: relative;
  left: -10px;
}

/* LEFT ICON */
.timeline-left img {
  width: 50px;
}

/* CENTER NUMBER */
.timeline-center {
  display: flex;
  justify-content: center;
  position: relative;
}

.timeline-center span {
  background: #45cc07e8;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

/* CONTENT */
.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 50px 50px 1fr;
    gap: 10px;
  }

  .timeline-left img {
    width: 40px;
  }

  .timeline-center span {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .timeline-content h4 {
    font-size: 16px;
  }

  .process-title {
    font-size: 24px;
  }
}

/*  */
.benefits-section {
  background: #45cc07e8; /* close to your screenshot green */
  color: #fff !important;
  text-align: center;
  position: relative;
  padding: 80px 20px 60px;
}

/* WAVE */
.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-top svg {
  width: 100%;
  height: 80px;
}

/* TITLE */
.benefits-title {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

.benefits-title span {
  color: #ffd700;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 20px;
}

/* ITEM */
.benefit-item img {
  width: 80px;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 16px;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-title {
    font-size: 24px;
  }

  .benefit-item img {
    width: 60px;
  }
}

/*  */

body {
  overflow-x: hidden;
}
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}
/* SECTION WRAPPER */
.about-section {
  padding: 80px 0;
  background: #fff;
}

/* FIX WIDTH (VERY IMPORTANT) */
.about-section .container {
  max-width: 1200px;
  margin: 0 auto; /* THIS WAS MISSING */
  padding: 0 15px;
}

/* MAIN LAYOUT */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT SIDE (IMAGE / VIDEO) */
.about-left {
  flex: 1;
}

.about-left video,
.about-left img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* RIGHT SIDE (TEXT) */
.about-right {
  flex: 1;
}

/* HEADING */
.about-right h2 {
  font-size: 42px;
  font-weight: 700;
  /* color: #000; */
  margin-bottom: 20px;
  line-height: 1.2;
}

/* PARAGRAPH */
.about-right p {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* STRONG TEXT */
.about-right strong {
  color: #000;
  font-weight: 600;
}
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-right h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 50px 15px;
  }

  .about-right h2 {
    font-size: 26px;
  }

  .about-right p {
    font-size: 14px;
  }
}

/*  */
.contact-box {
  height: 650px;
  overflow-y: auto;
}
.about-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.about-left {
  flex: 1;
}

/* SLIDER */
.about-slider {
  position: relative;
}

.slide-item {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT */
.about-right {
  flex: 1;
}

.about-right h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-right p {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* DOTS (LIKE YOUR TESTIMONIAL) */
.about-slider .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.about-slider .owl-dot {
  width: 8px;
  height: 6px;
  background: #ccc;
  display: inline-block;
  margin: 0 5px;
  border-radius: 10px;
  transition: 0.3s;
}

.about-slider .owl-dot.active {
  width: 30px;
  background: #45cc07e8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .slide-item {
    height: 300px;
  }

  .about-right h2 {
    font-size: 28px;
  }
}
/* SLIDER CARD */
.about-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* IMAGE + VIDEO FIX */
.about-card img,
.about-card video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* CENTER ALIGN */
.about-left {
  max-width: 500px;
}

/* ARROWS */
.about-slider .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
}

.about-slider .owl-nav button {
  position: absolute;
  background: #8b6b2c;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #fff;
}

.about-slider .owl-nav .owl-prev {
  left: -20px;
}

.about-slider .owl-nav .owl-next {
  right: -20px;
}

/* DOTS */
.about-slider .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.about-slider .owl-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  margin: 5px;
  border-radius: 50%;
}

.about-slider .owl-dot.active {
  width: 25px;
  border-radius: 10px;
  background: #45cc07e8;
}

/*  */
/* ================= MEDIA SECTION ================= */
.media-section {
  background: #45cc07e8;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.media-section h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* SLIDER */
.logo-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.logo-track {
  display: flex;
  gap: 30px;
  animation: scroll 25s linear infinite;
  width: max-content; /* FIXED (IMPORTANT) */
}

/* LOGO CARD */
.logo-item {
  min-width: 180px;
  height: 80px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

/* IMAGE */
.logo-item img {
  max-width: 120px;
  max-height: 45px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* 🔥 HOVER ZOOM EFFECT */
.logo-item:hover img {
  transform: scale(1.15);
}

/* OPTIONAL: slight lift */
.logo-item:hover {
  transform: translateY(-5px);
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* TABLET */
@media (max-width: 992px) {
  .logo-item {
    min-width: 150px;
    height: 70px;
  }

  .logo-item img {
    max-width: 100px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .media-section h2 {
    font-size: 24px;
  }

  .logo-track {
    animation-duration: 15s; /* faster scroll */
  }

  .logo-item {
    min-width: 120px;
    height: 60px;
    padding: 8px;
  }

  .logo-item img {
    max-width: 80px;
  }
}

/*  */
/* SECTION */
.trust-section {
  background: #f2f4f6;
  padding: 60px 20px;
  text-align: center;
}

/* TITLE */
.trust-title {
  /* color: #158a52; */
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* GRID */
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.trust-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
  transition: 0.3s;
}

/* HOVER (optional but clean) */
.trust-card:hover {
  transform: translateY(-5px);
}

/* LOGO */
.trust-card img {
  max-width: 160px;
  margin-bottom: 15px;
}

/* RATING */
.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rating h3 {
  font-size: 26px;
  margin: 0;
}

/* STARS */
.stars {
  color: #f4c542;
  font-size: 18px;
  letter-spacing: 2px;
} /* TABLET */
@media (max-width: 992px) {
  .trust-card {
    width: 260px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .trust-title {
    font-size: 24px;
  }

  .trust-grid {
    flex-direction: column;
    align-items: center;
  }

  .trust-card {
    width: 100%;
    max-width: 320px;
  }

  .rating h3 {
    font-size: 22px;
  }

  .stars {
    font-size: 16px;
  }
}

/*  */
/* SECTION */
.why-section {
  background: #adb5bd4f;
  padding: 70px 20px;
  text-align: center;
}

/* TITLE */
.why-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* SUBTITLE */
.why-subtitle {
  font-size: 20px;
  color: black;
  margin-bottom: 50px;
}

/* GRID */
.why-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* CARD */
.why-card {
  flex: 1;
  max-width: 300px;
  margin: auto;
}

/* ICON */
.why-card img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

/* TEXT */
.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
} /* TABLET */
@media (max-width: 992px) {
  .why-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .why-card {
    max-width: 260px;
  }

  .why-card img {
    width: 100px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .why-title {
    font-size: 24px;
  }

  .why-subtitle {
    font-size: 16px;
  }

  .why-grid {
    flex-direction: column;
    gap: 30px;
  }

  .why-card {
    max-width: 100%;
  }

  .why-card img {
    width: 80px;
  }

  .why-card h4 {
    font-size: 16px;
  }
}

/*  */
.services-section {
  background: #f5f5f5;
  padding: 70px 20px;
}

.services-title {
  text-align: center;
  /* color: #158a52;/ */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

/* CARD */
.service-card {
  flex: 1;
  background: transparent;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* TITLE */
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* BUTTON */
.service-btn {
  text-align: center;
  margin-top: 40px;
}

.apply-btn {
  background: #45cc07e8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
} /* TABLET */
@media (max-width: 992px) {
  .services-grid {
    flex-wrap: wrap;
    gap: 25px;
  }

  .service-card {
    flex: 1 1 48%;
  }

  .service-card img {
    height: 200px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .services-title {
    font-size: 24px;
  }

  .services-grid {
    flex-direction: column;
  }

  .service-card {
    width: 100%;
  }

  .service-card img {
    height: 180px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

/* IMAGE WRAPPER (VERY IMPORTANT) */
.img-wrap {
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE */
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* 🔥 HOVER ZOOM EFFECT */
.img-wrap:hover img {
  transform: scale(1.12);
}
.why-card .img-wrap {
  width: 120px;
  margin: 0 auto 20px;
}

/*  */
.footer-bottom {
  background: #45cc07e8; /* your green */
  padding: 12px 10px;
  text-align: center;
}

.footer-bottom p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 576px) {
  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* 
 */
/* TOP BAR */
.one-header-top {
  background: #eaffea;
  text-align: center;
  padding: 10px 15px;
}

.one-header-top p {
  margin: 0;
  font-size: 14px;
}

.one-header-top a {
  color: #45cc07e8;
  font-weight: 500;
}

/* NAVBAR */
.custom-navbar {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

/* LOGO */
.navbar-brand img {
  height: 50px;
}

/* RIGHT SIDE */
.nav-right {
  margin-left: auto;
}

/* PHONE BUTTON */
.call-btn {
  background: #45cc07e8;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
}

.navbar-nav .nav-link:hover {
  color: #45cc07e8;
}

/* MOBILE FIX (THIS WAS YOUR MAIN ISSUE) */
@media (max-width: 767px) {
  .one-header-top {
    font-size: 12px;
    padding: 8px 10px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .call-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 15px;
    margin-top: 10px;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-right {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-brand {
    flex: 1;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* PHONE BUTTON SMALL */
  .call-btn {
    padding: 5px 8px;
    font-size: 11px;
  }

  /* ICON ONLY (OPTIONAL BUT SMART) */
  .call-btn i {
    margin: 0;
  }

  /* MENU DROPDOWN FIX */
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    margin-top: 10px;
  }
}

/*  */

/* RIGHT SIDE ALIGNMENT */
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px; /* spacing between phone & hamburger */
}

/* PHONE BUTTON */
.call-btn {
  background: #45cc07e8;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

/* HAMBURGER ALIGN FIX */
.navbar-toggler {
  border: none;
  padding: 6px 8px;
}

/* 🔥 MOBILE FIX (THIS IS WHERE YOU WERE FAILING) */
@media (max-width: 767px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-right {
    gap: 8px;
  }

  .call-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* optional: hide text, keep icon only */
  .phone-text {
    display: none;
  }
}

/* 
 */

/* ===== ABOUT SECTION CLEAN ===== */
.about-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.about-left {
  flex: 1;
  max-width: 500px;
}

/* IMAGE FIX (IMPORTANT) */
.about-card img {
  width: 100%;
  height: auto; /* 🔥 REMOVE FIXED HEIGHT */
  aspect-ratio: 4/3; /* keeps shape */
  object-fit: cover;
  border-radius: 12px;
}

/* RIGHT */
.about-right {
  flex: 1;
}

.about-right h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-right p {
  font-size: 18px;
  line-height: 1.6;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-left {
    max-width: 100%;
  }

  .about-card img {
    aspect-ratio: 16/9;
  }

  .about-right h2 {
    font-size: 28px;
  }

  .about-right p {
    font-size: 16px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .about-section {
    padding: 50px 15px;
  }

  .about-card img {
    aspect-ratio: 1/1; /* 🔥 square for mobile */
  }

  .about-right h2 {
    font-size: 22px;
  }

  .about-right p {
    font-size: 14px;
  }
}

/*  */
@media (max-width: 767px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    width: 100%;
    align-items: center; /* 🔥 THIS IS THE KEY */
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  /* CENTER PHONE BUTTON ALSO */
  .nav-right {
    justify-content: center;
    margin-top: 10px;
  }
}

/*  */
