@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #0a0f2c, #050816);
  color: #ffffff;
  line-height: 1.6;
}

/* ================= NAV ================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(13,19,53,0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo-container:hover {
  opacity: 0.9;
}

.logo-container:hover .brand-name {
  color: #00bfff;
}

.nav-logo {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
}

nav a:hover {
  color: #00bfff;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px;
  overflow: hidden;
  background: 
    linear-gradient(135deg, rgba(10, 15, 44, 0.85), rgba(5, 8, 22, 0.95)),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.small {
  height: auto;
  padding: 120px 20px 60px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #00bfff 70%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero-subtext {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 760px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-subtext {
    font-size: 1.05rem;
  }
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.hero-cta-group .btn {
  margin-top: 0; /* Override default btn margin */
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #00bfff, #4f4feb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #00bfff, #4f4feb);
  border: none;
  border-radius: 30px;
  color: #ffffff;
  cursor: pointer;
  margin-top: 15px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,191,255,0.7);
}

.btn-primary {
  background: linear-gradient(135deg, #00bfff, #4f4feb);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

/* ================= SECTIONS ================= */
section {
  padding: 80px 60px;
  text-align: center;
}

section p {
  max-width: 700px;
  margin: 15px auto;
}

/* ================= STATS ================= */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 50px;
}

.stats h2 {
  color: #00bfff;
  font-size: 40px;
}

/* Services section removed */

/* ================= TEAM ================= */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.member {
  width: 200px;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
}

.member:hover {
  transform: translateY(-5px);
}

.member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.member .name {
  margin-top: 10px;
  font-weight: 500;
}

.member .role {
  font-size: 14px;
  color: #ccc;
}
/* ================= SOLUTIONS ================= */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

@media (min-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

@media (min-width: 576px) {
  .solution-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.solution-icon-container {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border-width: 1.5px;
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.01);
}

.solution-icon-container svg {
  width: 28px;
  height: 28px;
}

.solution-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-info h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.solution-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0 0 20px 0;
}

.solution-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.solution-link:hover {
  opacity: 0.8;
}

.solution-coming-soon {
  font-size: 1rem;
  font-weight: 500;
  margin-top: auto;
  font-style: normal;
  display: inline-block;
}

/* Accent Colors */
/* 1. Edu (Blue) */
.solution-edu .solution-icon-container {
  border-color: #00bfff;
  color: #00bfff;
}
.solution-edu h3,
.solution-edu .solution-link {
  color: #00bfff;
}

/* 2. Health (Purple) */
.solution-health .solution-icon-container {
  border-color: #a855f7;
  color: #a855f7;
}
.solution-health h3,
.solution-health .solution-coming-soon {
  color: #a855f7;
}

/* 3. Transport (Teal) */
.solution-transport .solution-icon-container {
  border-color: #06b6d4;
  color: #06b6d4;
}
.solution-transport h3,
.solution-transport .solution-coming-soon {
  color: #06b6d4;
}

/* 4. eSIM (Yellow/Gold) */
.solution-esim .solution-icon-container {
  border-color: #f59e0b;
  color: #f59e0b;
}
.solution-esim h3,
.solution-esim .solution-link {
  color: #f59e0b;
}

/* ================= CONTACT ================= */
#contact {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  margin: 40px;
  padding: 60px 20px;
}

form {
  max-width: 500px;
  margin: auto;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
}

.search-section {
  padding: 20px;
  text-align: center;

  /* IMPORTANT: no box blocking background */
  background: transparent;
  box-shadow: none;

  margin-top: 20px;
}
.search-section h1 {
  color: #00bfff;
  margin-bottom: 20px;
}

.search-section input {
  width: 60%;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  outline: none;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.search-section input:focus {
  border-color: #00bfff;
  box-shadow: 0 0 10px rgba(0,191,255,0.4);
}

.search-section button {
  padding: 14px 25px;
  border-radius: 30px;
  border: none;
  margin-left: 10px;
  background: linear-gradient(135deg, #00bfff, #4f4feb);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.search-section button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0,191,255,0.5);
}

/* ================= SEARCH RESULTS ================= */
.loading {
  margin-top: 20px;
  font-weight: bold;
  color: #00bfff;
}

.hidden {
  display: none;
}

#results {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-item {
  width: 70%;
  padding: 18px;
  margin: 10px 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  text-align: left;
  transition: 0.3s;
}

.result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,191,255,0.2);
}

