:root {
  --bg-main: #ffffff;
  --bg-card: #ffffff;
  --text-main: #111111;
  --text-muted: #444444;
  --border-color: #e5e5e5;
  --profile-icon-color: #000000;
  --timeline-arrow-color: #000000;
  --timeline-arrow-bg: transparent;


}



/* DARK MODE */
body.dark {
  --bg-main: #0f0f0f;
  --bg-card: #1a1a1a;
  --text-main: #f1f1f1;
  --text-muted: #b5b5b5;
  --border-color: #2a2a2a;
  --profile-icon-color: #fff;
  --timeline-arrow-color: #ffffff;
  --timeline-arrow-bg: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--bg-main);
}

/* NAVBAR */
.navbar {
  width: 100%;
  height: 80px;
  padding: 0 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box img {
  height: 50px;
}

.Profile-box {
  width: 40px;
  height: 40px;
  border: 2px solid #e53935;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #e60000;
}

.Profile-box i {
  font-size: 18px;
  color: var(--profile-icon-color);
}


/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO WRAPPER */
.hero-wrapper {
  background: linear-gradient(180deg, #ef4444, #ff7a3d);
  padding-bottom: 120px;
  border-bottom-left-radius: 90px;
  border-bottom-right-radius: 90px;
}

/* HERO */
.hero {
  padding: 60px 0 40px;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 36px;
  line-height: 1.3;
}

.hero-text p {
  margin: 20px 0;
}

/* SEARCH WRAPPER */
.search-wrapper {
  background: #fff2ec;
  padding: 25px 30px;
  border-radius: 16px;
  margin-top: 30px;

  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15);
}

.search-wrapper h3 {
  color: var(--text-main);
  margin-bottom: 15px;
  font-size: 18px;
}

/* SEARCH BOX */
.search-box {
  background: var(--bg-main);;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
}

.search-box button {
  background: #e60000;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
}

/* ILLUSTRATION */
.illustration-box {
  background: rgba(255,255,255,0.25);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-box img {
  width: 100%;
  max-width: 320px;
}

/* JOBS */
.jobs-box {
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.jobs h2 {
  color: #fff;
  margin-bottom: 30px;
}

/* JOB GRID */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* JOB CARD */
.job-card {
  background: var(--bg-main);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.job-card button {
  margin-top: 15px;
  background: #e60000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* SEE ALL */
.see-all {
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-wrapper {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .search-box {
    flex-direction: column;
  }
}

/* ABOUT US */
.about-us {
  padding: 100px 0;
  background: var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.about-label {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.about-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-text ol {
  padding-left: 20px;
  margin-top: 15px;
}

.about-text ol li {
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* VIDEO */
.about-video {
  background: var(--bg-main);
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-video iframe {
  width: 100%;
  height: 340px;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-video iframe {
    height: 220px;
  }
}

/* TIMELINE */
.timeline {
  padding: 100px 0;
  background: var(--bg-main);
}

/* TITLE */
.timeline-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

.timeline-title span {
  color: #e60000;
}

/* WRAPPER */
.timeline-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* SLIDER */
.timeline-slider {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* ITEM */
.timeline-item {
  min-width: 320px;
  max-width: 320px;
}

.timeline-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
}

.timeline-item h3 {
  color: #e60000;
  font-size: 24px;
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ARROWS */
.timeline-arrow {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  color: var(--timeline-arrow-color); 
}


.timeline-arrow.left {
  margin-right: 15px;
}

.timeline-arrow.right {
  margin-left: 15px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .timeline-title {
    font-size: 32px;
  }

  .timeline-item {
    min-width: 260px;
  }

  .timeline-item img {
    height: 170px;
  }
}
.image-slider-section {
  padding: 80px 0;
  background: var(--bg-main);
  overflow: hidden;
}

.image-slider-track {
  width: 100%;
  overflow: hidden;
}

.image-slider {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLoop 25s linear infinite;
}

.image-slide {
  flex: 0 0 auto;
  width: 280px;
}

.image-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

/* SEAMLESS LOOP */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .image-slide {
    width: 220px;
  }

  .image-slide img {
    height: 200px;
  }
}
.image-slider:hover {
  animation-play-state: paused;
}
.image-slider {
  will-change: transform;
}

.footer {
  background: linear-gradient(90deg, #e12626, #ff9b42);
  color: #fff;
  padding: 70px 80px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 50px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 0.7;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: rgba(255,255,255,0.4);
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.4);
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 30px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* PROFILE DROPDOWN */
.profile-dropdown {
  position: absolute;
  top: 90px;
  right: 6rem;
  width: 260px;
  background: var(--bg-main);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  padding: 15px;
  display: none;
  z-index: 999;
}

.profile-dropdown.show {
  display: block;
}

.profile-header {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e60000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.profile-header small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.profile-dropdown a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.profile-dropdown a.logout {
  color: #e60000;
  border-top: 1px solid #eee;
  margin-top: 10px;
  padding-top: 12px;
}

/* THEME SWITCHER */
.theme-switcher {
  display: flex;
  gap: 8px;
  margin: 15px 0;
}

.theme-switcher button {
  flex: 1;
  border: none;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

/* DARK MODE */
body.dark {
  background: linear-gradient(180deg, #0f0f0f, #121212);
}

body.dark .about-us,
body.dark .timeline,
body.dark .image-slider-section {
  background: #121212;
}

body.dark .job-card,
body.dark .search-wrapper,
body.dark .profile-dropdown {
  background: #1e1e1e;
  color: #eee;
}

body.dark a {
  color: #fff;
}
h1, h2, h3, h4 {
  color: var(--text-main);
}


