/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Raleway', Arial, Helvetica, sans-serif !important;
  color: #222;
  background: #f8f9fa;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #002f6c;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #00aaff;
}
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,47,108,0.7),rgba(0,47,108,0.7)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 32px;
}
.cta-btn {
  background: #fff;
  color: #002f6c;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.cta-btn:hover {
  background: #00aaff;
  color: #fff;
}

/* Section Headings */
section h2 {
  font-size: calc(2.2rem + 0.334rem);
  font-weight: 700;
  color: #002f6c;
  margin-bottom: 32px;
  text-align: center;
}

/* Services */
.services {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.services-carousel {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 2rem !important;
  width: 100% !important;
  min-height: 340px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 340px;
  max-width: 400px;
  min-height: 340px;
  height: 100%;
  box-sizing: border-box;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,47,108,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,47,108,0.13);
}
.service-card .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
  min-height: 160px;
}
.service-card .icon-container svg {
  display: block;
  margin: auto;
  max-width: 120px;
  max-height: 120px;
  width: 100%;
  height: 100%;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: calc(1.5rem + 0.334rem);
  color: #002f6c;
  font-weight: 700;
  text-align: center;
}
.service-card p {
  color: #444;
  font-size: calc(1.1rem + 0.334rem);
  text-align: center;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .services-carousel {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }
  .service-card {
    min-width: 90vw;
    max-width: 98vw;
  }
}

/* How We Move */
.how-we-move {
  background: #f0f4fa;
  padding: 60px 0;
}
.how-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.how-text {
  flex: 1 1 320px;
}
.how-text ul {
  margin-top: 18px;
  padding-left: 20px;
  color: #002f6c;
}
.how-content img {
  flex: 1 1 320px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,47,108,0.07);
}

/* Network */
.network {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.network-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.network-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 32px 24px 24px 24px;
  text-align: center;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
}
.network-card img {
  margin-bottom: 16px;
}
.network-card h3 {
  color: #002f6c;
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.network-card p {
  color: #444;
  font-size: 1rem;
}

/* Careers */
.careers {
  background: #f0f4fa;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.careers-content {
  flex: 1 1 320px;
  max-width: 500px;
  margin: 0 20px;
}
.careers img {
  flex: 1 1 320px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,47,108,0.07);
  margin: 0 20px;
}

/* Contact */
.contact {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px 60px 20px;
}
.contact-content {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.contact-info {
  flex: 1 1 260px;
  min-width: 220px;
  color: #002f6c;
  font-size: 1.05rem;
}
.contact-info a {
  color: #00aaff;
  text-decoration: none;
}
.contact-form {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #cfd8dc;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}
.contact-form button {
  background: #002f6c;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #00aaff;
}

/* Footer */
.footer {
  background: #002f6c;
  color: #fff;
  padding: 32px 0 18px 0;
  text-align: center;
  font-size: 1rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  margin: 0 8px;
  font-size: 1rem;
}
.footer-links a:hover {
  color: #00aaff;
}
.footer-copy {
  position: relative !important;
  z-index: 10 !important;
  background: transparent !important;
  color: #fff !important;
  width: 100vw !important;
  text-align: center !important;
  font-size: 1.1rem !important;
  padding: 20px 0 12px 0 !important;
  box-shadow: none !important;
  display: block !important;
}

/* Responsive */
@media (max-width: 900px) {
  .how-content, .careers, .contact-content {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .navbar {
    padding: 16px 16px;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-wrap: wrap;
    padding: 12px 8px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #002f6c;
    flex-direction: column;
    width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border-radius: 0 0 8px 8px;
    z-index: 200;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-btn {
    display: flex;
  }
}

.country-marquee-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
  background: #f8f9fa;
}

.country-row-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.country-row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  animation: scroll-left 20s linear infinite;
  width: max-content;
}

.country-row.reverse {
  animation: scroll-right 20s linear infinite;
}

.country-item {
  display: flex !important;
  align-items: center !important;
  gap: 1.2rem !important;
  font-size: 1.7rem !important;
  font-weight: 700 !important;
  color: #00112E !important;
  white-space: nowrap !important;
  min-width: 220px !important;
  flex-shrink: 0 !important;
  padding: 0.5rem 0 !important;
}

.country-item img {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background-color: #00358d;
}

/* Animations */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Countries Grid Section - FIXED for horizontal layout */
.countries-grid-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f8f9fa;
  padding: 40px 0;
}

.countries-grid-section .container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem 2.5rem;
  justify-items: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  /* Remove max-width to allow full width */
}