.result-item h3 {
  color: #00bfff;
  margin-bottom: 5px;
}

.result-item p {
  color: #ddd;
  font-size: 14px;
}

.result-item a {
  display: inline-block;
  margin-top: 8px;
  color: #4f4feb;
  text-decoration: none;
}

/* ================= ABOUT GRID ================= */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.about-card {
  width: 300px;
  padding: 25px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-10px);
}

.about-card h3 {
  color: #00bfff;
  margin-bottom: 10px;
}



/* ================= FOOTER ================= */
footer {
  background: rgba(13,19,53,0.7);
  padding: 20px;
  text-align: center;
}

.tagline {
  font-size: 20px;
  color: #00bfff;
  font-weight: 500;
}

/* ================= FADE IN ================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= FOOTER GRID ================= */
.footer {
  background: #040447;
  padding: 60px 80px;
}

.footer-container {
  text-align: left;
  min-width: 220px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}

.footer h3 {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #f3f1f1;
}

.footer a {
  display: inline-block;
  text-decoration: none;
  color: #fdf8f8;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00bfff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  section {
    padding: 60px 20px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 40px auto 0 auto;
  align-items: stretch;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* LEFT SIDE: Contact Card */
.contact-info {
  background: linear-gradient(135deg, #0f172a, #111827) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  text-align: left;
}

.contact-info h3 {
  font-size: 1.6rem !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 50%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px !important;
}

.contact-description {
  color: #9ca3af;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Items details */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 191, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

/* Colorful Icon themes matching brand system */
.location-icon {
  background: rgba(0, 191, 255, 0.15);
  color: #00bfff;
}

.email-icon {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

.phone-icon {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.info-text span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #6b7280;
}

.info-text p, 
.info-text a {
  font-size: 1.1rem;
  color: #e5e7eb !important;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
  margin: 0 !important;
}

.info-text a:hover {
  color: #00bfff !important;
}

/* RIGHT SIDE: Contact Form */
.contact-form-side {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}

.contact-form-side form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}

#contact.section-white .contact-form-side input,
#contact.section-white .contact-form-side textarea {
  width: 100% !important;
  padding: 16px 20px !important;
  font-size: 1.05rem !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: 0 !important;
}

#contact.section-white .contact-form-side input::placeholder,
#contact.section-white .contact-form-side textarea::placeholder {
  color: #94a3b8 !important;
}

#contact.section-white .contact-form-side input:hover,
#contact.section-white .contact-form-side textarea:hover {
  border-color: #cbd5e1 !important;
}

#contact.section-white .contact-form-side input:focus,
#contact.section-white .contact-form-side textarea:focus {
  background: #ffffff !important;
  border-color: #4f4feb !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(79, 79, 235, 0.15) !important;
}

#contact.section-white .contact-form-side textarea {
  min-height: 150px !important;
  resize: vertical !important;
}

.contact-form-side .btn {
  padding: 16px 36px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  border-radius: 30px !important;
  align-self: flex-start !important;
  margin-top: 10px !important;
  box-shadow: 0 4px 15px rgba(79, 79, 235, 0.2) !important;
  transition: all 0.3s ease !important;
}

.contact-form-side .btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4) !important;
}
.apply-section {
  max-width: 500px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.apply-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apply-section input,
.apply-section textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}

.apply-section button {
  margin-top: 10px;
}

.about-lead {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 800px;
  margin: 20px auto 35px auto;
}

@media (max-width: 768px) {
  .about-lead {
    font-size: 1.15rem;
  }
}

body.light-theme .about-lead {
  color: #475569;
}

/* ================= LIGHT THEME (SUBPAGES) ================= */
body.light-theme {
  background: #ffffff;
  color: #0f172a;
}

