/* Modern dark theme + glassmorphism navbar styles (no blue) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #181818;
  color: #f5f5f5;
  /* Prevent horizontal scroll caused by 100vw on sections */
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  background: rgba(34, 34, 34, 0.85);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow-x: auto;
  max-width: 100vw;
  box-sizing: border-box;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #f5f5f5;
  letter-spacing: 1px;
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  object-fit: cover;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  /* Prevent overflow and wrap links if needed */
  max-width: 100vw;
  box-sizing: border-box;
}

.navbar-links li a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.navbar-links li a:hover {
  background: rgba(207, 255, 226, 0.10); /* #CFFFE2 accent */
  color: #CFFFE2;
}

@media (max-width: 1100px) {
  .navbar-links {
    gap: 1rem;
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 0.5rem;
  }
  .navbar-links {
    gap: 0.7rem;
    font-size: 0.95rem;
  }
}

/* Hamburger */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

.navbar-hamburger span {
  display: block;
  height: 3px;
  width: 24px;
  background: #f5f5f5;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  right: 2rem;
  background: rgba(34,34,34,0.98);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-radius: 16px;
  overflow: hidden;
  animation: dropdown 0.35s cubic-bezier(.77,0,.18,1) forwards;
}

@keyframes dropdown {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0);}
}

.navbar-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.navbar-mobile-menu ul li a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 2rem;
  display: block;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.navbar-mobile-menu ul li a:hover {
  background: rgba(207, 255, 226, 0.10);
  color: #CFFFE2;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #181818;
}

