* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff6b35;
  --secondary: #004e89;
  --accent: #00d4ff;
  --dark: #0a0e27;
  --light: #f5f7fa;
  --text: #1a1a1a;
  --text-light: #666666;
  --border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo placeholder styling for future image */
.logo-placeholder {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-light);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text h1 {
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}

.nav-tagline {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #ffffff;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .brand-text h1 {
    font-size: 20px;
  }

  .logo-placeholder {
    width: 70px;
    height: 70px;
  }
}

/* Hero Section with 2-Column Layout */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background-color: #ffffff;
}

/* New 2-column grid layout for hero */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-column {
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 100%;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-large {
  padding: 15px 50px;
  font-size: 18px;
}

/* Image slider column styling */
.hero-slider-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Image styling - no background needed for transparent PNGs */
.hero-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background-color: var(--primary);
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-slider {
    height: 400px;
  }
}

@media (max-width: 768px) {
  /* Stack columns vertically on tablet and mobile */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-slider {
    height: 350px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-slider {
    height: 280px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--light);
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  color: var(--primary);
}

.about-icon svg {
  width: 32px;
  height: 32px;
}

.about-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Team Section */
.team {
  padding: 80px 0;
  background-color: #ffffff;
}

.team h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.team-card {
  background-color: var(--light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.team-contact a {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.team-contact a:hover {
  color: var(--secondary);
}

/* Careers Section */
.careers {
  padding: 80px 0;
  background-color: var(--light);
}

.careers h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 10px;
}

.careers-content {
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.careers-description {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 10px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.info-card {
  background-color: var(--light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--secondary);
}

.contact-form {
  background-color: var(--light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: #ffffff;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent);
}

.footer-section p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .about h2,
  .team h2,
  .careers h2,
  .contact h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about,
  .team,
  .careers,
  .contact {
    padding: 50px 0;
  }

  .about h2,
  .team h2,
  .careers h2,
  .contact h2 {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .btn-large {
    padding: 12px 30px;
    font-size: 16px;
  }

  .about-card,
  .team-card {
    padding: 25px 20px;
  }

  .about-icon {
    width: 50px;
    height: 50px;
  }

  .about-icon svg {
    width: 28px;
    height: 28px;
  }

  .team-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .team-card h3 {
    font-size: 18px;
  }

  .info-card {
    padding: 20px;
  }

  .contact-form {
    padding: 25px;
  }
}

/* ========================
   Thank You Section Styles
   Paste this at the end of styles.css
   ======================== */

.thank-you-section {
  padding: 120px 0;
  background-color: var(--light);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-content {
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 680px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  color: #ffffff;
}

.thank-you-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 2;
}

.thank-you-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.thank-you-message {
  font-size: 22px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.thank-you-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.thank-you-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 80px 0;
    min-height: auto;
  }

  .thank-you-content {
    padding: 40px 25px;
  }

  .thank-you-content h1 {
    font-size: 32px;
  }

  .thank-you-message {
    font-size: 18px;
  }

  .thank-you-description {
    font-size: 14px;
  }

  .thank-you-icon {
    width: 70px;
    height: 70px;
  }

  .thank-you-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .thank-you-content h1 {
    font-size: 24px;
  }

  .thank-you-message {
    font-size: 16px;
  }

  .thank-you-description {
    font-size: 13px;
  }
}
