* {
  box-sizing: border-box;
}

section {
  max-width: 100%;
  overflow-x: hidden;
}

.client-logos-scroll {
  max-width: 100%;
  overflow-y: hidden;
}

.our-services {
  max-width: 100%;
  overflow-x: hidden;
}

.contact-us {
  max-width: 100%;
  overflow-x: hidden;
}

.consult-section {
  text-align: center;
  padding: 40px 0;
}

/* ----- FORM ----- */
.consult-form-container {
  width: 100%;
  margin-bottom: 110px;
}

.consult-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.form-input {
  padding: 12px 15px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.consult-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.consult-btn:hover {
  background: #084298;
}

/* ----- STATS BLOCK ----- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box h2 {
  font-size: 48px;
  color: #0d315e;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 18px;
  color: #0d315e;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-row {
    gap: 30px;
  }

  .stat-box h2 {
    font-size: 36px;
  }
}

/* Submenu hidden by default */
.sub-menu {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  padding: 20px 7px;
  margin: 0;
  border-radius: 5px;
  width: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Show submenu on hover */
.dropdown:hover .sub-menu {
  display: block;
}

/* Submenu links */
.sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: #000 !important;
  text-decoration: none;
  white-space: nowrap;
}

/* Hover effect */
.sub-menu li a:hover {
  background: #f1f1f1;
  color: #0d6efd !important;
}

.loan-section {
  text-align: center;
  padding: 50px 20px;
}

.sub-title {
  color: #0d2c6c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.main-title {
  font-size: 36px;
  margin: 10px 0;
  font-weight: 700;
}

.desc {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

/* GRID */
.loan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 40px;
}

/* CARD */
.loan-card {
  background: #f7f7f7;
  padding: 40px 20px;
  border-radius: 12px;
  transition: 0.4s;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
}

.loan-card img {
  width: 70px;
  margin-bottom: 15px;
  transition: 0.4s;
}

.loan-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0d2c6c;
}

/* HOVER EFFECT */
.loan-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  border: 1px solid #6c226d;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.loan-card:hover img {
  transform: scale(1.15) rotate(5deg);
}

/* BUTTON */
.btn-box {
  margin-top: 40px;
}

.apply-btn {
  background: #0d2c6c;
  color: #fff;
  padding: 12px 35px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #0a204f;
}

.loan-section {
  text-align: center;
  padding: 60px 20px 60px;
}

.sub-title {
  color: #ed6819;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.main-title {
  font-size: 38px;
  margin: 10px 0;
  font-weight: 800;
  color: #6c226d;
}

.desc {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
}

/* GRID */
.loan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 0 40px;
}

/* NEW CARD DESIGN */
.loan-card {
  background: rgb(254 246 241);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.loan-card img {
  width: 70px;
  margin-bottom: 15px;
  transition: 0.4s;
}

.loan-card h3 {
  color: #6c226d;
  font-size: 21px;
  font-weight: 600;
  margin-top: 5px;
}

/* GLASS + GRADIENT HOVER */
/* .loan-card:hover {

  box-shadow: 0 10px 35px rgba(0, 87, 255, 0.35);
} */

.loan-card:hover h3 {}

.loan-card:hover img {
  /* filter: brightness(0) invert(1); */
  transform: scale(1.2);
}

/* BUTTON */
.apply-btn {
  background: #ed6819;
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.apply-btn:hover {
  color: #fff;
  background: #6c226d;
}

/* ⚡ FAST SLIDE UP ANIMATION */
@keyframes fastUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CARD + FAST ANIMATION */
.loan-card {
  background: rgb(254 246 241);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

  opacity: 0;
  animation: fastUp 0.45s ease-out forwards;
  /* ⚡ Faster animation */
}

/* FASTER STAGGER DELAY */
.loan-card:nth-child(1) {
  animation-delay: .05s;
}

.loan-card:nth-child(2) {
  animation-delay: .10s;
}

.loan-card:nth-child(3) {
  animation-delay: .15s;
}

.loan-card:nth-child(4) {
  animation-delay: .20s;
}

.loan-card:nth-child(5) {
  animation-delay: .25s;
}

.loan-card:nth-child(6) {
  animation-delay: .30s;
}

/* IMAGE */
.loan-card img {
  width: 70px;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* HOVER */
.loan-card:hover img {
  /* filter: brightness(0) invert(1); */
  /* transform: scale(1.2); */
}

.services-section {
  background: #fef6f1;
  padding: 60px 20px;
  margin-top: 20px;
  text-align: center;
}

.services-subtitle {
  color: #0d2c6c;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services-title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.services-description {
  color: #555;
  font-size: 16px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
  width: 100px;
  margin-bottom: 20px;
}

.service-name {
  font-size: 18px;
  font-weight: 600;
  color: #6c226d;
}

.services-footer {
  margin-top: 20px;
}

.services-btn {
  background: #6c226d;
  color: #fff;
  padding: 12px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.services-btn:hover {
  color: #fff;
  background: #ed6819;
}

.client-process-section {
  /* background-color: #f5f5f5; */
  text-align: center;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.client-subtitle {
  color: #6c226d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.client-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #ed6819;
}

.client-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.client-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.client-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
  background-color: #6c226d;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card-text {
  font-weight: 600;
  font-size: 16px;
  color: #111;
}

/* Client Logos Scrolling Section */
.client-logos-scroll {
  background-color: #fef6f1;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.client-logos-scroll .section-title {
  font-size: 32px;
  color: #6c226d;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Wrapper hides overflow */
.logos-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Track scrolls continuously */
.logos-track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
}

/* Individual logo items */
.logo-item img {
  width: 150px;
  /* Logo width */
  height: auto;
  /* Keep aspect ratio */
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.1);
}

/* Infinite scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media(max-width: 1024px) {
  .logos-track {
    gap: 30px;
  }

  .logo-item img {
    width: 120px;
  }
}

@media(max-width: 768px) {
  .logos-track {
    gap: 20px;
  }

  .logo-item img {
    width: 100px;
  }
}

@media(max-width: 480px) {
  .logos-track {
    gap: 15px;
  }

  .logo-item img {
    width: 80px;
  }
}

.heading {
  margin-bottom: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
}

.para {
  color: #fff;
}

.cont {
  font-size: 20px;
}

.big-number-white {
  counter-reset: step;
  padding-left: 0;
}

.big-number-white li {
  list-style: none;
  counter-increment: step;
  position: relative;
  margin: 10px 0;
  padding-left: 50px;
  color: #fff;
  /* text white */
  font-size: 20px;
  font-weight: 700;
}

.big-number-white li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  /* faded white */
}

.new {
  font-size: 40px;
  font-weight: 700;
  color: #ff3445;
}


.contact-form {
  width: 100%;
  max-width: 700px;
  margin: auto;
  padding: 30px;
  background: #ed681933;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form fieldset {
  border: none;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d2c6c;
  box-shadow: 0 0 5px rgba(13, 44, 108, 0.3);
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.form-btn {
  width: 100%;
  padding: 12px;
  background: #ed6819;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn:hover {
  background: #0a2150;
}

/* ---------- HEADING STYLE ---------- */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a237e;
}

.sub-title {
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #444;
  margin-bottom: 40px;
}

/* ---------- ABOUT BOX ---------- */
.about-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
  margin: 37px;
}

