/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

/* Navbar */
.navbar {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  padding: 18px 80px;
  background: transparent; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: background 0.3s ease;
}

.logo {
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #263073;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li{
  list-style: none;
}

.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
  padding-bottom: 4px;
}

.nav-links a:hover{
  color: #263073;
}

.nav-links a.active {
  color: #0077cc;
}

.btn-appointment {
  background-color: #263073;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-appointment:hover {
  background-color: #0077cc;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('../image/sydney-opera-house-dec-2008.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 35px;
  line-height: 1.3;
  font-weight: 700;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn.red {
  background-color: #263073;
  color: #fff;
}

.btn.red:hover{
  background-color: #0077cc
}

.btn.green {
  background-color: #fff;
  color: #00b47e;
}

.btn.green:hover{
  background-color: #e8f9f2;
}

.h-divider {
  width: 60%;
  margin: 40px auto 25px;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.visa-types {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 1rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.85);
} 

/* who we are */
.who-we-are {
  padding: 100px 10%;
  font-family: "Poppins", sans-serif;
}

.who-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 70px;
}

.who-text {
  flex: 1;
  min-width: 320px;
  max-width: 650px;
}

.section-subtitle {
  color: #1b1f3b;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 15px;
  position: relative;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 25px;
  line-height: 1.3;
}

.who-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16px;
}

.signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.signature img {
  width: 120px;
  height: auto;
}

.signature h4 {
  font-size: 20px;
  color: #1c1c1c;
  margin-bottom: 4px;
}

.signature p {
  color: #777;
  font-size: 14px;
}

.who-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* transtition section */
.transition-section {
  background-color: #1b1f3b; 
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-section h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}

/* experience section */
.experience-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 10%;
  gap: 40px;
}

.experience-left {
  flex: 1 1 200px;
}

.experience-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1d2b64;
  margin: 0;
}

.experience-left h3 {
  font-size: 48px;
  font-weight: 500;
  margin: 10px 0 0 0;
  color: #1a1a1a;
}

.experience-left p {
  font-size: 36px;
  font-weight: 500;
  color: #1d2b64;
  margin: 10px 0 0 0;
  line-height: 1.3;
}

.experience-right {
  flex: 2 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.exp-box {
  display: flex;
  flex-direction: column;
}

.exp-box h1 {
  font-size: 72px;
  color: #1d2b64;
  margin: 0;
  font-weight: 500;
}

.exp-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 10px 0 5px 0;
}

.exp-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}

.expertise {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.expertise .container {
  max-width: 1200px;
  margin: 0 auto;
}

.expertise h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.expertise .divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #1d2b64;
  margin: 12px auto 50px;
  border-radius: 3px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
  justify-items: center;
}

.expertise-box {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.expertise-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.expertise-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.expertise-box:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #1d2b64;
}

.expertise-box:nth-of-type(1):hover{
  background-image: url("/image/AdobeStock_261703628-scaled.webp") ;
}
.expertise-box:nth-of-type(2):hover{
  background-image: url("../image/images\ \(2\).jpeg");
}
.expertise-box:nth-of-type(3):hover{
  background-image: url("../image/depositphotos_123508612-stock-photo-female-doctor-wearing-wearing-uniform.jpg");
}
.expertise-box:nth-of-type(4):hover{
  background-image: url("../image/images\ \(1\).jpeg");
}
.expertise-box:nth-of-type(5):hover{
  background-image: url("../image/3-Tips-to-Bridge-the-Communication-Gap-Between-You-and-Your-Attorney.jpeg");
}
.expertise-box:nth-of-type(6):hover{
  background-image: url("../image/istockphoto-611768440-612x612.jpg") ;
}

.expertise-box:hover::before,
.expertise-box:hover::after {
  opacity: 1;
}

.expertise-box i {
  font-size: 36px;
  color: #1d2b64;
  flex-shrink: 0;
  z-index: 2;
  transition: color 0.3s ease;
}

.expertise-box .text {
  z-index: 2;
}

.expertise-box .text h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.expertise-box .text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.expertise-box:hover i,
.expertise-box:hover .text h3,
.expertise-box:hover .text p {
  color: #fff;
  z-index: 2;
}

