@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Brand Colors */
:root {
  --black: #020202;
  --navy: #1A1A1A;
  --blue-dark: #333333;
  --blue: #CCCCCC;
  --red-dark: #CC0000;
  --red: #FF0000;
  --gold: #ffd700;
  --white: #fff;
}

body {
  font-family: 'Inter', 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-weight: 400;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, var(--black) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo {
  height: 60px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}nav a:hover, nav a.active {
  color: var(--red);
  background: rgba(255,0,0,0.1);
  transform: translateY(-2px);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
nav a:hover::after, nav a.active::after {
  width: 80%;
}

.hero {
  background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000000" stop-opacity="0.05"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
  color: var(--navy);
  padding: 100px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 10;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: var(--black);
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  z-index: 10;
}
.hero p {
  font-size: 1.4rem;
  margin-bottom: 35px;
  color: var(--black);
  font-weight: 500;
  position: relative;
  z-index: 10;
}
.cta-btn {
  background: var(--red-dark);
  color: var(--white);
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.about {
  background: var(--white);
  padding: 60px 0;
  text-align: center;
}
.about h2 {
  color: var(--black);
  margin-bottom: 18px;
  font-size: 2.1rem;
}
.about p {
  color: var(--black);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}
.about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.services {
  background: var(--white);
  padding: 60px 0;
}
.services h2 {
  color: var(--black);
  text-align: center;
  margin-bottom: 32px;
  font-size: 2rem;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(2,2,2,0.07);
  padding: 32px 24px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid var(--black);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 25px rgba(2,2,2,0.15);
  border-top: 5px solid var(--red);
  text-decoration: none;
  color: inherit;
}
.service-card h3 {
  color: var(--black);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-card:hover h3 {
  color: var(--red);
}

.countries {
  background: var(--white);
  padding: 60px 0;
}
.countries h2 {
  color: var(--black);
  text-align: center;
  margin-bottom: 32px;
  font-size: 2rem;
}
.country-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  margin-top: 24px;
}
.country-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(2,2,2,0.07);
  padding: 24px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.country-card:hover {
  box-shadow: 0 6px 24px rgba(2,2,2,0.13);
  transform: translateY(-6px) scale(1.04);
}
.country-card img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 3px solid var(--black);
  background: var(--white);
}
.country-card span {
  color: var(--black);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.5px;
}

.approved {
  background: #fff;
  padding: 48px 0 32px 0;
  text-align: center;
}
.approved-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.approved-logos {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}
.approved-logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(2,2,2,0.07);
  padding: 8px 18px;
}

.visa-success {
  background: var(--white);
  padding: 48px 0 32px 0;
  text-align: center;
}
.visa-carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 18px 0;
  scroll-behavior: smooth;
}
.visa-carousel::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 8px;
}
.visa-carousel img {
  height: 180px;
  width: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(2,2,2,0.09);
  background: #fff;
  border: 2px solid var(--black);
  flex-shrink: 0;
}

.ceo {
  background: var(--white);
  padding: 60px 0;
}
.ceo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  justify-content: center;
}
.ceo-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--black);
  background: var(--white);
}
.ceo-container div {
  max-width: 500px;
}
.ceo h2 {
  color: var(--black);
  margin-bottom: 10px;
}
.ceo h3 {
  color: var(--blue);
  margin-bottom: 12px;
}

.contact {
  background: var(--white);
  padding: 60px 0;
}
.contact h2 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 32px;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto 24px auto;
}
#contact-form input, #contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
#contact-form button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
#contact-form button:hover {
  background: var(--red);
}
.contact-info {
  text-align: center;
  color: var(--black);
}
.contact-info p {
  margin-bottom: 6px;
}

footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 0 0 0;
}
.footer-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover {
  color: var(--white);
  border-bottom: 2px solid var(--white);
}