/* ---------- TEAM SECTION ---------- */
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(337px, 1fr));
  gap: 40px;
}

.team-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.team-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #6c226d;
  margin-top: 20px;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .section-title {
    font-size: 28px;
  }

  .about-box {
    padding: 20px;
  }
}

.mini-title {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ed6819;
  text-align: center;
  margin-bottom: 5px;
}

.sub-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 5px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: #6c226d;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

@media (max-width: 600px) {
  .main-title {
    font-size: 24px;
  }

  .sub-title {
    font-size: 18px;
  }
}

.team-section {
  padding: 58px;
  background-color: #ed681917;
}

/* BAD — DON'T keep this on elements you want AOS to animate */
.team-card {
  opacity: 0;
  transform: translateY(30px);
}

.about-side-section {
  padding: 70px 40px 15px;
  background: #fdf1ea;
}

.about-side-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* IMAGE */
.about-side-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.20);
  object-fit: cover;

  /* Glass border */
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

/* CONTENT */
.about-side-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-side-content .mini-title {
  color: #ed6819;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 16px;
}

.side-title {
  font-size: 30px;
  font-weight: 700;
  color: #6c226d;
  margin: 10px 0 20px 0;
}

.about-side-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.about-side-content ul {
  margin-top: 15px;
}

.about-side-content ul li {
  margin: 10px 0;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-side-container {
    flex-direction: column;
    text-align: center;
  }

  .about-side-content {
    text-align: center;
  }

  .about-side-content ul {
    text-align: left;
    margin: auto;
    max-width: 350px;
  }
}

.contact {
  width: 100%;
  padding: 60px;
  background-color: #fef6f1;
}

.contact-form select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  color: #555;
  outline: none;
  background: #fff;
}

.contact-form select:focus {
  border-color: #ed6819;
  box-shadow: 0 0 5px rgba(237, 104, 25, 0.4);
}

/* CONTAINER */
.contact-section {
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* FORM CONTAINER */
.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #6c226d;
}

.contact-form-container h2 span {
  color: #ed6819;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  width: 100%;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form .form-btn {
  padding: 14px;
  background: #ed6819;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .form-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* CONTACT INFO */
.contact-info-container {
  flex: 1;
  min-width: 300px;
  background: #6c226d;
  color: #fff;
  padding: 25px;
  border-radius: 15px;
}

.contact-info-container .info-box {
  margin-bottom: 20px;
}

.contact-info-container .info-box h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #6c226d;
}

.contact-info-container .info-box p {
  font-size: 14px;
  line-height: 1.5;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: #ed6819;
  padding: 16px;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #6c226d;
}

/* MAP */
.contact-map {
  margin-top: 40px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}

.info {
  color: #fff;
}

.signup-box {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 25px;
}

.step {
  text-align: center;
  color: #777;
  font-size: 14px;
}