.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
  filter: blur(2px) grayscale(0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 1rem;
  background: rgba(34,34,34,0.7);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1) both;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #CFFFE2; /* accent color */
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #f5f5f5;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #232323;
  background: linear-gradient(90deg, #CFFFE2 60%, #26a69a 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.hero-cta:hover {
  background: linear-gradient(90deg, #26a69a 60%, #CFFFE2 100%);
  color: #f5f5f5;
  transform: translateY(-2px) scale(1.04);
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* About Us Section */
.about-section {
  position: relative;
  width: 100vw;
  min-height: 520px;
  background: #232323;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-bg-diagonal {
  position: absolute;
  top: -80px; left: -120px;
  width: 120vw;
  height: 340px;
  background: linear-gradient(120deg, #CFFFE2 0%, #26a69a 100%);
  opacity: 0.10;
  transform: rotate(-7deg);
  z-index: 0;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  gap: 3rem;
}

.about-image {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  max-width: 400px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(34,34,34,0.7);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.about-story {
  flex: 2;
  padding: 2rem 1rem;
  background: rgba(34,34,34,0.7);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  animation: fadeInAbout 1.2s cubic-bezier(.77,0,.18,1) both;
  opacity: 0;
  transform: translateY(40px);
}

.about-story h2 {
  font-size: 2rem;
  color: #CFFFE2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-story p {
  font-size: 1.15rem;
  color: #f5f5f5;
  line-height: 1.7;
  font-weight: 400;
}

@keyframes fadeInAbout {
  0% { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Journey Section */
.journey-section {
  background: #181818;
  padding: 5rem 0 4rem 0;
  position: relative;
  width: 100vw;
}

.journey-title {
  text-align: center;
  font-size: 2.2rem;
  color: #CFFFE2;
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  /* Remove default opacity and transform so items are visible before JS runs */
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.right {
  justify-content: flex-end;
}

.timeline-content {
  background: rgba(34,34,34,0.7);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 2rem 2rem 2rem 2.5rem;
  min-width: 220px;
  max-width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-date {
  font-size: 1.1rem;
  font-weight: 700;
  color: #CFFFE2;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.timeline-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  color: #CFFFE2;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.timeline-content p {
  color: #f5f5f5;
  font-size: 1rem;
  margin: 0;
}

/* Services Section */
.services-section {
  background: #232323;
  padding: 4rem 0 4rem 0;
  width: 100vw;
}

.services-title {
  text-align: center;
  font-size: 2rem;
  color: #CFFFE2;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.service-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(207,255,226,0.07);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(207,255,226,0.18);
  transition: background 0.2s;
}

.service-block:not(:last-child) {
  margin-bottom: 0.5rem;
}

.service-block:hover {
  background: rgba(207,255,226,0.15);
}

.service-icon {
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.service-block:hover .service-icon {
  transform: scale(1.08);
}

.service-content h3 {
  font-size: 1.15rem;
  color: #CFFFE2;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: #f5f5f5;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-link {
  color: #CFFFE2;
  font-size: 0.98rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.service-link:hover {
  color: #fff;
}

/* Accessibility: SVG icons */
.service-icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

/* Careers Section */
.careers-section {
  background: #232323;
  padding: 4rem 0 4rem 0;
  width: 100vw;
}

.careers-title {
  text-align: center;
  font-size: 2rem;
  color: #CFFFE2;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.careers-cta {
  text-align: center;
  color: #f5f5f5;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.jobs-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(207,255,226,0.07);
  border-radius: 18px;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(207,255,226,0.18);
  transition: background 0.2s;
  position: relative;
}
.job-item:hover {
  background: rgba(207,255,226,0.15);
}
.job-icon {
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-info {
  flex: 1;
}
.job-title {
  font-size: 1.1rem;
  color: #CFFFE2;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.job-meta {
  color: #bdbdbd;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}
.job-desc {
  color: #f5f5f5;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.job-apply-btn {
  background: #CFFFE2;
  color: #232323;
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  margin-left: 1rem;
  align-self: flex-start;
}
.job-apply-btn:hover {
  background: #232323;
  color: #CFFFE2;
  border: 1px solid #CFFFE2;
}

/* Apply Modal */
.apply-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(24,24,24,0.92);
  align-items: center;
  justify-content: center;
}
.apply-modal.active {
  display: flex;
}
.apply-modal-content {
  background: #232323;
  color: #CFFFE2;
  border-radius: 18px;
  max-width: 420px;
  width: 90vw;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: fadeInUp 0.5s;
}
.apply-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #CFFFE2;
  font-size: 2rem;
  cursor: pointer;
}

/* Contact Us Section */
.contactus-section {
  background: linear-gradient(120deg, #181818 60%, #232323 100%);
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.contactus-container {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: rgba(24,24,24,0.92);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.contactus-form-area, .contactus-info-area {
  flex: 1 1 0;
  min-width: 0;
}
.contactus-form-area h2 {
  color: #CFFFE2;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.contactus-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contactus-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contactus-form-group label {
  color: #CFFFE2;
  font-size: 1rem;
  font-weight: 600;
}
.contactus-form-group input,
.contactus-form-group textarea {
  background: #232323;
  color: #f5f5f5;
  border: 1px solid #CFFFE2;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: border 0.2s;
}
.contactus-form-group input:focus,
.contactus-form-group textarea:focus {
  border-color: #fff;
}
.contactus-submit {
  background: #CFFFE2;
  color: #232323;
  border: none;
  border-radius: 24px;
  padding: 0.7rem 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contactus-submit:hover {
  background: #232323;
  color: #CFFFE2;
  border: 1px solid #CFFFE2;
}
.contactus-info-area {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contactus-info-area h3 {
  color: #CFFFE2;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.contactus-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  color: #f5f5f5;
  font-size: 1rem;
}
.contactus-info-list li {
  margin-bottom: 0.7rem;
}
.contactus-info-list a {
  color: #CFFFE2;
  text-decoration: underline;
}
.contactus-socials {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.2rem;
}
.contactus-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
  padding: 0.25rem;
}
.contactus-social-icon:hover {
  background: #CFFFE2;
  transform: scale(1.12);
}
.contactus-social-icon svg path,
.contactus-social-icon svg circle,
.contactus-social-icon svg rect {
  transition: stroke 0.2s, fill 0.2s;
}
.contactus-social-icon:hover svg path,
.contactus-social-icon:hover svg circle,
.contactus-social-icon:hover svg rect {
  stroke: #232323 !important;
  fill: #232323 !important;
}
@media (max-width: 900px) {
  .contactus-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0.5rem;
  }
  .contactus-info-area {
    padding-left: 0;
    margin-top: 2rem;
  }
}
@media (max-width: 600px) {
  .contactus-container {
    padding: 1rem 0.2rem;
    border-radius: 0;
  }
  .contactus-form-area h2 {
    font-size: 1.1rem;
  }
  .contactus-info-area h3 {
    font-size: 1rem;
  }
}

/* Footer */
.site-footer {
  background: rgba(24, 24, 24, 0.98);
  color: #CFFFE2;
  padding: 2.5rem 0 0.5rem 0;
  margin-top: 0;
  border-top: 1px solid rgba(207,255,226,0.10);
  font-size: 1rem;
  width: 100vw;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.footer-company {
  font-weight: 700;
  font-size: 1.1rem;
  color: #CFFFE2;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #CFFFE2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1rem;
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
}
.footer-links a:hover {
  color: #232323;
  background: #CFFFE2;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
  padding: 0.25rem;
}
.footer-socials a:hover {
  background: #CFFFE2;
  transform: scale(1.12);
}
.footer-socials svg path,
.footer-socials svg circle,
.footer-socials svg rect {
  transition: stroke 0.2s, fill 0.2s;
}
.footer-socials a:hover svg path,
.footer-socials a:hover svg circle,
.footer-socials a:hover svg rect {
  stroke: #232323 !important;
  fill: #232323 !important;
}
.footer-bottom {
  text-align: center;
  color: #bdbdbd;
  font-size: 0.98rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  .navbar-links {
    gap: 1rem;
  }
  .hero-title { font-size: 2.2rem; }
  .about-content { flex-direction: column; gap: 2rem; padding: 2rem 1rem; }
  .about-image, .about-story { max-width: 100%; }
  .timeline { gap: 2rem; }
  .timeline-content { max-width: 100%; }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0 1rem;
  }
  .footer-links {
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .navbar-links {
    display: none;
  }
  .navbar-hamburger {
    display: flex;
  }
  .navbar-mobile-menu {
    display: block;
  }
  .timeline-item,
  .timeline-item.right {
    justify-content: flex-start;
  }
  .timeline-content {
    padding: 1.2rem 1rem 1.2rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .site-footer {
    font-size: 0.98rem;
    padding: 1.5rem 0 0.5rem 0;
  }
  .footer-container {
    padding: 0 0.5rem;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .footer-brand {
    gap: 0.5rem;
  }
}

/* Prevent horizontal scroll from 100vw on small screens */
.hero-section,
.about-section,
.journey-section,
.services-section,
.careers-section,
.contactus-section,
.site-footer {
  /* Prevent horizontal scroll from 100vw on small screens */
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* No CSS changes needed for more content, just ensure sections remain responsive and flexible */
