 :root {
      --orange: #FF6633;
      --dark: #111827;
      --navy: #001E7F;
      --light-bg: #f8f9fc;
	  --bs-secondary: linear-gradient(to bottom, #c94b4b, #a61c6f);/*linear-gradient(to bottom, #B63A1E,#7A1E2C, #7A1E2C);*/


    }
  /* BODY TEXT */
body {
  font-family: 'Inter Tight', sans-serif;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
body {
  overflow-x: hidden;
}

    /* TOP BAR */
   /* TOPBAR (Header Style) */
.topbar {
  background: #fff;
  border-bottom: 0px solid #eee;
}

.logo img {
  height: 100px;
  transform: scale(1.4); /* increase value for more zoom */
}

/* CENTER BADGE */
.badge-img {
  height: 90px;
  transform: scale(1.3); /* increase value for more zoom */

}

/* CALL BUTTON (GRADIENT) */
.btn-call {
  background: linear-gradient(to left, #c94b4b, #a61c6f); /*linear-gradient(to left, #f15a29, #B63A1E);*/
  color: #fff;
  border: none;
  font-weight: normal; /* reduce thickness */
  transition: transform 0.3s ease;
}

.btn-call:hover {
  opacity: 0.9;
  color: #fff;
  background: linear-gradient(to right, #c94b4b, #a61c6f);/*linear-gradient(to right, #f15a29, #B63A1E);*/
  transform: scale(1.1);
}

/* WHATSAPP BUTTON */
.btn-success {
  background-color: #25D366;
  border: none;
  font-weight: normal; /* reduce thickness */
  transition: transform 0.3s ease;

}
.btn-success:hover {
  opacity: 0.9;
  transform: scale(1.1);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.topbar-buttons a {
  font-size: 18px;  
}

@media (max-width: 768px) {

  .topbar-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Logo smaller */
  .logo img {
    height: 70px;
  }

  /* Hide badge (or reduce if needed) */
  .badge-wrap {
    display: none;
  }
.logo img,
  .badge-img {
    transform: scale(1); /* reset on mobile */
  }
  /* Buttons full width */
  .topbar-buttons {
    width: 100%;
    justify-content: center;
  }

  .topbar-buttons .btn {
    flex: 1;
    font-size: 13px;
    padding: 8px 10px;
  }
}



    /* HERO */
    .hero-section {
      background: var(--bs-secondary);
      min-height: 90vh;
      position: relative;
      overflow: hidden;
    }
    .hero-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-badge { background: rgba(255,102,51,.15); border: 1px solid var(--orange); color: #ffff; font-size: 13px; padding: 5px 14px; border-radius: 50px; display: inline-block; margin-bottom: 16px; }
    .hero-title {
  font-size: 55px;   /* reduce from 60px */
  font-weight: 800;  /* lighter than 700 */
  line-height: 1.2;
  color: #fff;
}

.hero-sub {
  font-size: 18px;
  font-weight: 600;
  letter-spacing:0.7px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  
}

    .hero-stat {
  background: transparent;   /* remove box look */
  border: none;
  padding: 0;
}

/* Numbers */
.hero-stat .num {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

/* Labels */
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* CENTER DIVIDER */
.divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.3);
}


    /* FORM CARD */
   .form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  padding: 30px;   /* reduce from 60px */
  max-width: 520px; /* important */
  margin-left: auto; /* align right */
}

    .form-card h4 { color: var(--navy); margin-bottom: 20px;font-size: 28px;
  font-weight: 700; }
    .form-control, .form-select {
  height: 44px;
  font-size: 14px;
  border-radius: 6px;
}
.btn-callsubmit {
  background: linear-gradient(80deg, #c94b4b, #a61c6f);/*linear-gradient(80deg, #ff5a2f, #ff2e63);*/
  color: #fff;
  border: none;
  font-weight: 500;  /* lighter */
  border-radius: 6px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.btn-callsubmit:hover {
  transform: scale(1.05); /* reduce from 1.1 */
  color: #fff;
  background: linear-gradient(260deg, #c94b4b, #a61c6f);/*linear-gradient(260deg, #ff5a2f, #ff2e63);*/
}
.btn-callcheck {
  background: linear-gradient(to bottom, #ff5a2f, #ff2e63);
  color: #fff;
  border: none;
  font-weight: 500;  /* lighter */
  border-radius: 6px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.btn-callcheck:hover {
  transform: scale(1.05); /* reduce from 1.1 */
  color: #fff;
  background: linear-gradient(to top, #ff5a2f, #ff2e63);
}

    .form-control:focus, .form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,102,51,.12); }
    .btn-orange { background: var(--bs-secondary); color: #fff; border: none; border-radius: 8px; padding: 12px; font-weight: 600; font-size: 15px; transition: .2s; }
    .btn-orange:hover { background: #e5521f; color: #fff; }
    .btn-outline-orange { border: 2px solid var(--orange); color: var(--orange); background: transparent; border-radius: 8px; padding: 11px 22px; font-weight: 600; transition: .2s; }
    .btn-outline-orange:hover { background: var(--orange); color: #fff; }

@media (max-width: 768px) {

  .hero-section {
    text-align: center;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .form-card {
    padding: 20px;
    border-radius: 14px;
  }

  .form-card h4 {
    font-size: 20px;
  }

  .hero-stat .num {
    font-size: 1.5rem;
  }

  .divider {
    height: 35px;
  }
}
@media (min-width: 992px) {
  .col-lg-7 {
    display: flex;
    justify-content: flex-end;
  }
}


   /* ABOUT */
   
   
   /* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
  line-height: 1.4;
}

.section-title span {
  color: #ff5a2f;  /* orange highlight */
  font-weight: 700;
}

/*.section-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.section-title span {
  color: var(--orange);
}*/
.about-section p {
  text-align: justify;
  font-size: 18px;   /* increased from 16px */
  line-height: 1.6;      /* more breathing space */
  letter-spacing:1px;
  color: #6c757d;
}

.about-section .col-lg-10 {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 50px;
  }


/* WRAPPER */
.stat-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  text-align: center;
}

/* EACH ITEM */
.stat-item {
  min-width: 140px;
}

/* NUMBER */
.stat-item .big {
  font-size: 64px;
  font-weight: 700;
  color: #2b2b2b;
  line-height: 1.1;
}

/* LABEL */
.stat-item p {
  font-size: 18px;
  color: black;
  margin-top: 6px;
  text-align: center;   /* center text */
  font-weight: 600;     /* make bold */
}

/* PERFECT DIVIDER */
.divider1 {
  width: 1px;
  height: 88px;
  background: rgba(0,0,0,0.2);
}

@media (max-width: 768px) {

  .section-title {
    font-size: 24px;
  }
.about-section .col-lg-10 {
    margin-bottom: 50px;
  }
  
  .stat-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .divider1 {
    display: none; /* clean mobile look */
  }

  .stat-item .big {
    font-size: 40px;
  }

  .stat-item p {
    font-size: 13px;
  }

  .stat-box .big {
    font-size: 32px;
  }

  .mara-card {
    padding: 20px;
  }

   .about-section p {
    text-align: justify;
    text-justify: inter-word;
    font-size: 15px;
    line-height: 1.8;
	word-spacing: 0.5px;
  }
}


  
/* MARA CARD - BIGGER */
.mara-card {
  max-width: 1200px;              /* increased width */
  background: linear-gradient(135deg, #ffffff, #f2f6ff);
  border-left: 6px solid #ad2769;
  border-radius: 18px;
  padding: 50px 60px;             /* more spacing */
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* TEXT SIZE IMPROVEMENT */
.mara-card h5 {
  font-size: 26px;
}

.mara-card h6 {
  font-size: 28px;
}

.mara-card p {
  font-size: 18px;
  line-height: 1.9;
}

/* AGENT IMAGE - BIGGER LIKE SCREENSHOT */
.agent-img {
  width: 100%;
  max-width: 340px;     /* control size */
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  margin: auto;
}

.agent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* keeps image clean */
  display: block;
}
.agent-img {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .agent-img {
    max-width: 260px;
    height: 300px;
  }
}



/* COLORS */
.text-orange {
  color: #f15a29; /* closer to screenshot */
  font-weight: 600;
}

.text-navy {
  color: #1c1c2d;
  font-weight: 700;
}

    /* SECTION TITLES */
    .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
    .section-title span { color: var(--orange); }
    .section-sub { color: #666; max-width: 640px; }

    /* WHY CHOOSE */
    .why-sectiongo { background: var(--dark); }
    .feature-icon { width: 56px; height: 56px; background: rgba(255,102,51,.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .feature-icon i { color: var(--orange); font-size: 2rem; }
    .feature-item h6 { color: #fff; margin-bottom: 4px; }
    .feature-item p { color: rgba(255,255,255,.55); font-size: 15px; margin: 0; }

    /* POINTS CALCULATOR */
    
    .accordion-button { font-weight: 600; }
    .accordion-button:not(.collapsed) { color: var(--orange); background: rgba(255,102,51,.06); }
    .accordion-button:focus { box-shadow: none; }
    .accordion-button::after { filter: none; }
	/* LEFT CONTENT WRAPPER */
.points-content {
  max-width: 540px;
}
.points-section{
   background-color: #f8f9fa;
}
.points-section .text-muted {
  line-height: 2;
  font-weight: 500;
  font-size: 16px;
  color:#c7ccd1; /* smoother grey */
}

/* JUSTIFY TEXT */
.text-justify {
  text-align: justify;
  line-height: 1.7;
}

/* VISA CARDS */
.visa-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--orange);
  transition: 0.3s;
}

/* HOVER EFFECT */
.visa-card:hover {
  transform: translateY(-5px);
}

/* TITLE */
.visa-title {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 4px;
}

/* SMALL TEXT */
.visa-card small {
  font-size: 14px;
  color: #666;
}

	

    /* SERVICES */
    .service-card {
		background: #fff;
	border-radius: 14px; 
	padding: 28px;
	box-shadow: 0 4px 20px rgba(0,0,0,.06); 
	border-top: 3px solid transparent;
	transition: .25s;
	height: 100%; 
	text-align: center;
	display: flex;
  flex-direction: column; /* important */
	}
    .service-card:hover { border-top-color: #ad2769; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
    .service-icon { width: 72px; height: 72px; background: rgba(255,102,51,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; margin: 0 auto 16px; }
    .service-icon i { color: #ad2769; font-size: 2rem; }
	.service-card a {
  width: fit-content;
  align-self: center;
  margin-top: auto; /* keeps button at bottom */
}
  
	.service-card p {
  line-height: 1.7;   /* increases readability */
  font-size: 16px;    /* optional: slightly better size */
  margin-bottom: 18px;
 color: rgba(255,255,255,.6);  /* space before button */
 flex-grow: 1; /* pushes button down */
}
  
.service-card {
  padding: 30px 26px; /* slightly more inner spacing */
}

.service-card h5 {
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card.text-muted {
  color: #6c757d !important;
  line-height: 1.7;
}
/* CALL BUTTON (GRADIENT) */
.btn-callservice {
  background:  linear-gradient(to right, #c94b4b, #a61c6f);/*linear-gradient(to right, #f15a29, #B63A1E);*/
  color: #fff;
  border: none;
  font-weight: normal; /* reduce thickness */
}

.btn-callservice:hover {
  opacity: 0.9;
  color: #fff;
  background:  linear-gradient(to left, #c94b4b, #a61c6f);
}

    /* ROADMAP */
    /* SECTION */
.roadmap-section {
  background: linear-gradient(to bottom, #c94b4b, #a61c6f);
}

/* FIX CENTER GAP */
.roadmap-section .row {
  justify-content: center;
}

/* CARD */
.step-card {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 10px 20px;
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s;
}


/* ICON */
.step-icon {
  width: 65px;
  height: 65px;
  background:linear-gradient(to bottom, #c94b4b, #a61c6f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-icon i {
  color: #fff;
  font-size: 22px;
}

/* TITLE */
.step-card h6 {
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.step-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
  min-height: 60px;
}

/* HOVER */
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

  



    /* WHY AUSTRALIA */
    /* WHY AUSTRALIA */
	.section-titleaus {
  font-size: 2.2rem;
  font-weight: 700;
}

.section-titleaus span {
  color: var(--orange);
}
.australia-section {
  background: #fff;
  padding: 80px 0;
}

/* Image */
.australia-img {
  border-radius: 18px;
  overflow: hidden;
  height: 620px;
  background: #e9eef7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.australia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 10s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
/* Badge */
.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Text */
.australia-section h2 {
  font-weight: 600;
}

.australia-section p {
  line-height: 1.7;
  font-size: 17px;
}

/* Checklist */
.check-list li {
  padding: 8px 0;
  font-size: 17px;
  display: flex;
  align-items: flex-start;
}

.check-list li i {
  color: var(--orange);
  margin-right: 10px;
  font-size: 16px;
  margin-top: 3px;
}

/* Button */
.australia-section .btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.australia-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


   .testimonial-section {
  background: #f8f9fc;
}


/* Card */
.testimonial-box {
  background: #ffffff;          /* ✅ plain white */
  color: #333;                  /* ✅ dark text */
  border-radius: 18px;
  padding: 26px 22px;
  min-height: 260px;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;       /* ✅ soft border */
  box-shadow: 0 6px 20px rgba(0,0,0,0.05); /* light shadow */
   overflow: visible;   /* allow avatar outside card */
  padding-top: 40px;   /* extra space for avatar */
}
/* Equal height content */
.testimonial-inner {
  margin-top: 35px;
  flex-grow: 1;
 
  display: flex;
  flex-direction: column;
}

/* REMOVE DARK + ORANGE BACKGROUNDS */
.testimonial-box.orange,
.testimonial-box.dark {
  background: #ffffff;   /* same white */
  color: #333;
}
/* Swiper slide */
.swiper-slide {
  overflow: visible !important;
}
/* Avatar */
/* Avatar */
.avatar {
  width: 65px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #c94b4b, #a61c6f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Text */
.testimonial-inner h5 {
  margin-bottom: 4px;
}

.testimonial-inner small {
  opacity: 0.8;
  font-size: 13px;
}

.stars {
  margin: 8px 0;
  color: #ffd700;
  font-size: 14px;
}

/* Fix long text */
.testimonial-inner p {
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  
}

/* Hover */
.testimonial-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Swiper */
.testimonialSwiper {
  padding-bottom: 10px;
}

/* Dots below */
.swiper-pagination {
  position: relative;
  margin-top: 25px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: var(--orange);
  width: 18px;
  border-radius: 10px;
}

/* Banner */
.happy-banner {
  background: linear-gradient(135deg, var(--orange), #e5400a);
  border-radius: 18px;
  padding: 45px 30px;
  text-align: center;
  color: #fff;
}
.happy-banner h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.happy-banner p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}


   /* SUCCESS SECTION */
.success-section {
  background: #ffff;
}

/* Card */
.success-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.success-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #ff6633;
}

/* Dots */
.swiper-pagination {
  position: relative;   /* remove absolute */
  margin-top: 25px;     /* space below cards */
  text-align: center;
}

/* Dots style */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: var(--orange);
}
	


/* Carousel arrows styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #ff6633;
  border-radius: 50%;
  padding: 18px;
}
.carousel-indicators {
  bottom: -40px;
  
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color:blue;
}

.carousel-indicators .active {
  background-color: var(--orange);
}


   /* CONTACT SECTION */
.contact-section {
  background: linear-gradient(135deg, #c94b4b, #a61c6f);/*linear-gradient(135deg, #a52a6b, #ff6a2f);*/
}
/* FORM CARD */
/* Form Card */
.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
  .contact-form-card .form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  padding: 30px;   /* reduce from 60px */
  max-width: 520px; /* important */
  margin-left: auto; /* align right */
}

.contact-form-card .form-card h4 { color: var(--navy); margin-bottom: 20px;font-size: 28px;
  font-weight: 700; }
   .contact-form-card.form-control, .form-select {
  height: 44px;
  font-size: 14px;
  border-radius: 6px;
}
.contact-form-card.btn-callsubmit {
  background: linear-gradient(80deg, #c94b4b, #a61c6f);/*linear-gradient(80deg, #ff5a2f, #ff2e63);*/
  color: #fff;
  border: none;
  font-weight: 500;  /* lighter */
  border-radius: 6px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.contact-form-card.btn-callsubmit:hover {
  transform: scale(1.05); /* reduce from 1.1 */
  color: #fff;
  background: linear-gradient(260deg, #c94b4b, #a61c6f);/*linear-gradient(260deg, #ff5a2f, #ff2e63);*/
}


    .contact-form-card .form-control:focus, .form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,102,51,.12); }



/* Contact Info Cards */
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: 0.3s;
}

/* Hover effect */
.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* Icons */
.contact-card i {
  color: var(--orange);
  font-size: 20px;
  min-width: 24px;
}

/* Text */
.contact-card h6 {
  color: #fff;
  margin-bottom: 3px;
  font-size: 15px;
}

.contact-card p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* Section Text */
.contact-section p {
  font-size: 14px;
}

.map-box {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden; /* IMPORTANT */
  border: 2px dashed rgba(255,255,255,0.2);
}

/* Make iframe fill the box */
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


    footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

/* Social Icons */
footer .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

footer .social-icon:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

    
    /* CTA BANNER */
.cta-banner {
  background: var(--bs-secondary);
  padding: 70px 0;
  text-align: center;
}

.cta-banner h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Button styling */
.cta-banner .btn {
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover effect */
.cta-banner .btn:hover {
  background: var(--bs-secondary);
  color: #fff;
  transform: translateY(-2px);
}
/*whysection*/
.why-section {
  background: #ffffff;
}
.why-choose {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

/* Small orange heading */
.sub-title {
  color: #ff6a3d;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Main heading */
.main-title {
  font-size: 40px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Description text */
.description {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.8;
}
/* CARD */
.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  transition: 0.3s;
  border: 1px solid #eee;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}
/* ICON BOX */
.why-icon {
  width: 65px;
  height: 65px;
  background: #f3e6ee; /* light pink */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

/* ICON */
.why-icon i {
  font-size: 40px;
  color: #a52a6b; /* theme color */
}

/* TITLE */
.why-card h6 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
	  font-size: 19px;
}

/* TEXT */
.why-card p {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
}


    /* WHY US grid */
    .why-grid-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 24px; transition: .25s; }
    .why-grid-card:hover { background: rgba(255,255,255,.09); }
    .why-grid-card i { color: var(--orange); font-size: 1.5rem; margin-bottom: 12px; display: block; }
    .why-grid-card h6 { color: #fff; }
    .why-grid-card p { color: rgba(255,255,255,.55); font-size: 13px; margin: 0; }

 html {
  font-size: 95%; /* try 85%–95% */
}
section {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}