/* why choose us */
.why-choose-us {
  position: relative;
  background: url('../image/angry-dissatisfied-businesswoman-arguing-with-contractor--pointing-at-contract-695760034-5b0228a13418c600389969d9.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.why-choose-us .overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 30, 70, 0.85); 
  z-index: 1;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose-us .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

.text-section {
  flex: 1;
  min-width: 300px;
}

.text-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.text-section p {
  font-size: 16px;
  color: #dbe5f5;
  margin-bottom: 30px;
  line-height: 1.7;
}

.text-section .btn {
  background: #007bff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.text-section .btn:hover {
  background: #0056b3;
}

/* stats */
.stats-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  flex: 1;
  min-width: 280px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box i {
  font-size: 42px;
  color: #007bff;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 15px;
  color: #dbe5f5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  border-color: #007bff;
}

/* reviews */
.testimonials-section {
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('image/gavel-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.85);
}

.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.testimonials-container h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.testimonials-subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 60px;
}

Google widget wrapper styling 
.google-reviews-widget {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 700px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-reviews-widget:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.google-reviews-widget * {
  color: #fff !important;
}

.google-reviews-widget img {
  border-radius: 50%;
  border: 2px solid #00b4d8;
}

.google-reviews-widget .google-logo {
  filter: brightness(0) invert(1);
} 

/* before footer */
.before-footer-section {
  position: relative;
  height: 50vh;
  background-image: url("../image/passport-with-stamps.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.before-footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.before-footer-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-in-out;
}

.before-footer-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.before-footer-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #ddd;
  line-height: 1.7;
}

.divider {
  width: 60px !important;
  height: 4px;
  background-color: #263073;
  margin: 0 auto 25px auto;
}

.before-footer-btn {
  background-color: #263073;
  color: #fff;
  padding: 14px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.before-footer-btn:hover {
  background-color: #5e9eff;
  transform: translateY(-3px);
}

/* footer */
.footer {
  background-color: #0a1932;
  color: #fff;
  text-align: center;
  padding: 80px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
}

.footer h2 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-text {
  max-width: 700px;
  margin: 20px auto 40px;
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.footer-socials a {
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #0077cc;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  font-size: 14px;
  color: #aaaaaa;
}

/* === ANIMATION === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
/* ========================================== */
/* NAVBAR RESPONSIVENESS                      */
/* ========================================== */

.menu-icon {
  display: none;
}

@media (max-width: 1100px) {
  .navbar {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .btn-appointment {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(240, 234, 234, 0.9);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 25px 0;
    text-align: center;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.9rem;
    color: #fff;
  }

  .menu-icon {
    display: block;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
  }

  .btn-appointment {
    display: none;
  }
}

/* responsiveness */
@media (max-width: 786px) and (min-width: 300px) {
  .navbar {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .btn-appointment {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 25px 0;
    text-align: center;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.94rem;
    color: #333;
  }

  .menu-icon {
    display: block;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
  }

  .btn-appointment {
    display: none;
  }

  .hero {
    height: 80vh;
    background-position: center;
    background-size: cover;
    padding: 60px 20px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .h-divider {
    width: 70%;
    margin: 25px auto 15px;
  }

  .visa-types {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.9rem;
  }

  .who-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }

  .section-subtitle::before {
    display: none;
  }

  .section-title {
    font-size: 32px;
  }

  .signature {
    justify-content: center;
  }

  .who-text {
    max-width: 100%;
  }

  .image-wrapper {
    max-width: 80%;
  }

  .transition-section {
    padding: 3rem 1.5rem;
  }

  .transition-section h2 {
    font-size: 1.5rem;
  }

  .experience-section {
    height: fit-content;
    flex-direction: column;
    padding: 60px 8%;
    text-align: center;
  }

  .experience-left {
    height: fit-content !important;
  }

  .experience-left h2,
  .experience-left h3,
  .experience-left p {
    font-size: 36px;
  }

  .experience-right {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .exp-box h1 {
    font-size: 56px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-box {
    flex-direction: row;
    padding: 20px;
  }
  .expertise-box i {
    font-size: 30px;
  }

  .expertise {
    padding: 80px 15px;
  }
  .expertise h2 {
    font-size: 28px;
  }
  .expertise-box {
    padding: 22px;
  }

  .why-choose-us .content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  .before-footer-content h1 {
    font-size: 2rem;
  }

  .before-footer-content p {
    font-size: 1rem;
  }

  .before-footer-btn {
    padding: 12px 28px;
  }

  .footer-container {
    text-align: center;
  }
  .footer-subscribe form {
    flex-direction: column;
  }
  .footer-subscribe input,
  .footer-subscribe button {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .footer-socials {
    justify-content: center;
  }
}




@media (max-width: 400px) {
  .navbar {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .btn-appointment {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 25px 0;
    text-align: center;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.94rem;
    color: #333;
  }

  .menu-icon {
    display: block;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
  }

  .btn-appointment {
    display: none;
  }

  .hero {
    height: 80vh;
    background-position: center;
    background-size: cover;
    padding: 60px 20px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .h-divider {
    width: 70%;
    margin: 25px auto 15px;
  }

  .visa-types {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.9rem;
  }

  .who-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }

  .section-subtitle::before {
    display: none;
  }

  .section-title {
    font-size: 32px;
  }

  .signature {
    justify-content: center;
  }

  .who-text {
    max-width: 100%;
  }

  .image-wrapper {
    max-width: 80%;
  }

  .transition-section {
    padding: 3rem 1.5rem;
  }

  .transition-section h2 {
    font-size: 1.5rem;
  }

  .experience-section {
    height: fit-content;
    flex-direction: column;
    padding: 60px 8%;
    text-align: center;
  }

  .experience-left {
    height: fit-content !important;
  }

  .experience-left h2,
  .experience-left h3,
  .experience-left p {
    font-size: 36px;
  }

  .experience-right {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .exp-box h1 {
    font-size: 56px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-box {
    flex-direction: row;
    padding: 20px;
  }
  .expertise-box i {
    font-size: 30px;
  }

  .expertise {
    padding: 80px 15px;
  }
  .expertise h2 {
    font-size: 28px;
  }
  .expertise-box {
    padding: 22px;
  }

  .why-choose-us .content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  .before-footer-content h1 {
    font-size: 1.6rem;
  }

  .before-footer-content p {
    font-size: 0.9rem;
  }

  .before-footer-btn {
    padding: 10px 22px;
  }

  .footer-container {
    text-align: center;
  }
  .footer-subscribe form {
    flex-direction: column;
  }
  .footer-subscribe input,
  .footer-subscribe button {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .footer-socials {
    justify-content: center;
  }
  
}

/* ==========================
   Responsive styles for <400px
   ========================== */
@media (max-width: 399px) {

  .navbar {
    padding: 10px 15px;
  }

  .logo {
    font-size: 1rem;
  }

  .menu-icon {
    font-size: 1.4rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .hero {
    height: 70vh;
    padding: 40px 10px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .visa-types {
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
  }

  .who-container {
    gap: 30px;
  }

  .who-text {
    max-width: 100%;
  }

  .image-wrapper {
    max-width: 90%;
  }

  .transition-section {
    padding: 2.5rem 1rem;
  }

  .transition-section h2 {
    font-size: 1.3rem;
  }

  .experience-section {
    padding: 40px 5%;
  }

  .experience-left h2,
  .experience-left h3,
  .experience-left p {
    font-size: 28px;
  }

  .exp-box h1 {
    font-size: 48px;
  }

  .expertise h2 {
    font-size: 24px;
  }

  .expertise-box {
    flex-direction: column;
    padding: 15px;
  }

  .expertise-box i {
    font-size: 26px;
  }

  .why-choose-us .content {
    gap: 20px;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  

  .footer-container {
    text-align: center;
  }

  .footer-subscribe form {
    flex-direction: column;
  }

  .footer-subscribe input,
  .footer-subscribe button {
    width: 100%;
    margin-bottom: 8px;
  }

  .footer-socials {
    justify-content: center;
  }
}


/* ---- Responsive ---- */
@media (max-width: 992px) {
  
  .stats-section {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

