/* =========================================================
   GLOBAL CSS
========================================================= */

:root {
  --color-primary: #042f6f;
  --color-secondary: #0f2133;
  --color-light: #fff;
  --color-gold: #D4AF37;
  --color-green: #238b45;
  --color-linear-gradient: linear-gradient(
    135deg,
    #025e98 0%,
    #0f2133 100%
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #fff;
}


/* =========================================================
   CUSTOM CURSOR
========================================================= */

.cursor {
  position: fixed;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.9);
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.15s ease;
  z-index: 9999;
}

.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #eee;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
  border-bottom: 3px solid #000;
  background-color: #fff;
  color: var(--color-green);
  text-align: center;
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}


/* =========================================================
   NAVBAR / HEADER
========================================================= */

.navbar-header {
  width: 100%;
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-light);
  border-bottom: 1px solid #eee;
}

.logo-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-title h4 {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  font-family:  sans-serif;
}

.logo-title h2 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-primary);
  font-family:  sans-serif;
}

.logo-title h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--color-green);
  font-family: Arial, Helvetica, sans-serif;
}
.app-btn button{
    padding:10px 12px;
    background-color:var(--color-primary);
    color:#fff;
    font-size:16px;
    text-align:center;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
}



/* =========================================================
   STICKY HEADER
========================================================= */

#header.sticky {
  width: 100%;
  z-index: 20000;
  position: fixed;
  top: 0;
  box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3);
  background-color: #fffffff1;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.navbar ul li a {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}

.navbar ul li a.active {
  color: var(--color-green);
}

.navbar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 3px;
  background: var(--color-green);
  transition: 0.4s;
  border-radius: 20px;
}

.navbar ul li a:hover {
  color: var(--color-green);
}

.navbar ul li a:hover::after {
  width: 100%;
}
.evisa-item{
    position: relative;
}

.evisa-btns{
    position: absolute;
     display: flex;
     margin-left:-70px;
     padding:10px;
     gap:10px;
    
    
}

.evisa-btns button{
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size:16px;
}
.evisa-btns .btn-one{
    background-color:var(--color-green);
}
.evisa-btns .btn-two{
    background-color:var(--color-primary);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

#check {
  display: none;
}

.check-btn {
  font-size: 5vw;
  font-weight: 800;
  position: absolute;
  right: 10px;
  display: none;
  cursor: pointer;
}

#check:checked ~ .navbar ul {
  left: 0;
}

/*=====MODAL MENU========*/


/*=====HERO SECTION=========*/


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
  width: 100%;
  height: 75vh;
  position: relative;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}


/* HERO IMAGE */

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.288);
  z-index: 1;
}


/* =========================================================
   HERO TEXT
========================================================= */

.slide-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: min(500px, 84%);
  max-width: 500px;
  height: auto;
  box-sizing: border-box;
}

.slide-content h1 {
  margin: 0 0 25px;
  font-size: 3vw;
  color: var(--color-primary);
  line-height: 1.1;
  font-weight: 700;
  opacity: 0;
  transform: translateY(50px);
}

.slide-content h1 span {
  color: var(--color-green);
}

.slide-content p {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 800;
  max-width: 500px;
  text-align: justify;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(40px);
}


/* =========================================================
   BUTTONS
========================================================= */

