* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background: #121212;
  color: #f5f5f5;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 2rem 0;
}
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.containerhed {
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  display: flex;
}

/* Logo */
.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

nav a,
nav button {
  position: relative;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  font-weight: 600;
  padding: 5px 0;
  text-decoration: none;
}

/* underline animation */
nav a::after,
nav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #e60000;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav button:hover::after,
nav a.active::after,
nav button.active::after {
  width: 100%;
}

nav a:hover,
nav button:hover,
nav a.active,
nav button.active {
  color: #e60000;
}

/* Dropdown */
.dropdown,
.mega-dropdown {
  position: relative;
}

.dropdown-menu,
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.dropdown:hover > .dropdown-menu,
.mega-dropdown:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a,
.dropdown-menu button {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  text-align: left;
  background: none;
  border: none;
  width: 210px;
  cursor: pointer;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
  background: #f9f9f9;
  color: #e60000;
}

/* Mega Menu Left Side */
.mega-menu {
  top: 0;
  right: 100%;
  left: auto;
  width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.mega-menu h4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #e60000;
}

.mega-menu a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  text-decoration: none;
  color: #333;
  width: 150px;
}

.mega-menu a:hover {
  color: #e60000;
}

/* Container flex */
header .containerhed {
  display: flex;
  padding: 12px 20px;
}

/* Hamburger */
.menu-btn {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* hidden desktop */
}

/* Mobile menu (hidden by default) */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  border-top: 2px solid #e60000;
}
.logo {
  flex: 0 0 auto; /* keeps logo from stretching */
}
/* Show when open */
.mobile-menu.open {
  max-height: 1000px; /* big enough for content */
}

/* Mobile menu links/buttons */
.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  text-align: left;
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: #f9f9f9;
  color: #e60000;
}

/* Accordion dropdowns */
.accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}
.accordion.open {
  max-height: 600px;
}

/* Accordion titles inside mobile */
.mobile-category-title {
  padding: 8px 20px;
  color: #e60000;
  font-size: 14px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .menu-btn {
    display: block;
    position: absolute;
    top: 25px;
    right: 15px;
  }
}

/* ===============================
   Hero
   =============================== */
.hero {
  height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  border-bottom: 5px solid #ff4d4d;
  background: url("../images/contact.jpg") center/cover no-repeat;
}
.hero-content {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(2px);
}
.hero-content h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 0.6rem;
  color: #c62127;
  text-shadow: 0 2px 14px rgba(198, 33, 39, 0.3);
}
.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 1.4rem;
  color: #e8e8e8;
}
.cta-button {
  display: inline-block;
  background: #c62127;
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.25s ease;
}
.cta-button:hover {
  background: #a61b20;
  transform: translateY(-1px);
}

/* ===============================
   Section Headings
   =============================== */
section {
  padding: 4rem 0;
}
h2 {
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: #c62127;
  margin-bottom: 1.6rem;
  border-bottom: 2px solid #2a2a2a;
  padding-bottom: 0.9rem;
}

/* ===============================
   Visa Details (content block)
   =============================== */
.visitor-visa-details {
  background: #1e1e1e;
  padding: 2.2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
}
.visitor-visa-details h3 {
  color: #ff4d4d;
  margin: 1.3rem 0 0.6rem;
  font-size: 1.25rem;
}
.visitor-visa-details p {
  color: #f1f1f1;
  margin-bottom: 0.8rem;
}
.visitor-visa-details ul {
  margin: 0.4rem 0 1rem 1.4rem;
  color: #eaeaea;
  list-style: disc;
}
.visitor-visa-details li {
  margin: 0.4rem 0;
}

/* Callouts */
.visitor-visa-details .note,
.note {
  background: #232323;
  border: 1px dashed #3a3a3a;
  color: #e7e7e7;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
}

/* ===============================
   Features / Why Choose Us
   =============================== */
