:root {
  --deep-blue: #0b1f36;
  --ivory-white: #fdfdfd;
  --classic-steel: #d6dce1;
  --text-dark: #1a1a1a;
  --text-light: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--ivory-white);
  /* margin-top: 150px; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--deep-blue);
  color: var(--ivory-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.header-hidden {
  opacity: 0;
  pointer-events: none;
}

.header.header-visible {
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

/* Rest of your header styles remain the same */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  width: 150px;
  height: 150px;
  color: var(--ivory-white);
  z-index: 1001;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--ivory-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: var(--classic-steel);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--classic-steel);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Language Toggle in Navbar */
.nav-language-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px;
  display: flex;
  gap: 2px;
}

.nav-language-toggle button {
  background: transparent;
  border: none;
  color: var(--ivory-white);
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.nav-language-toggle button.active {
  background: var(--ivory-white);
  color: var(--deep-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory-white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger {
  width: 25px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--ivory-white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--deep-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu ul li {
  margin: 1.5rem 0;
}

.mobile-menu ul li a {
  color: var(--ivory-white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: var(--classic-steel);
}

.mobile-language-toggle {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 8px;
  display: flex;
  gap: 4px;
}

.mobile-language-toggle button {
  background: transparent;
  border: none;
  color: var(--ivory-white);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-language-toggle button.active {
  background: var(--ivory-white);
  color: var(--deep-blue);
}

/* Hero Section */
/* .hero {
  background: linear-gradient(135deg, var(--deep-blue) 0%, #1a3a5c 100%);
  color: var(--ivory-white);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
} */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue) 0%, #1a3a5c 100%);
  color: var(--ivory-white);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  z-index: 0;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--deep-blue) 0%, #1a3a5c 100%);
  opacity: 0.6;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #f8f9fa;
}

.section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--deep-blue);
  text-align: center;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.content-max {
  max-width: 800px;
  margin: 0 auto;
}

/* What We Look For */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.criteria-card {
  background: var(--ivory-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--deep-blue);
  transition: transform 0.3s ease;
  height: 100%;
}

.criteria-card:hover {
  transform: translateY(-5px);
}

.criteria-card h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--deep-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--ivory-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--classic-steel);
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.team-photo:hover {
  border-color: var(--deep-blue);
  transform: scale(1.05);
}

.team-member h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.team-member .role {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.team-member p {
  font-size: 0.95rem;
  text-align: center;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.linkedin-link {
  display: inline-block;
  margin-top: auto;
  color: var(--deep-blue);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 2px solid var(--deep-blue);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.linkedin-link:hover {
  background: var(--deep-blue);
  color: var(--ivory-white);
}

/* Why Work With Us */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  background: var(--ivory-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--deep-blue);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-item h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--deep-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.benefit-item p {
  flex-grow: 1;
}

/* Founder Quote */
.founder-quote {
  background: var(--deep-blue);
  color: var(--ivory-white);
  padding: 60px 0;
  text-align: center;
  margin: 40px 0 0 0;
}

.quote-content {
  max-width: 900px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.quote-author-name {
  font-size: 1.4rem;
  font-weight: 800;
  opacity: 0.9;
  margin-top: 10px;
}

.quote-author-banner {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 25px;
}


/* Contact Form */
.contact-form {
  background: var(--ivory-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--deep-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--classic-steel);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-blue);
}

.submit-btn {
  background: var(--deep-blue);
  color: var(--ivory-white);
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #1a3a5c;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--deep-blue);
  color: var(--ivory-white);
  padding: 40px 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item a:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .criteria-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .team-grid,
  .criteria-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .team-member {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 25px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .team-photo {
    width: 100px;
    height: 100px;
  }

  .criteria-card,
  .benefit-item,
  .team-member {
    padding: 1.5rem;
  }
}

/* Not Ready Section */
.not-ready-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--classic-steel);
  border-bottom: 1px solid var(--classic-steel);
}

.not-ready-content {
  max-width: 700px;
  margin: 0 auto;
}

.not-ready-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
}

.not-ready-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.not-ready-cta {
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 2rem !important;
}

.not-ready-btn {
  display: inline-block;
  background: var(--deep-blue);
  color: var(--ivory-white);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 31, 54, 0.3);
}

/* Not Ready Section */
/* .not-ready-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--classic-steel);
  border-bottom: 1px solid var(--classic-steel);
}

.not-ready-content {
  max-width: 700px;
  margin: 0 auto;
}

.not-ready-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
}

.not-ready-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.not-ready-cta {
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 2rem !important;
}

.not-ready-btn {
  display: inline-block;
  background: var(--deep-blue);
  color: var(--ivory-white);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 31, 54, 0.3);
}

.not-ready-btn:hover {
  background: #1a3a5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 31, 54, 0.4);
} */

/* Responsive */
/* @media (max-width: 768px) {
  .not-ready-section {
    padding: 40px 0;
  }

  .not-ready-section h2 {
    font-size: 1.6rem;
  }

  .not-ready-section p {
    font-size: 1rem;
  }

  .not-ready-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .not-ready-content {
    padding: 0 10px;
  }

  .not-ready-section h2 {
    font-size: 1.4rem;
  }
} */

.option {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(11, 31, 54, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(11, 31, 54, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.option .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.option h2 {
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.option .lead {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.option .divider {
  width: 60px;
  height: 3px;
  background: var(--deep-blue);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

.option .cta {
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.option .btn {
  display: inline-block;
  background: var(--deep-blue);
  color: var(--ivory-white);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Toast Notifications - Add this to the end of your styles.css */

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: inherit;
  font-size: 14px;
  min-width: 300px;
  max-width: 400px;
  pointer-events: auto;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.success {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.toast.error {
  background: linear-gradient(135deg, #f44336, #da190b);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(400px);
  opacity: 0;
}

.toast-icon {
  font-size: 18px;
  font-weight: bold;
}

.toast-message {
  flex: 1;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
}

.submit-btn:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn:disabled:hover {
  background: #95a5a6;
  transform: none;
}

.submit-btn.loading {
  position: relative;
  color: transparent;
  cursor: wait;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.red-text {
  color: red;
}

/* Apply wait cursor to entire page during form submission */
body.form-loading {
  cursor: wait !important;
}

body.form-loading * {
  cursor: wait !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