.about-btn,
.secondary-btn {
  display: inline-block;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(
    135deg,
    #025e98 0%,
    #0f7bb8 100%
  );
  box-shadow: 0 10px 20px rgba(2, 94, 152, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  align-self: flex-start;
}

.about-btn {
  opacity: 0;
  transform: translateY(40px);
}

.about-btn:hover {
  background: #21b34b;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(2, 94, 152, 0.25);
}

.secondary-btn:hover {
  border: 1px solid #eee;
}


/* =========================================================
   HERO TEXT ANIMATION
========================================================= */

.slide.active .slide-content h1 {
  animation: textDown 1s ease forwards;
  animation-delay: 0.3s;
}

.slide.active .slide-content p {
  animation: textDown 1s ease forwards;
  animation-delay: 0.6s;
}

.slide.active .slide-content .about-btn {
  animation: textDown 1s ease forwards;
  animation-delay: 0.9s;
}

@keyframes textDown {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   HERO ARROWS
========================================================= */

.arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.arrow:hover {
  background: #21b34b;
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}


/* =========================================================
   HERO DOTS
========================================================= */

.dots {
  position: absolute;
  z-index: 5;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.dot.active {
  background: #21b34b;
  opacity: 1;
  transform: scale(1.3);
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
  padding: 80px 6%;
  background: #f8f8ff;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header span {
  display: inline-block;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 34px;
  color: #1d1d33;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header strong {
  color: var(--color-green);
  font-size: 16px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(2, 94, 152, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(2, 94, 152, 0.12);
}

.service-card i {
  font-size: 34px;
  color: var(--color-primary);
  margin-bottom: 18px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   E-VISA / SERVICE IMAGE SECTION
========================================================= */

.service-image {
  width: 100%;
  min-height: 100vh;
  padding: 60px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 30px 0;
  background: linear-gradient(
    135deg,
    #f7fbff 0%,
    #eef4f8 100%
  );
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.14),
    transparent 35%
  );
  pointer-events: none;
}


/* LEFT CONTENT */

.e-visa-content-left {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.e-visa-content-left h2 {
  font-size: 36px;
  color: #D4AF37;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.e-visa-content-left strong {
  font-size: 20px;
  color: #0f2133;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.e-visa-content-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #5b6472;
  max-width: 620px;
  margin-bottom: 24px;
}


/* RIGHT IMAGE */

.e-visa-right {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  min-height: auto;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 33, 51, 0.12);
  position: relative;
  z-index: 1;
}

.e-visa-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  display: block;
}


/* =========================================================
   GLOBAL PRESENCE / FLAG SECTION
========================================================= */

.flag-section {
  width: 100%;
  padding: 60px 6%;
  background: linear-gradient(
    135deg,
    #f7fbff 0%,
    #eef4f8 100%
  );
}

.flag-container {
  width: 100%;
  display: flex;
  align-items: center;
  height: auto;
}


/* LEFT FLAG CONTENT */

.flag-content {
  flex: 0 0 35%;
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(
    135deg,
    #0a2540,
    #1e3a8a
  );
  border-radius: 20px;
}

.flag-content::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(61, 207, 211, 0.2);
  border-radius: 50%;
}

.flag-content .subtitle span {
  color: var(--color-green);
}

.flag-content h2 {
  color: var(--color-gold);
  font-size: 28px;
  font-weight: 500;
}


/* FLAG SLIDER */

.flag-slider {
  flex: 0 0 65%;
  min-width: 0;
  padding: 20px;
  overflow: hidden;
}


/* MOVING TRACK */

.flag-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 8s linear infinite;
}


/* INDIVIDUAL FLAG CARD */

.flag-slide {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  background: var(--color-light);
  color: #000;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flag-slide h4 {
  color: var(--color-primary);
}


/* FLAG IMAGE */

.flag-image {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.flag-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}


/* FLAG ANIMATION */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section {
  background: #0F2133;
  padding: 80px 6%;
  width: 100%;
  min-height: 100vh;
}

.process-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.process-header span {
  display: inline-block;
  color: #8AB47D;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.process-header h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.process-header p {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}
/* =========================================
   IMMIGRATION RESULTS SECTION
========================================= */

.immigration-results {
    width: 100%;
    padding: 80px 6%;
    background: linear-gradient(
        135deg,
        #f7fbff 0%,
        #eef4f8 100%
    );
    overflow: hidden;
}

.immigration-results-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


/* =========================================
   SECTION TAG
========================================= */

.results-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-green);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================
   SECTION TITLE
========================================= */