.country {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  font-size: 1.35rem;
  font-weight: 600;
  color: #00112E;
  font-family: "Exo", "Montserrat", sans-serif;
  min-width: 180px;
  justify-content: flex-start;
}

.country-icon {
  width: 100px !important;
  height: 100px !important;
  border-radius: 20px !important;
  background: #002f6c !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2.2rem !important;
  flex-shrink: 0 !important;
}

/* Laptop-specific adjustments for global presence */
@media (min-width: 1024px) and (max-width: 1366px) {
  .countries-grid-section .container {
    max-width: 1200px;
    padding: 0 1.5rem;
  }
  
  .countries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }
  
  .country {
    font-size: 1.1rem;
    min-width: 140px;
    gap: 0.8rem;
  }
  
  .country-icon {
    width: 80px !important;
    height: 80px !important;
    font-size: 1.8rem !important;
  }
  
  .countries-multiline-marquee {
    gap: 12px;
    margin: 20px 0;
  }
  
  .marquee-row {
    gap: 1.5rem;
  }
  
  .country-item {
    font-size: 1rem;
    min-width: 140px;
    gap: 0.6rem;
  }
  
  .country-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Additional fixes for the multiline marquee section */
  .countries-multiline-marquee-section {
    overflow: hidden;
    padding: 20px 0;
  }
  
  .countries-multiline-marquee .country-item {
    min-width: 120px;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  
  .countries-multiline-marquee .country-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
  }
  
  .countries-multiline-marquee .marquee-row {
    gap: 1rem;
  }
}

@media (max-width: 1100px) {
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .country {
    font-size: 1rem;
    min-width: 120px;
  }
}

/* Optionally, comment out the old marquee styles if not used elsewhere */
/*
.country-marquee-section, .country-row-wrapper, .country-row, .country-row.reverse, .country-item, .country-item img {
  display: none !important;
}
*/

.countries-grid-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002f6c;
  margin-bottom: 32px;
  text-align: center;
  font-family: 'Montserrat', 'Poppins', sans-serif;
}

.countries-grid-debug-inner {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 2.5rem 2.5rem !important;
  width: 100% !important;
  margin: 0 auto !important;
  border: 3px solid red !important;
  background: #fffbe6 !important;
}
.countries-grid-debug-inner .country {
  border: 2px dashed blue !important;
  min-width: 0 !important;
  background: #e6f7ff !important;
}

.countries-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: #f8f9fa;
  padding: 10px 0;
}
.countries-marquee-content {
  display: inline-flex;
  gap: 2rem;
  animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.country {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #00112E;
  white-space: nowrap;
  min-width: 180px;
  flex-shrink: 0;
}
.country-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #002f6c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.countries-scroll-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
.countries-scroll-row::-webkit-scrollbar {
  height: 8px;
}
.countries-scroll-row::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.countries-scroll-row::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.country-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #00112E;
  white-space: nowrap;
  min-width: 180px;
  flex-shrink: 0;
}
.country-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #002f6c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.countries-multiline-marquee-section {
  background: #f8f9fa;
  padding: 40px 0;
  overflow-x: hidden;
}

.countries-multiline-marquee {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.marquee-row {
  display: flex;
  gap: 2rem;
  animation: marquee-loop 40s linear infinite;
}

.marquee-row.reverse {
  animation: marquee-loop-reverse 40s linear infinite;
}

@keyframes marquee-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-loop-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.country-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #00112E;
  min-width: 180px;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  background: none;
}

.country-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

/* Networks Infinite Marquee Section */
.networks-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.networks-marquee-inner {
  display: flex;
  animation: marquee 30s linear infinite; /* Adjust duration as needed */
  gap: 3rem; /* Consistent spacing between logos */
  align-items: center; /* Vertically align logos */
  padding: 20px 0; /* Add some vertical padding */
}