.step span {
  width: 40px;
  height: 40px;
  background: #bfc4ce;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 5px;
  font-weight: 600;
}

.active span {
  background: #6c226d;
}

h2 {
  text-align: center;
  font-size: 35px;
  margin-bottom: -23px;
  color: #6c226d;
  font-weight: 600;
}

label {
  font-size: 16px;
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
  color: #6c226d;
}

input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ed681929;
  margin-bottom: 18px;
  font-size: 14px;
  transition: 0.25s;
  /* background: #ed68193d; */
}

input:focus {
  border-color: #0061ff;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 97, 255, 0.15);
  outline: none;
}

.otp-row {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary {
  background: #6c226d;
  color: white;
}

.btn-primary:hover {
  background: #ed6819;
}

.resend {
  text-align: right;
  font-size: 12px;
  color: #ed6819;
  cursor: pointer;
  margin-top: -12px;
  margin-bottom: 20px;
}

.next-btn {
  width: 100%;
}

.radio-field {
  margin-bottom: 15px;
}

.radio-field label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.radio-options {
  display: flex;
  gap: 20px;
  align-items: center;
}

.radio-options label {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.radio-options input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.main-footer {
  background: #6c226d;
  padding: 30px 0px 0px 0px;
  text-align: center;
  color: #ffffff;
}

.main-footer p {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
  color: #fff;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #ed6819;
  /* orange accent */
}

.like-box {
  background: #6c226d40;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 450px;
  margin: auto;
  text-align: center;
}

.contact-heading {
  font-size: 28px;
  color: #6c226d;
  margin-bottom: 20px;
  font-weight: 700;
}

.info-box {
  margin-bottom: 22px;
}

.info-box h3 {
  font-size: 18px;
  color: #ed6819;
  margin-bottom: 8px;
}

.info-box .info {
  font-size: 15px;
  color: #333;
  margin: 3px 0;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: #6c226d;
  color: #fff;
  border-radius: 50%;
  margin: 0 6px;
  font-size: 15px;
  transition: 0.3s ease-in-out;
}

.social-icons a:hover {
  background: #ed6819;
  transform: translateY(-4px);
}



/* ============================
   MOBILE VIEW ONLY
   ============================ */
@media (max-width: 991px) {

  /* Hide menu by default */
  .main-nav .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    margin-top: 10px;
    border-radius: 10px;
  }

  /* Show menu on click */
  .main-nav .nav.mobile-active {
    display: flex !important;
  }

  /* Menu items full width */
  .main-nav .nav li {
    width: 100%;
    padding: 10px 20px;
  }

  /* Dropdown arrow */
  .main-nav .dropdown>a::after {
    content: " ▼";
    float: right;
    font-size: 14px;
  }

  /* Dropdown open on click */
  .main-nav .dropdown .sub-menu {
    display: none !important;
    position: relative;
    background: #fff;
    box-shadow: none;
    padding-left: 15px;
  }

  .main-nav .dropdown.open .sub-menu {
    display: block !important;
  }

  /* Apply Now button full width */
  .main-red-button a {
    width: 100%;
    text-align: center;
  }
}

/* ===== Footer Styling ===== */
.main-footer {
  background-color: #6c226d;
  color: #fff;
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.main-footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.main-footer a:hover {
  color: #ff4b2b;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links li {
  display: inline-block;
}

.main-footer p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

.main-footer p span {
  color: #ff4b2b;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .footer-links li {
    display: block;
  }

  .main-footer p {
    font-size: 13px;
  }
}

/* Default desktop styling */
.main-banner .left-content h2 {
  text-align: justify;
  /* keep justify on desktop */
  font-size: 50px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 72px;
}

.main-banner .left-content h2 em {
  color: #ed6819;
  font-style: normal;
}

.main-banner .left-content h2 span {
  color: #fe3f40;
}

/* ===== Mobile View ===== */
@media (max-width: 768px) {
  .main-banner .left-content h2 {
    text-align: center;
    /* override justify and center text */
    font-size: 36px;
    /* smaller font for mobile */
    line-height: 44px;
    /* adjust line height */
  }
}

/* Center form and stats row */
.hero-text-col .consult-form-container,
.hero-text-col .stats-row {
  justify-content: center;
  text-align: center;
}

.contact-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  background: #f1f1f1;
  /* Optional: clean background */
  border-radius: 8px;
  padding: 10px;
  /* space for images */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  /* fixed box height */
}

.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* 👉 Image cut nahi hogi */
}

/* ===== Gallery Section ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

/* Default Image Style */
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
  transition: transform 0.5s;
}

/* ===== Tablet View (768px) ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }

  .gallery-item img {
    height: 180px;
  }
}

/* ===== Mobile View (480px) ===== */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item img {
    height: 150px;
    /* perfect mobile size */
  }

  .gallery-title {
    font-size: 24px;
  }
}

.main-footer p {
  font-size: 13px;
  color: #cfcfcf;
}

.main-footer p span {
  font-weight: 600;
  color: #ffffff;
}

.info {
  background: #cba9cb;
  padding: 15px 18px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}