@media (max-width: 900px) {
  .service-cards, .country-gallery, .ceo-container, .approved-logos, .visa-carousel {
    flex-direction: column;
    align-items: center;
  }
  .service-card, .country-card, .approved-logos img, .visa-carousel img {
    width: 90%;
    min-width: 0;
  }
  .visa-carousel img {
    height: 140px;
    width: 200px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .logo {
    height: 40px;
  }
  nav ul {
    gap: 12px;
    font-size: 0.98rem;
  }
  .ceo-photo {
    width: 80px;
    height: 80px;
  }
  .country-card img {
    width: 80px;
    height: 54px;
  }
  .visa-carousel img {
    height: 90px;
    width: 120px;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.98rem;
  }
} 

/* Subscribe Section */
.subscribe {
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.subscribe h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.subscribe-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(10px);
}
.subscribe-form input::placeholder {
  color: rgba(255,255,255,0.8);
}
.subscribe-form button {
  padding: 16px 30px;
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  border-left: none;
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.subscribe-form button:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.subscribe p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* How We Support Section */
.how-we-support {
  background: #f8f9fa;
  padding: 80px 0;
}
.how-we-support h2 {
  text-align: center;
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.section-intro {
  text-align: center;
  color: var(--blue-dark);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.support-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--red-dark);
}
.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.support-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: white;
}
.support-card h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.support-card p {
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.support-card h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.support-card ul {
  text-align: left;
  margin-bottom: 25px;
  padding-left: 20px;
}
.support-card li {
  color: var(--blue-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}
.support-btn {
  background: var(--red-dark);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}
.support-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(178, 1, 0, 0.3);
  text-decoration: none;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .subscribe h2 {
    font-size: 2rem;
  }
  .subscribe-form {
    flex-direction: column;
    gap: 15px;
  }
  .subscribe-form input,
  .subscribe-form button {
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
  }
  .support-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .how-we-support h2 {
    font-size: 2rem;
  }
}


/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(0,51,102,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  padding: 80px 0;
}
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-header h3 {
  color: var(--red-dark);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.contact-header h2 {
  color: var(--navy);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form-wrapper input,
.contact-form-wrapper select {
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus {
  outline: none;
  border-color: var(--red-dark);
}
.contact-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--red-dark);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.contact-submit-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(178, 1, 0, 0.3);
}
.contact-info {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  height: fit-content;
}
.contact-item {
  margin-bottom: 30px;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item h4 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-item p {
  color: var(--blue-dark);
  line-height: 1.6;
  margin: 0;
}

/* Location Section */
.location {
  background: white;
  padding: 80px 0;
}
.location h2 {
  text-align: center;
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.location-info h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.location-info > p {
  color: var(--blue-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.detail-item strong {
  color: var(--navy);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}
.detail-item p {
  color: var(--blue-dark);
  line-height: 1.6;
  margin: 0;
}
.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background: var(--navy);
  color: white;
  padding: 60px 0 20px 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-logo {
  height: 60px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.footer-section p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section li {
  margin-bottom: 10px;
}
.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: var(--gold);
}
.contact-details p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.contact-details strong {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design for Contact, Location, Footer */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-header h2 {
    font-size: 2rem;
  }
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location h2 {
    font-size: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}


/* Mobile Navigation */
  display: none; /* Hidden by default */
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.1);
}

/* General Typography Improvements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Button Improvements */
button, .btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Form Improvements */
input, select, textarea {
  font-family: 'Inter', sans-serif;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .container {
    max-width: 95%;
    padding: 0 20px;
  }
  .service-cards {
    gap: 20px;
  }
  .service-card {
    width: 280px;
  }
  .country-gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }
  .support-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
  .location-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border-radius: 0 0 12px 12px;
  }
  nav ul.mobile-open {
    display: flex;
  }
  nav a {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    text-align: center;
  }
  .hero {
    padding: 80px 0 60px 0;
  }
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  .container {
    padding: 0 15px;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: 100%;
    max-width: 400px;
  }
  .country-gallery {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
  }
  .country-card {
    padding: 15px 10px;
  }
  .country-card img {
    width: 40px;
    height: 30px;
  }
  .country-card span {
    font-size: 0.9rem;
  }
  .visa-carousel {
    gap: 15px;
  }
  .visa-card {
    min-width: 250px;
  }
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .form-row input,
  .form-row select {
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .approved-logos {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .approved-logos img {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 40px 0;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  .hero p {
    font-size: 1.1rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .nav-container {
    padding: 15px 0;
  }
  .logo {
    height: 50px;
  }
  .cta-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
  .service-card {
    padding: 25px 20px;
  }
  .country-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .country-card {
    padding: 12px 8px;
  }
  .country-card img {
    width: 35px;
    height: 25px;
  }
  .country-card span {
    font-size: 0.8rem;
  }
  .visa-card {
    min-width: 200px;
  }
  .support-card {
    padding: 25px 20px;
  }
  .contact-form-wrapper {
    padding: 25px 20px;
  }
  .subscribe-form {
    flex-direction: column;
    gap: 15px;
  }
  .subscribe-form input {
    width: 100%;
  }
  .subscribe-form button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .service-card {
    padding: 20px 15px;
  }
  .country-card {
    padding: 10px 5px;
  }
  .country-card span {
    font-size: 0.7rem;
  }
}