.networks-marquee-inner img.network-logo {
  flex-shrink: 0; /* Prevent logos from shrinking */
  width: auto; /* Fixed width for all logos */
  height: 100px; /* Fixed height for all logos */
  object-fit: contain; /* Ensures the entire logo is visible within the fixed dimensions */
  border-radius: 8px; /* Optional: adds a slight roundness to the corners */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move half of the duplicated content for seamless loop */
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-question {
  width: 100%;
  background: #e5e5e5;
  color: #222831;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.25rem 2rem;
  border: none;
  text-align: left;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question.active, .faq-question:focus {
  background: #d1d5db;
  outline: none;
}
.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 1rem;
}
.faq-answer {
  background: transparent;
  color: #222831;
  font-size: 1.1rem;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  width: 100%;

}
.faq-item.open .faq-answer {
  max-height: 300px;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}

.get-quote-section {
  background: #fff;
}
.get-quote-section .bg-white {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1.1rem;
  background: #f9f9f9;
  color: #222831;
  transition: border 0.2s;
}
.form-input:focus {
  border-color: #002f6c;
  outline: none;
  background: #fff;
}
.get-quote-btn {
  width: 100%;
  background: #002f6c;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 0;
  border: none;
  border-radius: 8px;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.get-quote-btn:hover {
  background: #004080;
}

.about-section .about-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  font-family: 'Raleway', Arial, Helvetica, sans-serif !important;
  margin-bottom: 1.2rem;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.5px;
}

.footer-custom {
  background: linear-gradient(135deg, #2561a7 0%, #1e3c72 100%);
  color: #fff;
  font-size: 0.75rem;
  position: relative;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}
.footer-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 97, 167, 0.5) 0%, rgba(30, 60, 114, 0.5) 100%);
  z-index: 0;
}
.footer-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/footer-bg.jpg') bottom center no-repeat;
  background-size: cover;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.footer-custom > .container,
.footer-custom > div {
  position: relative;
  z-index: 2;
  gap: 3.5rem !important;
}
.footer-custom h3 {
  font-size: 1.5rem !important;
  font-weight: bold !important;
  margin-bottom: 0.2rem;
}
.footer-custom ul {
  margin-bottom: 0;
}
.footer-custom ul li {
  margin-bottom: 0.2rem;
}
.footer-custom .border-t {
  border-color: #17406a;
  padding-top: 0.05rem !important;
  padding-bottom: 0.05rem !important;
  margin-top: 0.05rem !important;
}
@media (max-width: 700px) {
  .footer-custom .container {
    flex-direction: column;
    gap: 1rem !important;
    text-align: center;
  }
}
.footer-custom .container, .footer-custom > .container {
  gap: 0.2rem !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.footer-custom .text-sm {
  font-size: 0.65rem !important;
}
.footer-custom .space-y-2 > * + * {
  margin-top: 0.08rem !important;
}
.footer-custom .flex.gap-3.mt-2 {
  gap: 0.2rem !important;
  margin-top: 0.08rem !important;
}
.footer-custom .w-7.h-7 {
  width: 0.9rem !important;
  height: 0.9rem !important;
}
.footer-custom .space-y-2.text-lg, .footer-custom .space-y-2 > div, .footer-custom .space-y-2 {
  font-size: 0.68rem !important;
  line-height: 1.2 !important;
}

/* Call to Action Section - Reduce space above button */
.bg-\[\#002f6c\].text-center {
  padding-top: 1.5rem !important; /* Reduce from default */
}
.bg-\[\#002f6c\].text-center h2 {
  margin-bottom: 1.5rem !important; /* Reduce space below heading */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#loader-overlay {
  transition: opacity 0.5s ease;
}

#loader-overlay img {
  opacity: 0;
  animation: logo-fade-in 1s ease-in-out forwards;
}
@keyframes logo-fade-in {
  to { opacity: 1; }
}

/* Google Translate Dropdown Fix */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Control the z-index and style of the floating widget */
#google_translate_element {
  z-index: 9999;
  min-width: 140px;
}