.features {
  background: #171717;
}
.feature-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-item {
  background: #222;
  border: 1px solid #2f2f2f;
  border-radius: 14px;
  padding: 1.6rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.feature-item:hover {
  transform: translateY(-6px);
  border-color: #3a3a3a;
  box-shadow: 0 14px 30px rgba(198, 33, 39, 0.18);
}
.feature-item i {
  font-size: 2rem;
  color: #c62127;
  margin-bottom: 0.7rem;
}
.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

/* Force 3 per row on wide screens with wrap to next line if more than 3 */
@supports (grid-template-columns: subgrid) {
  /* no-op: modern browsers will handle above grid well */
}

/* ===============================
   Process / Any 3-step blocks
   =============================== */
.visa-process .feature-grid {
  margin-top: 0.2rem;
}

/* ===============================
   Contact Form
   =============================== */
.contact-form {
  background: #1a1a1a;
  border-top: 2px solid #c62127;
  border-bottom: 1px solid #262626;
  padding: 3rem 0 3.2rem;
}
.contact-form h2 {
  border-bottom: none;
  margin-bottom: 0.4rem;
}
.contact-form p {
  text-align: center;
  margin-bottom: 1.4rem;
  color: #dcdcdc;
}

.contact-form form {
  max-width: 620px;
  margin: 0 auto;
}
.input-group {
  margin-bottom: 1.1rem;
}
label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: #f5f5f5;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  background: #222;
  border: 1px solid #3a3a3a;
  color: #f5f5f5;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #c62127;
  box-shadow: 0 0 0 3px rgba(198, 33, 39, 0.15);
}
textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: #c62127;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.25s ease;
}
.submit-button:hover {
  background: #a61b20;
  transform: translateY(-1px);
}

/* ===============================
   Footer
   =============================== */
/* Footer wrapper */
.footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 3rem 2rem 1rem;
  font-family: "Inter", sans-serif;
}

/* 4-column grid */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 auto 2rem auto;
  width: 100%;
}

/* Section headings */
.footer-section h4,
.footer-social h4,
.newsletter-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Logo */
.footer-logo img {
  width: 150px;
  margin-bottom: 1rem;
}

/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.contact-item i {
  margin-right: 0.6rem;
  color: #c62127;
  font-size: 1rem;
}

/* Links */
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.6rem;
}
.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color: #c62127;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-links img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.social-links img:hover {
  transform: scale(1.1);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
}
.newsletter-form button {
  padding: 10px 16px;
  background: #c62127;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter-form button:hover {
  background: #eb1c25;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between; /* left & right */
  align-items: center;
  flex-wrap: wrap; /* so it stacks on small screens */
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom .footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #c62127;
}

/* =======================
   Responsive 
======================= */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-item {
    justify-content: left;
  }
  .social-links {
    justify-content: center;
    padding-bottom: 30px;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form input {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
  .footer-bottom .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
} /* ===============================
   Utilities
   =============================== */
.border-red {
  border-color: #c62127 !important;
}
.text-red {
  color: #c62127 !important;
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .nav-menu {
    gap: 18px;
  }
  .hero {
    height: 56vh;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block; /* show hamburger */
  }

  .nav-menu {
    display: none; /* hidden by default */
    position: absolute;
    top: 70px; /* just below navbar */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column; /* stack vertically */
    padding: 15px 20px;
    gap: 0; /* remove big gaps */
    z-index: 999;
  }

  .nav-menu.active {
    display: flex; /* show when toggled */
  }

  .nav-menu .nav-link {
    color: black;
    padding: 12px 0;
    display: block;
    width: 100%;
    text-align: center; /* center links */
  }

  /* ✅ Dropdowns in mobile should push content down (not float absolute) */
  .dropdown-menu,
  .mega-dropdown .mega-menu {
    position: static;
    display: none;
    background: #f9f9f9;
    padding: 10px 15px;
    border: none;
    box-shadow: none;
    width: 100%;
    text-align: center;
  }

  .dropdown.open > .dropdown-menu,
  .mega-dropdown.open > .mega-menu {
    display: block; /* show when toggled */
  }

  .dropdown-menu li a,
  .mega-dropdown .mega-column a {
    color: #333;
    padding: 8px 0;
    display: block;
  }
}

.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.goog-text-highlight:hover {
  display: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
/* Kill Google top bar iframe completely */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
  position: static !important;
}

/* Also hide weird white strip from Google */
.goog-te-banner-frame {
  display: none !important;
}

 
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    visibility: hidden !important;
    display: none !important;
}
    /* Custom language dropdown */
    #custom_translate {
      padding: 6px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
    }

    .goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.goog-text-highlight:hover {
  display: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
    #custom_translate:hover {
      border-color: #999;
    }
/* Mobile-friendly navbar */
@media (max-width: 768px) {
  nav.navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  #custom_translate {
    margin-top: 10px;
    width: 100%;
  }
}