.results-title {
    margin: 0 0 15px;
    color: var(--color-primary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================
   DESCRIPTION
========================================= */

.results-description {
    max-width: 750px;
    margin: 0 auto 45px;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   RESULTS GRID
========================================= */

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================
   RESULT BOX
========================================= */

.result-box {
    position: relative;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e4ebf2;
    box-shadow: 0 15px 40px rgba(15, 33, 51, 0.08);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}


/* Hover */

.result-box:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 45px rgba(15, 33, 51, 0.14);
}


/* =========================================
   NUMBER
========================================= */

.result-number {
    margin-bottom: 10px;
    color: var(--color-gold);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================
   HEADING
========================================= */

.result-box h3 {
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
}


/* =========================================
   TEXT
========================================= */

.result-box p {
    margin: 0;
    color: #66717d;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   DECORATIVE TOP LINE
========================================= */

.result-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 55px;
    height: 4px;
    transform: translateX(-50%);
    background: var(--color-green);
    border-radius: 0 0 10px 10px;
}


/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why-choose-section {
  padding: 50px 6%;
  background: #fff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: linear-gradient(
    145deg,
    #ffffff,
    #f6faff
  );
  border: 1px solid #e9eef4;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 12px 30px rgba(2, 94, 152, 0.06);
}

.why-card.active {
  border-left: 2px solid var(--color-green);
}

.why-card:hover {
  border: 1px solid var(--color-green);
  cursor: pointer;
}

.why-card i {
  font-size: 30px;
  color: var(--color-green);
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.why-card p {
  color: #5f6b76;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
  background: #0f2133;
  color: #fff;
  padding: 60px 6% 24px;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 14px;
  color: #fff;
}

.footer-brand p,
.footer-contact p,
.footer-links ul li a,
.footer-contact a {
  color: #cfd8e3;
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact a,
.footer-links ul li a {
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links ul li a:hover {
  color: #d4af37;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  text-align: center;
  color: #b8c3cf;
  font-size: 14px;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.contact-hero-content {
  height: 100%;
  width: 100%;
}

.contact-hero-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
  padding: 20px 6% 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.contact-card,
.contact-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 33, 51, 0.08);
  padding: 32px;
}

.contact-card h2,
.contact-form h2 {
  color: #0f2133;
  margin-bottom: 12px;
  font-size: 28px;
}

.contact-card p,
.contact-form p {
  color: #5b6472;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0f2133;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f6;
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-details i {
  color: #d4af37;
  font-size: 18px;
}


/* CONTACT FORM */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dce4eb;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  margin-bottom: 16px;
}

.contact-form button {
  background: linear-gradient(
    135deg,
    #025e98 0%,
    #0f7bb8 100%
  );
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}


/* =========================================================
   LEGAL PAGE
========================================================= */

.legal-page {
  padding: 60px 6% 80px;
  background: linear-gradient(
    135deg,
    #f9fbfe 0%,
    #f3f7fb 100%
  );
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(15, 33, 51, 0.08);
}

.legal-card h1 {
  color: #0f2133;
  font-size: 32px;
  margin-bottom: 12px;
}

.legal-card h2 {
  color: #025e98;
  font-size: 20px;
  margin: 24px 0 10px;
}

.legal-card p,
.legal-card li {
  color: #5b6472;
  line-height: 1.8;
  font-size: 16px;
}

.legal-list {
  padding-left: 20px;
}

.legal-card a {
  color: #025e98;
  text-decoration: none;
}

.legal-card a:hover {
  color: #d4af37;
}


/* =========================================================
   STUDY VISA / PAGE HERO
========================================================= */

.page-hero {
  background-color: red;
  padding: 100px 6%;
  color: #fff;
}
.page-hero-content span{
   color:red;
   font-weight:700;
}

.page-section {
  padding: 80px 6%;
  background: #fff;
}

.alt-section {
  background: #f8f8ff;
}


/* =========================================================
   INFO GRID
========================================================= */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.info-card,
.cta-box,
.step-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(2, 94, 152, 0.08);
}

.info-card h3,
.step-item h3,
.cta-box h3 {
  color: #0f2133;
  margin-bottom: 10px;
}

.info-card p,
.step-item p,
.cta-box p,
.content-grid p,
.content-grid li {
  color: #555;
  line-height: 1.7;
}


/* =========================================================
   STEP LIST
========================================================= */

.step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}


/* =========================================================
   CONTENT GRID
========================================================= */

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}


/* =========================================================
   PILL LIST
========================================================= */

.pill-list {
  list-style: none;
  padding: 0;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.pill-list li {
  background: #f1f7fb;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-block;
}


/* =========================================================
   RESPONSIVE - 900px
========================================================= */

@media (max-width: 900px) {
    
    .app-btn button{
 display:none;
}

  /* E-VISA */
  .service-image {
    flex-direction: column;
    min-height: auto;
  }

  .e-visa-content-left,
  .e-visa-right {
    width: 100%;
    flex: none;
  }

  .e-visa-right {
    min-height: 320px;
  }


  /* CONTACT */
  .contact-section {
    grid-template-columns: 1fr;
  }
   .immigration-results {
        padding: 70px 5%;
    }

    .results-title {
        font-size: 34px;
    }

    .results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .result-box {
        padding: 30px 18px;
    }

    .result-number {
        font-size: 36px;
    }





  /* WHY CHOOSE */
  .why-choose-grid {
    grid-template-columns: repeat(
      2,
      minmax(220px, 1fr)
    );
  }


  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }


  /* CONTENT */
  .content-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   RESPONSIVE - 767px
========================================================= */

@media (max-width: 767px) {

  /* MOBILE MENU */
  .check-btn {
    display: block;
  }

  .navbar ul {
    width: 40%;
    height: 100vh;
    position: fixed;
    background: var(--color-primary);
    top: 0;
    left: -100%;
    z-index: 1000;
    transition: 0.3s ease;
    display: block;
    cursor: pointer;
    padding: 30px 0;
  }

  .navbar ul li {
    text-align: center;
  }

  .navbar ul li a {
    color: #fff;
    font-size: 14px;
    display: block;
    padding: 10px 0;
  }

  .navbar ul li a::after {
    bottom: 0;
    left: 30%;
  }

  .navbar ul li a:hover::after {
    width: 40%;
  }


  /* HERO */
  .hero-slider {
    height: 75vh;
    min-height: 500px;
  }

  .slide-content {
    left: 7%;
    width: 86%;
    max-width: none;
  }

  .slide-content h1 {
    font-size: clamp(32px, 7vw, 52px);
  }

  .slide-content p {
    font-size: 16px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

}


/* =========================================================
   RESPONSIVE - 600px
========================================================= */

@media (max-width: 600px) {

  /* NAVIGATION */
  .navbar ul {
    width: 70%;
  }


  /* HERO */
  .hero-slider {
    height: 650px;
  }

  .slide img {
    object-position: center;
  }

  .slide-content {
    left: 25px;
    width: calc(100% - 50px);
    max-width: none;
    top: 52%;
    box-sizing: border-box;
  }

  .slide-content h1 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .slide-content p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .about-btn {
    padding: 12px 18px;
    font-size: 14px;
  }


  /* ARROWS */
  .arrow {
    top: auto;
    bottom: 65px;
    transform: none;
  }

  .prev {
    left: 25px;
  }

  .next {
    right: 25px;
  }


  /* SERVICES */
  .section-header span {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(
      2,
      minmax(0, 1fr)
    );
    gap: 14px;
  }

  .service-card {
    border-radius: 15px;
    padding: 15px;
  }

  .service-card i {
    font-size: 24px;
    margin-bottom: 12px;
    height: 50px;
    width: 50px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 12px;
  }


  /* FLAG SECTION */
  .flag-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .flag-content {
    width: 100%;
    flex: none;
    min-height: fit-content;
    padding: 26px;
  }

  .flag-slider {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding: 10px 0;
    overflow: hidden;
  }

  .flag-track {
    width: max-content;
  }

  .flag-image {
    width: 180px;
    height: 180px;
  }


  /* CONTACT */
  .contact-card,
  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
   .immigration-results {
        padding: 55px 5%;
    }

    .results-tag {
        font-size: 15px;
    }

    .results-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .results-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .result-box {
        padding: 28px 20px;
    }

    .result-number {
        font-size: 36px;
    }

    .result-box h3 {
        font-size: 18px;
    }

    .result-box p {
        font-size: 14px;
    }






  /* WHY CHOOSE */
  .why-choose-grid {
    grid-template-columns: 1fr;
  }


  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
  }


  /* SERVICE IMAGE */
  .service-image {
    padding: 40px 5%;
  }

  .e-visa-content-left h2 {
    font-size: 28px;
  }

  .e-visa-content-left p {
    font-size: 15px;
    line-height: 1.8;
  }


  /* CONTENT GRID */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}


/* =========================================================
   RESPONSIVE - 420px
========================================================= */

@media (max-width: 420px) {
    
    .logo-title h2 {
  font-size: 18px;
  font-weight: 700;

}
.logo-title h5 {
  font-size: 16px;
  font-weight: 700;
  font-family: sans-serif;
}
.app-btn button{
 display:none;
}

  /* HERO */
  .hero-slider {
    height: 650px;
  }

  .slide-content {
    width: calc(100% - 20px);
    left: 10px;
    right: auto;
    top: 52%;
    padding: 10px;
    box-sizing: border-box;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .about-btn {
    padding: 11px 16px;
    font-size: 13px;
  }


  /* HERO ARROWS */
  .prev {
    left: 20px;
  }

  .next {
    right: 20px;
  }


  /* SERVICES */
  .section-header span {
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 10px;
  }

  .service-card i {
    font-size: 20px;
    margin-bottom: 12px;
    height: 50px;
    width: 50px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 12px;
  }


  /* FLAG SECTION */
  .flag-content {
    padding: 18px;
    border-bottom: 12px solid red;
  }

  .flag-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .flag-track {
    width: max-content;
  }

  .flag-image {
    width: 150px;
    height: 150px;
  }


  /* E-VISA */
  .e-visa-content-left h2 {
    font-size: 26px;
  }

  .e-visa-content-left strong {
    font-size: 18px;
  }

  .e-visa-content-left p {
    font-size: 14px;
  }


  /* LEGAL PAGE */
  .legal-card {
    padding: 25px;
  }

  .legal-card h1 {
    font-size: 27px;
  }
  .immigration-results {
        padding: 45px 18px;
    }

    .results-title {
        font-size: 25px;
    }

    .results-description {
        font-size: 13px;
    }

    .result-number {
        font-size: 34px;
    }

}



/* =========================================================
   RESPONSIVE SECTION END
========================================================= */