/* Fix the dropdown overflow issue */
.goog-te-combo {
  padding: 4px 6px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: white;
  width: 100%;
  max-width: 140px;
  box-sizing: border-box;
}

/* Tariff Table Styles */
.tariff-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  background: #fff;
  padding: 1rem;
}
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.tariff-table th {
  background: #002f6c;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
}
.tariff-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.tariff-table tr:nth-child(even) {
  background: #f4f8fb;
}
.tariff-table tr:hover {
  background: #e6f0fa;
  transition: background 0.2s;
}
@media (max-width: 900px) {
  .tariff-table {
    font-size: 0.95rem;
    min-width: 600px;
  }
}
@media (max-width: 600px) {
  .tariff-table {
    font-size: 0.9rem;
    min-width: 500px;
  }
  .tariff-table-wrapper {
    padding: 0.5rem;
  }
}

/* Tariffs Page Header & Headings */
.tariff-header {
  background: #002f6c;
  padding-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.tariff-title {
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.section-heading {
  font-size: 2.1rem;
  font-weight: 700;
  color: #002f6c;
  margin-bottom: 32px;
  margin-top: 2.5rem;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 700px) {
  .tariff-title {
    font-size: 2rem;
  }
  .section-heading {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }
}

.network-logo {
  max-width: 400px;
  max-height: 300px;
  object-fit: contain;
  width: auto;
  height: auto;
  display: block;
}

.stat-card {
  background: linear-gradient(135deg, #2561a7 0%, #1e3c72 100%);
  color: #fff;
  border: none;
}

.stat-card-white {
  background: #fff;
  color: #222;
  border: 1.5px solid #e5e7eb;
}

/* Hero section mobile adjustments */
@media (max-width: 600px) {
  .hero {
    padding: 60px 8px 40px 8px;
    min-height: 40vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* Service cards and grids mobile adjustments */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .service-card {
    min-width: 0 !important;
    max-width: 100vw !important;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem !important;
  }
}

/* Navbar mobile improvements */
@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
  }
  .menu-btn {
    display: flex !important;
  }
  .nav-links {
    width: 100vw;
    right: 0;
    left: 0;
    top: 48px;
    border-radius: 0 0 8px 8px;
  }
}

/* Tariff table mobile improvements */
@media (max-width: 600px) {
  .tariff-table {
    font-size: 0.85rem;
    min-width: 350px;
  }
  .tariff-table-wrapper {
    padding: 0.2rem;
  }
}

/* General font and spacing tweaks for mobile */
@media (max-width: 600px) {
  body {
    font-size: 0.98rem;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: 1.1em;
  }
  section h2, .section-heading {
    font-size: 1.2rem;
    margin-bottom: 18px;
    margin-top: 1rem;
  }
}

/* FAQ section mobile improvements */
@media (max-width: 600px) {
  .faq-section,
  .faq-section .container,
  .faq-list,
  .faq-item,
  .faq-question,
  .faq-answer {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .faq-question {
    font-size: 1rem !important;
    padding: 0.6rem 0.5rem !important;
    border-radius: 8px !important;
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-align: left !important;
  }
  .faq-toggle {
    float: right;
    margin-left: 1rem;
  }
  .faq-answer {
    font-size: 0.93rem !important;
    padding: 0.6rem 0.5rem !important;
    max-width: 100% !important;
  }
}

/* Make FAQ section box wider on desktop */
.faq-section .container {
  max-width: 900px !important;
}

/* --- FULL MOBILE RESPONSIVENESS OVERRIDE --- */
@media (max-width: 600px) {
  .container,
  .services,
  .network,
  .contact,
  .footer-content,
  .about-section .container,
  .faq-section .container {
    max-width: 100vw !important;
    width: 100vw !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .service-card,
  .network-card,
  .contact-form,
  .careers-content {
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .services-grid,
  .network-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  .footer-content {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .tariff-table-wrapper {
    overflow-x: auto !important;
    padding: 0.2rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .tariff-table {
    min-width: 350px !important;
    font-size: 0.9rem !important;
  }
  .faq-section .container {
    max-width: 100vw !important;
    width: 100vw !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .faq-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .faq-list,
  .faq-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
  }
  .hero-content {
    max-width: 100vw !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .about-section .container {
    max-width: 100vw !important;
    width: 100vw !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .footer-custom .container {
    max-width: 100vw !important;
    width: 100vw !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  /* Remove FAQ desktop width override */
  .faq-section .container {
    max-width: 100vw !important;
  }
}

/* --- MOBILE IMPROVEMENTS --- */
@media (max-width: 500px) {
  body {
    font-size: 1rem;
    padding: 0;
  }
  .navbar {
    padding: 12px 10px;
    flex-direction: row;
  }
  .logo {
    font-size: 1.2rem;
  }
  .menu-btn {
    display: flex !important;
    margin-left: auto;
    z-index: 1001;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #002f6c;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid #003a7a;
  }
  .hero {
    padding: 60px 8px 40px 8px;
    min-height: 40vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .services {
    margin: 30px auto;
    padding: 0 4px;
  }
  .services-grid, .services-carousel {
    gap: 1rem !important;
  }
  .service-card {
    min-width: 90vw !important;
    max-width: 98vw !important;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem !important;
    min-height: 220px !important;
  }
  .service-card .icon-container {
    min-height: 80px !important;
    margin-bottom: 1rem !important;
  }
  section h2, .section-heading {
    font-size: 1.3rem !important;
    margin-bottom: 18px !important;
  }
  .footer, .footer-content, .footer-custom {
    padding: 10px 4px !important;
    font-size: 0.95rem !important;
    text-align: center !important;
  }
  .footer-links {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .footer-links a {
    font-size: 1rem !important;
  }
  .network-logo {
    max-width: 70px !important;
    max-height: 40px !important;
  }
  #loader-overlay img {
    width: 90vw !important;
    max-width: 320px !important;
  }
  /* Override inline styles for fixed elements */
  [style*="position: fixed"][style*="bottom: 16px"][style*="right: 16px"] {
    bottom: 8px !important;
    right: 8px !important;
    left: auto !important;
    width: 90vw !important;
    max-width: 320px !important;
  }
  /* Responsive iframe (e.g., Google Maps) */
  iframe {
    max-width: 100vw !important;
    height: 180px !important;
  }
  /* Responsive images in cards and hero */
  img {
    max-width: 100vw !important;
    height: auto !important;
  }
}

@media (max-width: 900px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  /* Hide floating sun icon bar at the bottom */
  [style*="position: fixed"][style*="bottom: 16px"],
  [style*="position:fixed"][style*="bottom:16px"],
  [style*="position: fixed"][style*="bottom: 0"] {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 900px) {
  #google_translate_element,
  .goog-te-banner-frame,
  .goog-te-combo {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
  }
}

@media (max-width: 600px) {
  body {
    background: #f4f6fa !important;
  }
  /* NAVBAR */
  .navbar {
    padding: 8px 2vw !important;
    min-height: 48px !important;
    font-size: 0.95rem !important;
    box-shadow: 0 2px 8px rgba(0,47,108,0.07) !important;
  }
  .logo {
    font-size: 1.1rem !important;
  }
  /* HERO SECTION */
  .hero {
    position: relative !important;
    padding: 0 !important;
    min-height: 180px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 0 0 18px 18px !important;
    overflow: hidden !important;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,47,108,0.7) 0%, rgba(0,47,108,0.3) 60%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    margin: 0 2vw 18px 2vw !important;
    padding: 16px 10px 12px 10px !important;
    box-shadow: 0 2px 12px rgba(0,47,108,0.10);
    text-align: center !important;
    max-width: 92vw !important;
  }
  .hero h1 {
    font-size: 1.1rem !important;
    margin-bottom: 6px !important;
    color: #002f6c !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
  }
  .hero p {
    font-size: 0.9rem !important;
    color: #222 !important;
    margin-bottom: 0 !important;
  }
  /* STAT CARDS */
  .stat-card, .stat-card-white {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(0,47,108,0.08) !important;
    padding: 12px 2vw 10px 2vw !important;
    margin: 0 2vw 18px 2vw !important;
    min-width: 0 !important;
    max-width: 92vw !important;
    width: 92vw !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border: 1px solid #e3e8f0 !important;
  }
  .stat-card .icon, .stat-card-white .icon, .stat-card svg, .stat-card-white svg {
    width: 22px !important;
    height: 22px !important;
    margin-bottom: 6px !important;
  }
  .stat-card h2, .stat-card-white h2, .stat-card .stat-value, .stat-card-white .stat-value {
    font-size: 1.05rem !important;
    margin-bottom: 2px !important;
    font-weight: 700 !important;
    color: #002f6c !important;
  }
  .stat-card p, .stat-card-white p {
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
    color: #333 !important;
  }
  /* GENERAL SECTION POLISH */
  section, .services, .about-section, .careers, .how-we-move, .network, .contact, .footer, .footer-content, .footer-custom {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
    background: #f9fbfd !important;
    margin-bottom: 18px !important;
  }
  section h2, .section-heading {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    color: #002f6c !important;
    font-weight: 700 !important;
  }
  /* Add more spacing between stacked cards/sections */
  .stat-card + .stat-card, .stat-card-white + .stat-card-white, section + section, .services + .about-section, .about-section + .careers, .careers + .how-we-move, .how-we-move + .network, .network + .contact {
    margin-top: 22px !important;
  }
  /* Center all content */
  .stat-card, .stat-card-white, .hero-content, section, .services, .about-section, .careers, .how-we-move, .network, .contact {
    align-items: center !important;
    text-align: center !important;
  }
}
@media (max-width: 600px) {
  /* Ensure stats section stacks cards vertically and centers them */
  .stats-section, .stats, .stat-cards, .stat-cards-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: visible !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .stat-card, .stat-card-white {
    width: 92vw !important;
    max-width: 350px !important;
    min-width: 0 !important;
    margin: 0 auto 18px auto !important;
    float: none !important;
    clear: both !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: visible !important;
  }
}

@media (max-width: 600px) {
  .faq-answer {
    max-height: 0;
    overflow: hidden !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.2s, margin 0.2s;
  }
  .faq-item.open .faq-answer {
    max-height: none !important;
    margin: 0.6rem 0 0.6rem 0 !important;
    padding: 0.6rem 0.5rem !important;
  }
}

@media (max-width: 600px) {
  .footer-custom, .footer-content, .footer-custom > .container, .footer-custom > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.2rem !important;
    padding: 1.5rem 0.5rem 1.2rem 0.5rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .footer-custom h3, .footer-custom .sitemap-title, .footer-custom .contact-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
  }
  .footer-links, .footer-custom ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
  }
  .footer-links a, .footer-custom ul li a {
    font-size: 1rem !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 0.2rem 0 !important;
  }
  .footer-custom .divider {
    width: 60%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 1rem auto !important;
    border: none;
  }
  .footer-custom .contact-info, .footer-custom .address {
    font-size: 0.98rem !important;
    margin-bottom: 0.5rem !important;
    color: #e0e6f0 !important;
  }
  .footer-custom .footer-social {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.2rem !important;
    justify-content: center !important;
    margin: 0.7rem 0 0.2rem 0 !important;
  }
  .footer-custom .footer-social a {
    color: #fff !important;
    font-size: 1.3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .footer-custom .footer-copy {
    font-size: 0.85rem !important;
    color: #cfd8e3 !important;
    margin-top: 1.2rem !important;
    text-align: center !important;
  }
}

/* Footer two-column layout for desktop */
@media (min-width: 601px) {
  .footer-custom > .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem 1.5rem !important;
    box-sizing: border-box !important;
  }
  .footer-custom .footer-left {
    flex: 1 1 0;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .footer-custom .footer-right {
    flex: 1 1 0;
    text-align: right !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
  }
}

/* Stack columns on mobile */
@media (max-width: 600px) {
  .footer-custom > .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.2rem !important;
    padding: 1.5rem 0.5rem 1.2rem 0.5rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .footer-custom .footer-left,
  .footer-custom .footer-right {
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