body.light-theme nav {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme nav a {
  color: #0f172a;
}

body.light-theme nav a:hover {
  color: #4f4feb;
}

body.light-theme .brand-name {
  color: #0f172a;
}

/* Hero section on subpages */
body.light-theme .hero.small {
  background: #f8fafc;
}

body.light-theme .hero-content p {
  color: #475569;
}

/* Cards & Boxes in Light Theme */
body.light-theme .about-card,
body.light-theme .member {
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #0f172a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

body.light-theme .member .role {
  color: #475569;
}

body.light-theme .member .name {
  color: #0f172a;
}

body.light-theme .about-card h3 {
  color: #4f4feb;
}

/* Form elements in Light Theme */
body.light-theme input,
body.light-theme textarea {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

body.light-theme input:focus,
body.light-theme textarea:focus {
  border-color: #4f4feb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 79, 235, 0.15);
}

/* Footer in Light Theme */
body.light-theme .footer {
  background: #0f172a;
  color: #ffffff;
}

body.light-theme .footer a {
  color: #cbd5e1;
}

body.light-theme .footer a:hover {
  color: #00bfff;
}

body.light-theme .footer h3 {
  color: #ffffff;
}

body.light-theme .footer-bottom p {
  color: #94a3b8;
}

/* ================= ALTERNATING SECTIONS ================= */
.section-white {
  background: #ffffff !important;
  color: #0f172a !important;
}

.section-white h2,
.section-white h3,
.section-white .about-lead,
.section-white .form-title {
  color: #0f172a !important;
}

.section-white p {
  color: #475569 !important; /* Slate 600 */
}

.section-white .member {
  background: #f1f5f9 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.section-white .member p {
  color: #0f172a !important;
  font-weight: 500;
}

/* Ensure contact card nested info stays dark/contrast */
.section-white .contact-info {
  background: linear-gradient(135deg, #0f172a, #1e293b) !important;
  color: #ffffff !important;
}

.section-white .contact-info p,
.section-white .contact-info a,
.section-white .contact-info h3 {
  color: #ffffff !important;
}

/* Light Gray Section */
.section-light-gray {
  background: #f8fafc !important; /* Slate 50 */
  color: #0f172a !important;
}

.section-light-gray h2,
.section-light-gray h3 {
  color: #0f172a !important;
}

.section-light-gray p {
  color: #475569 !important;
}

.section-light-gray .service-box {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
}

.section-light-gray .service-box h3 {
  color: #0f172a !important;
}

/* Forms inside Light/White Sections */
.section-white input,
.section-white textarea,
.section-light-gray input,
.section-light-gray textarea {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
}

.section-white input:focus,
.section-white textarea:focus,
.section-light-gray input:focus,
.section-light-gray textarea:focus {
  border-color: #4f4feb !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 79, 235, 0.15) !important;
}

/* Adjust contact wrapper margin when it becomes white */
#contact.section-white {
  margin: 0 !important;
  border-radius: 0 !important;
  padding: 80px 60px !important;
}

/* Solutions styling for light/white sections */
.section-light-gray .solution-card,
.section-white .solution-card {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03) !important;
}

.section-light-gray .solution-card:hover,
.section-white .solution-card:hover {
  border-color: #94a3b8 !important;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04) !important;
}

.section-light-gray .solution-icon-container,
.section-white .solution-icon-container {
  background: rgba(15, 23, 42, 0.02) !important;
}

.section-light-gray .solution-info p,
.section-white .solution-info p {
  color: #475569 !important;
}

.section-light-gray .solution-coming-soon,
.section-white .solution-coming-soon {
  background: rgba(15, 23, 42, 0.05) !important;
}

/* Mobile responsive contact us section overrides */
@media (max-width: 768px) {
  #contact.section-white {
    padding: 50px 16px !important;
  }
  .contact-info {
    padding: 24px 16px !important;
    gap: 16px !important;
  }
  .info-item {
    padding: 12px 14px !important;
    gap: 12px !important;
  }
  .contact-wrapper {
    gap: 30px !important;
    margin-top: 20px !important;
  }
  .contact-form-side {
    padding: 10px 0 !important;
  }
  .contact-form-side .btn {
    align-self: stretch !important;
    text-align: center !important;
  }
}


