@import url("https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400;700;900&display=swap");
:root {
  --orange: #ff2f00;
  --white: #fff;
  --gray: #f7f7f7;
  --main-font: "Readex Pro", Arial, sans-serif;
}
* {
  box-sizing: border-box;
  font-family: var(--main-font);
  margin: 0;
  padding: 0;
}

body {
  background: url("ignite-theme.jpg") center center/cover no-repeat #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  opacity: 0;
  animation: site-fadein 1.1s ease-in forwards;
  overflow-x: hidden;
}

html {
  margin: 0;
  padding: 0;
}
@keyframes site-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.navbar {
  top: 0;
  left: 0;
  width: 100vw;
  background: rgba(248, 247, 245, 0.85) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  margin: 0;
  border-radius: 0;
  border-bottom: 5px solid #ff2f00;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.logo {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo img {
  width: 100%;
  height: 100%;
}
.logo-text {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ff2f00;
  text-transform: none;
  margin-left: 0.3rem;
  display: inline-block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-text:hover {
  transform: rotate(-360deg) scale(1.08);
}
.logo-text::after {
  content: none;
}
.menu {
  display: flex;
  gap: 1rem;
}
.menu ul {
  display: flex;
  gap: 2rem;
}
.menu ul li {
  list-style: none;
  position: relative;
  margin-left: 1.2rem;
  margin-right: 0.2rem;
}
.menu ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -1.1rem;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: #ff2f00;
  border-radius: 2px;
}
.menu ul li a {
  position: relative;
  text-decoration: none;
  color: #ff3c00;
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
}
.menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #c12700;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu ul li a:hover {
  color: #c12700;
  transform: translateY(-2px);
}
.menu ul li a:hover::after {
  width: 100%;
}
.hero-section {
  width: 100vw;
  height: calc(100vh - 120px);
  min-height: calc(100vh - 120px);
  margin: 0;
  padding: 0.5rem 3rem;
  border-radius: 0;
  background: rgba(248, 247, 245, 0.85) !important;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1rem;
  box-shadow: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-vertical-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
}

.hero-text {
  margin-bottom: 1rem;
}

.hero-countdown {
  margin: 1rem 0;
}

.hero-button {
  margin-top: 0.1rem;
}
.hero-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2.2rem;
  height: 100%;
}
.countdown-box {
  order: 1;
  flex: 0 0 220px;
}
.hero-content {
  flex: 1 1 0;
  min-width: 0;
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 3vw;
}
.hero-section h1 {
  font-family: var(--main-font);
  font-size: 3.5rem;
  font-weight: 900;
  color: #ff2f00;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.hero-highlight {
  font-weight: 900;
  color: #ff2f00;
  text-shadow: 0 2px 12px rgba(255, 47, 0, 0.1), 0 1px 0 #fff;
  position: relative;
}

/* Typing animation cursor effect */
#typing-text::after {
  content: "|";
  animation: blink 1s infinite;
  color: #ff2f00;
  font-weight: bold;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.apply-btn-glow {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
  font-family: var(--main-font);
  font-weight: 800;
  color: #fff;
  background: #ff2f00;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 rgba(255, 47, 0, 0);
  cursor: pointer;
  transition: box-shadow 0.3s, background 0.2s, color 0.2s;
  outline: none;
  letter-spacing: 0.03em;
  animation: glow-pulse 1.3s infinite alternate;
}
.apply-btn-glow a{
  text-decoration: none;
  color: #fff;
}
@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 0px 0 #ff2f0077, 0 2px 8px #ff2f0033;
    background: #ff2f00;
  }
  60% {
    box-shadow: 0 0 18px 6px #ff2f00cc, 0 2px 8px #ff2f0033;
    background: #ff3c00;
  }
  100% {
    box-shadow: 0 0 0px 0 #ff2f0077, 0 2px 8px #ff2f0033;
    background: #ff2f00;
  }
}
.main-container {
  width: 100vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
}
.navbar,
.hero-section {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.hero-section {
  min-height: 90vh;
  padding: 4.5rem 3rem 4.5rem 1.5rem;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background: rgba(248, 247, 245, 0.85) !important;
}
.hero-content button.apply-btn-glow {
  margin-top: 2.2rem;
}
.hero-deco-wave {
  flex: 0 0 220px;
  height: 180px;
  align-self: stretch;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.hero-deco-wave::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 30px;
  width: 180px;
  height: 120px;
  background: linear-gradient(120deg, #ff2f00cc 60%, #ff7a1a55 100%);
  opacity: 0.7;
  border-radius: 60% 40% 60% 40%/40% 60% 40% 60%;
  filter: blur(2px);
  animation: wave-move 3.5s ease-in-out infinite alternate;
}
@keyframes wave-move {
  0% {
    transform: scaleX(1) scaleY(1) translateY(0);
  }
  60% {
    transform: scaleX(1.08) scaleY(0.96) translateY(-10px);
  }
  100% {
    transform: scaleX(0.92) scaleY(1.04) translateY(10px);
  }
}
.hero-deco-circles {
  order: 3;
  flex: 0 0 220px;
  height: 180px;
  align-self: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  animation: deco-circles-move 3.5s infinite ease-in-out alternate;
}
.hero-flex-spacer {
  order: 4;
  flex: 0 0 0;
}
@keyframes deco-circles-move {
  0% {
    transform: translateX(-24px);
  }
  50% {
    transform: translateX(24px);
  }
  100% {
    transform: translateX(-24px);
  }
}
.deco-circles-svg {
  width: 170px;
  height: 170px;
  display: block;
}
.flame-group {
  transform-origin: 85px 92px;
  animation: flame-swing 2.2s infinite ease-in-out alternate;
}
@keyframes flame-swing {
  0% {
    transform: translateX(0) rotate(-7deg);
  }
  50% {
    transform: translateX(12px) rotate(7deg);
  }
  100% {
    transform: translateX(0) rotate(-7deg);
  }
}
.navbar,
.hero-section,
.main-container > *:not(:first-child) {
  opacity: 0;
  transform: translateY(24px);
  animation: stagger-fadein 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.navbar {
  animation-delay: 0.2s;
}
.hero-section {
  animation-delay: 0.5s;
}
.main-container > *:not(:first-child):not(.hero-section) {
  animation-delay: 0.8s;
}

@keyframes stagger-fadein {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Comprehensive Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .logo{
    margin-right: 7rem;
  }
  .menu ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .menu ul li {
    margin: 0;
  }
  
  .menu ul li:not(:last-child)::after {
    display: none;
  }
  
  .menu ul li a {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
  
  .hero-section {
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .modern-countdown-container {
    min-width: 100%;
    padding: 2rem 1.5rem;
  }
  
  .countdown-display {
    gap: 0.5rem;
  }
  
  .time-value {
    font-size: 1.3rem;
    padding: 0.6rem 0.4rem;
    min-width: 45px;
  }
  
  .modern-roles-slider-section {
    padding: 2rem 1rem;
  }
  
  .modern-slider-container {
    max-width: 100%;
    min-height: 240px;
  }
  
  .modern-slider-track {
    min-height: 240px;
  }
  
  .modern-slide {
    padding: 1.5rem 1rem;
    min-width: 100%;
  }
  
  .modern-slide-number {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  
  .modern-role-title {
    font-size: 1.4rem;
  }
  
  .modern-role-section-title {
    font-size: 1rem;
  }
  
  .modern-role-mission {
    font-size: 0.85rem;
  }
  
  .modern-role-responsibilities,
  .modern-role-skills {
    font-size: 0.8rem;
    max-width: 100%;
  }
  
  .modern-apply-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    margin: 1rem auto 0 auto;
  }
  
  .modern-slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    border-width: 2px;
  }
  
  .modern-slider-arrow.left {
    margin-right: 0.8rem;
  }
  
  .modern-slider-arrow.right {
    margin-left: 0.8rem;
  }
  
  .modern-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-width: 1px;
  }
  
  .open-roles-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .menu ul {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
  
  .hero-section {
    padding: 1.5rem 0.8rem;
    min-height: 110vh;
  }
  
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .modern-countdown-container {
    padding: 1.5rem 1rem;
  }
  
  .time-value {
    font-size: 1.1rem;
    padding: 0.5rem 0.3rem;
    min-width: 38px;
  }
  
  .time-label {
    font-size: 0.65rem;
  }
  
  .modern-roles-slider-section {
    padding: 1.5rem 0.8rem;
  }
  
  .modern-slider-container {
    min-height: 220px;
  }
  
  .modern-slider-track {
    min-height: 220px;
  }
  
  .modern-slide {
    padding: 1.2rem 0.8rem;
  }
  
  .modern-role-title {
    font-size: 1.2rem;
  }
  
  .modern-role-section-title {
    font-size: 0.9rem;
  }
  
  .modern-role-mission {
    font-size: 0.8rem;
  }
  
  .modern-role-responsibilities,
  .modern-role-skills {
    font-size: 0.75rem;
  }
  
  .modern-apply-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
  }
  
  .modern-slider-arrow {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .open-roles-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 320px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .modern-countdown-container {
    padding: 1.2rem 0.8rem;
  }
  
  .time-value {
    font-size: 1rem;
    min-width: 32px;
  }
  
  .modern-slide {
    padding: 1rem 0.6rem;
  }
  
  .modern-role-title {
    font-size: 1.1rem;
  }
  
  .modern-role-responsibilities,
  .modern-role-skills {
    font-size: 0.7rem;
  }
  
  .modern-apply-btn {
    font-size: 0.75rem;
    padding: 0.45rem 1rem;
  }
  
  .open-roles-title {
    font-size: 1.3rem;
  }
}
h3 {
  color: #ff2f00;
}
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .hero-deco-wave {
    display: none;
  }
  .hero-deco-circles {
    margin: 1.2rem auto 0 auto;
    max-width: 340px;
    font-size: 1rem;
  }
  .hero-content {
    margin-left: 0;
    text-align: center;
    margin-left: 3vw;
  }
}
/* Modern Countdown Timer Styles */
.modern-countdown-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
  border: 3px solid #ff2f00;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 
    0 8px 32px rgba(255, 47, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
  min-width: 580px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.modern-countdown-container:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(255, 47, 0, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.countdown-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ff2f00;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-icon {
  font-size: 1.3rem;
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.time-value {
  background: linear-gradient(135deg, #ff2f00 0%, #ff6b35 100%);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  padding: 0.8rem 0.6rem;
  border-radius: 12px;
  min-width: 60px;
  box-shadow: 
    0 4px 12px rgba(255, 47, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.time-value::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.time-value:hover::before {
  left: 100%;
}

.time-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time-separator {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff2f00;
  margin: 0 0.2rem;
  animation: blink-separator 2s infinite;
}

@keyframes blink-separator {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.countdown-message {
  margin-bottom: 1rem;
}

.deadline-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  background: rgba(255, 47, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 47, 0, 0.2);
}

.countdown-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 47, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff2f00, #ff6b35, #ff2f00);
  border-radius: 3px;
  width: 0%;
  transition: width 1s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Expired state */
.modern-countdown-container.expired {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  border-color: #999;
}

.modern-countdown-container.expired .time-value {
  background: linear-gradient(135deg, #666 0%, #888 100%);
}

.modern-countdown-container.expired .countdown-title,
.modern-countdown-container.expired .time-separator {
  color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
  .modern-countdown-container {
    min-width: 240px;
    padding: 1.5rem 1rem;
  }
  
  .countdown-display {
    gap: 0.5rem;
  }
  
  .time-value {
    font-size: 1.5rem;
    padding: 0.6rem 0.4rem;
    min-width: 45px;
  }
  
  .time-separator {
    font-size: 1.2rem;
  }
}
/* Modern About Section - Full Redesign */
.about-section {
  width: 100vw;
  max-width: 100%;
  background: linear-gradient(135deg, rgba(248, 247, 245, 0.95) 0%, rgba(255, 240, 230, 0.9) 100%);
  border-top: solid 4px #ff2f00;
  border-bottom: solid 4px #ff2f00;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff2f00" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Vision Block - Full Width */
.vision-block {
  width: 100%;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ff2f00 0%, #ff6b35 50%, #ff2f00 100%);
  position: relative;
  overflow: hidden;
}

.vision-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: vision-shimmer 4s infinite;
}

@keyframes vision-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vision-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  animation: vision-title-glow 3s ease-in-out infinite alternate;
}

@keyframes vision-title-glow {
  0% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.1); }
  100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.2); }
}

.vision-statement {
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto 2rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.vision-accent {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, white, transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: vision-accent-pulse 2s ease-in-out infinite alternate;
}

@keyframes vision-accent-pulse {
  0% { opacity: 0.7; transform: scaleX(1); }
  100% { opacity: 1; transform: scaleX(1.2); }
}

/* Two Column Layout */
.about-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.about-columns::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, #ff2f00 20%, #ff6b35 50%, #ff2f00 80%, transparent 100%);
  z-index: 1;
}

.about-column {
  position: relative;
  z-index: 2;
}

.values-column {
  padding-left: 3rem;
  padding-right: 1rem;
}

.ignite-column {
  padding-right: 3rem;
  padding-left: 1rem;
}

.column-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff2f00;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 1rem;
}

.column-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff2f00, #ff6b35);
  border-radius: 2px;
}

/* Unified Card Styles for Both Columns */
.unified-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.unified-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 2px solid rgba(255, 47, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 320px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--main-font);
  gap: 1rem;
}

.unified-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 47, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.unified-card:hover::before {
  opacity: 1;
}

.unified-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #ff2f00;
  box-shadow: 
    0 20px 40px rgba(255, 47, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 3.5rem;
  color: #ff2f00;
  display: block;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.unified-card:hover .card-icon {
  transform: scale(1.2) rotate(5deg);
  color: #ff6b35;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff2f00;
  transition: color 0.3s ease;
  font-family: var(--main-font);
  margin: 0;
  flex-shrink: 0;
}

.card-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  transition: all 0.4s ease;
  font-family: var(--main-font);
  margin: 0;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-subtitle {
  font-size: 1.1rem;
  color: #ff6b35;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
  font-family: var(--main-font);
  margin: 0;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unified-card:hover .card-desc {
  opacity: 0;
  transform: translateY(-20px);
}

.unified-card:hover .card-subtitle {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 2rem 2rem 2rem;
  }
  
  .footer-logo img {
    width: 2.2rem;
    height: 2.2rem;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .about-columns {
    gap: 3rem;
  }
  
  .vision-title {
    font-size: 2.8rem;
  }
  
  .column-title {
    font-size: 2.2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem 2rem 1.5rem;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
  }
  
  .footer-column-title {
    font-size: 1.2rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-nav {
    align-items: flex-start;
  }
  
  .footer-contact-info {
    justify-content: center;
    align-items: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-columns::before {
    display: none;
  }
  
  .values-column,
  .ignite-column {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .vision-block {
    padding: 3rem 1.5rem;
  }
  
  .vision-title {
    font-size: 2.5rem;
  }
  
  .vision-statement {
    font-size: 1.2rem;
  }
  
  .about-container {
    padding: 3rem 1.5rem;
  }
  
  .unified-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  
  .unified-card {
    height: 240px;
    min-height: 240px;
    padding: 1.5rem 1rem;
  }
  
  .card-icon {
    font-size: 2.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-desc {
    font-size: 0.85rem;
  }
  
  .card-subtitle {
    font-size: 0.95rem;
  }
  
  .column-title {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-flex {
    flex-direction: column;
    gap: 2rem;
  }
  
  .modern-countdown-container {
    min-width: 100%;
    margin: 0 auto;
  }
  
  /* Enhanced Footer Responsiveness for Tablets */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem 1.5rem;
    text-align: center;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-column-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  
  .footer-nav {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-nav li {
    margin: 0;
  }
  
  .footer-nav li a {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    display: inline-block;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .footer-nav li a:hover {
    background: rgba(255, 47, 0, 0.1);
    transform: translateX(0);
  }
  
  .footer-contact-info {
    align-items: center;
    gap: 1.2rem;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
  }
  
  .footer-contact-item {
    justify-content: center;
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  
  .footer-contact-item i {
    font-size: 1.2rem;
    width: 24px;
    margin-right: 0.5rem;
  }
  
  .footer-social {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
  }
  
  .social-link svg {
    width: 22px;
    height: 22px;
  }
  
  .footer-bottom {
    padding: 2rem 1.5rem;
  }
  
  .footer-copyright {
    gap: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .vision-block {
    padding: 2.5rem 1rem;
  }
  
  .vision-title {
    font-size: 2rem;
  }
  
  .vision-statement {
    font-size: 1.1rem;
  }
  
  .about-container {
    padding: 2.5rem 1rem;
  }
  
  .values-column,
  .ignite-column {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .unified-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .unified-card {
    padding: 1.5rem 1rem;
    height: 220px;
    min-height: 220px;
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-desc {
    font-size: 0.8rem;
  }
  
  .card-subtitle {
    font-size: 0.85rem;
  }
  
  .column-title {
    font-size: 1.8rem;
  }
  
  .navbar {
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .menu ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-section {
    padding: 1.5rem 0.5rem;
    min-height: 100vh;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  /* Enhanced Footer Responsiveness for Small Mobile */
  .footer-content {
    padding: 2.5rem 1rem 2rem 1rem;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo img {
    width: 2.2rem;
    height: 2.2rem;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-column-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer-nav {
    gap: 0.8rem;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav li {
    width: 100%;
    max-width: 200px;
  }
  
  .footer-nav li a {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    display: block;
    width: 100%;
    background: rgba(255, 47, 0, 0.05);
    border: 1px solid rgba(255, 47, 0, 0.1);
    border-radius: 8px;
    margin: 0.2rem 0;
  }
  
  .footer-nav li a:hover {
    background: rgba(255, 47, 0, 0.1);
    border-color: rgba(255, 47, 0, 0.2);
    transform: translateX(0) scale(1.02);
  }
  
  .footer-contact-info {
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto 1.5rem auto;
  }
  
  .footer-contact-item {
    font-size: 0.9rem;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 47, 0, 0.05);
    border-radius: 6px;
  }
  
  .footer-contact-item i {
    font-size: 1rem;
    width: 20px;
    margin-right: 0.8rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-social {
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .footer-bottom {
    padding: 1.8rem 1rem;
    border-top: 1px solid rgba(255, 47, 0, 0.15);
  }
  
  .footer-copyright {
    gap: 0.5rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 375px) {
  .vision-title {
    font-size: 1.8rem;
  }
  
  .vision-statement {
    font-size: 1rem;
  }
  
  .unified-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .unified-card {
    height: 200px;
    min-height: 200px;
    padding: 1.2rem 0.8rem;
  }
  
  .card-icon {
    font-size: 1.8rem;
  }
  
  .card-title {
    font-size: 1rem;
  }
  
  .card-desc {
    font-size: 0.8rem;
  }
  
  .card-subtitle {
    font-size: 0.8rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .modern-countdown-container {
    padding: 1.5rem 1rem;
  }
  
  .time-value {
    font-size: 1.2rem;
    padding: 0.5rem 0.3rem;
    min-width: 35px;
  }
  
  .open-roles-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .modern-roles-slider-section {
    padding: 2.5rem 1rem;
  }
  
  /* Optimized Footer for Extra Small Devices */
  .footer-content {
    padding: 2rem 0.8rem 1.5rem 0.8rem;
    gap: 1.8rem;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo img {
    width: 2rem;
    height: 2rem;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-column-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .footer-nav {
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav li {
    width: 100%;
    max-width: 180px;
  }
  
  .footer-nav li a {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    display: block;
    width: 100%;
    background: rgba(255, 47, 0, 0.08);
    border: 1px solid rgba(255, 47, 0, 0.15);
    border-radius: 6px;
    margin: 0.1rem 0;
  }
  
  .footer-nav li a:hover {
    background: rgba(255, 47, 0, 0.12);
    border-color: rgba(255, 47, 0, 0.25);
    transform: translateX(0) scale(1.02);
  }
  
  .footer-contact-info {
    gap: 0.8rem;
    max-width: 280px;
    margin: 0 auto 1.2rem auto;
  }
  
  .footer-contact-item {
    font-size: 0.85rem;
    justify-content: center;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 47, 0, 0.08);
    border-radius: 6px;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  
  .footer-contact-item i {
    font-size: 1rem;
    width: auto;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
  
  .footer-social {
    gap: 0.8rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom {
    padding: 1.5rem 0.8rem;
    border-top: 1px solid rgba(255, 47, 0, 0.2);
  }
  
  .footer-copyright {
    gap: 0.4rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
    line-height: 1.3;
    max-width: 280px;
    margin: 0 auto;
  }
}

html {
  scroll-behavior: smooth;
}

/* Modern Dark Footer Section */
.footer-section {
  width: 100vw;
  margin: 0;
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23ff2f00" opacity="0.05"/><circle cx="80" cy="80" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="50" cy="60" r="0.3" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 2rem 2rem 2rem;
  align-items: start;
}

/* Left Column - Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 2.5rem;
  height: 2.5rem;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(0deg);
  transform: rotate(5deg) scale(1.05);
}

.footer-logo-text {
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-text {
  color: #ff6b35;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  font-family: var(--main-font);
  margin: 0;
}

/* Middle Column - Quick Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-column-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ff2f00;
  margin-bottom: 1rem;
  font-family: var(--main-font);
  position: relative;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff2f00, #ff6b35);
  border-radius: 1px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav li a {
  color: #cccccc;
  text-decoration: none;
  font-family: var(--main-font);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.3rem 0;
  display: inline-block;
}

.footer-nav li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff2f00, #ff6b35);
  transition: width 0.3s ease;
}

.footer-nav li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-nav li a:hover::before {
  width: 100%;
}

/* Right Column - Contact & Social */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #cccccc;
  font-family: var(--main-font);
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-item i {
  color: #ff2f00;
  font-size: 1.1rem;
  width: 20px;
  transition: all 0.3s ease;
}

.footer-contact-item:hover i {
  color: #ff6b35;
  transform: scale(1.1);
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 47, 0, 0.1);
  border: 2px solid rgba(255, 47, 0, 0.3);
  border-radius: 50%;
  color: #cccccc;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ff2f00, #ff6b35);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: #ff2f00;
  box-shadow: 0 8px 20px rgba(255, 47, 0, 0.3);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-link:hover svg {
  color: #ffffff;
  transform: scale(1.1);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 47, 0, 0.2);
  padding: 2rem;
  text-align: center;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-copyright p {
  margin: 0;
  font-family: var(--main-font);
  font-size: 0.9rem;
  color: #999999;
}

.footer-copyright .heart {
  color: #ff2f00;
  font-size: 1.1em;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
}

/* Comprehensive Button Hover Effects */

/* Navbar Link Hover Effects */
.menu ul li a {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1rem;
}

.menu ul li a:hover {
  color: #ff2f00;
  transform: translateY(-2px);
}

/* Apply Now Button Hover Effects */
.modern-apply-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modern-apply-btn a{
  text-decoration: none;
  color: rgb(0, 0, 0);
}


.modern-apply-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.modern-apply-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 47, 0, 0.3);
  background: linear-gradient(135deg, #ff6b35 0%, #ff2f00 100%);
}

.modern-apply-btn:hover::before {
  left: 100%;
}

.modern-apply-btn:active {
  transform: translateY(-1px) scale(1.01);
}

/* Logo Hover Effect */
.logo {
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: rotate(5deg);
}

.logo-text {
  transition: all 0.3s ease;
}

.logo:hover .logo-text {
  color: #ff6b35;
  text-shadow: 0 2px 8px rgba(255, 47, 0, 0.3);
}

/* General Button Base Styles */
button {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus {
  outline: 2px solid #ff2f00;
  outline-offset: 2px;
}

/* Link Hover Effects */
a {
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

/* Interactive Element Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 47, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
  width: 300px;
  height: 300px;
}
/* Modern Interactive Roles Slider Styles - Enhanced with Better Visual Effects */
.modern-roles-slider-section {
  width: 100vw;
  margin: 0;
  padding: 3rem 1.5rem 3rem 1.5rem;
  background: linear-gradient(135deg, rgba(248, 247, 245, 0.95) 0%, rgba(255, 240, 230, 0.9) 50%, rgba(248, 247, 245, 0.95) 100%);
  border-top: solid 4px #ff2f00;
  border-bottom: solid 4px #ff2f00;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 
    inset 0 4px 20px rgba(255, 47, 0, 0.1),
    inset 0 -4px 20px rgba(255, 47, 0, 0.1);
}

.modern-roles-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23ff2f00" opacity="0.03"/><circle cx="70" cy="70" r="0.5" fill="%23ff6b35" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.modern-roles-slider-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 47, 0, 0.02) 50%, transparent 60%);
  animation: section-shimmer 8s infinite;
  pointer-events: none;
}

@keyframes section-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.modern-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.modern-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  min-height: 280px;
}
.modern-slide {
  min-width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 20px;
  box-shadow: 
    0 6px 30px rgba(255, 47, 0, 0.15),
    0 3px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid #ff2f00;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--main-font);
}

.modern-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 47, 0, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modern-slide:hover::before {
  opacity: 1;
}

.modern-slide:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 50px rgba(255, 47, 0, 0.2),
    0 6px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.modern-slide-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ff2f00;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem auto;
  box-shadow: 0 2px 10px #ff2f0033;
  letter-spacing: 1px;
}
.modern-role-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff2f00;
  margin-bottom: 0.8rem;
  text-align: center;
  line-height: 1.2;
}
.modern-role-mission {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.8rem;
  text-align: center;
  line-height: 1.4;
}
.modern-role-responsibilities {
  list-style: disc inside;
  color: #444;
  font-size: 0.9rem;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  max-width: 320px;
  line-height: 1.3;
}
.modern-role-responsibilities li {
  margin-bottom: 0.3rem;
}
.modern-apply-btn {
  display: block;
  margin: 1.5rem auto 0 auto;
  background: #ff2f00;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  border-radius: 1.5rem;
  padding: 0.7rem 2rem;
  box-shadow: 0 2px 12px #ff2f0033;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
  letter-spacing: 0.5px;
}
.modern-apply-btn:hover {
  background: #f8f7f5;
  color: #ff2f00;
  border: 2px solid #ff2f00;
  transform: scale(1.02);
  box-shadow: 0 8px 32px #ff2f0033;
}
.modern-slider-arrow {
  background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
  border: 2px solid #ff2f00;
  color: #ff2f00;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 3px 12px rgba(255, 47, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  font-family: var(--main-font);
}

.modern-slider-arrow:hover {
  background: linear-gradient(135deg, #ff2f00 0%, #ff6b35 100%);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 
    0 6px 20px rgba(255, 47, 0, 0.3),
    0 3px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modern-slider-arrow:active {
  transform: scale(1.05);
}
.modern-slider-arrow.left {
  margin-right: 1.2rem;
}
.modern-slider-arrow.right {
  margin-left: 1.2rem;
}
.modern-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.3rem;
  z-index: 2;
}
.modern-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
  border: 2px solid rgba(255, 47, 0, 0.3);
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 
    0 2px 6px rgba(255, 47, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}

.modern-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.4s ease;
}

.modern-dot:hover {
  transform: scale(1.2);
  border-color: #ff2f00;
  box-shadow: 
    0 4px 12px rgba(255, 47, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.modern-dot.active {
  background: linear-gradient(135deg, #ff2f00 0%, #ff6b35 100%);
  border: 3px solid #ff2f00;
  transform: scale(1.1);
  box-shadow: 
    0 4px 15px rgba(255, 47, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modern-dot.active::before {
  background: rgba(255, 255, 255, 0.8);
}
/* Open Roles Title - Enhanced with Better Visual Effects */
.open-roles-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff2f00;
  text-align: center;
  margin: 0 auto 2.5rem auto;
  position: relative;
  display: block;
  width: 100%;
  font-family: var(--main-font);
  text-shadow: 0 2px 8px rgba(255, 47, 0, 0.15);
  animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
  0% { 
    text-shadow: 0 2px 8px rgba(255, 47, 0, 0.15);
    transform: scale(1);
  }
  100% { 
    text-shadow: 0 4px 16px rgba(255, 47, 0, 0.25), 0 0 20px rgba(255, 107, 53, 0.1);
    transform: scale(1.01);
  }
}

.open-roles-title::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  border-radius: 1px;
  opacity: 0.6;
}

.open-roles-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #ff2f00 30%, #ff6b35 70%, transparent 100%);
  border-radius: 2px;
  animation: underline-pulse 2s ease-in-out infinite alternate;
}

@keyframes underline-pulse {
  0% { 
    opacity: 0.8;
    transform: translateX(-50%) scaleX(1);
  }
  100% { 
    opacity: 1;
    transform: translateX(-50%) scaleX(1.1);
  }
}

/* Ensure consistent font family across all elements */
.modern-role-title,
.modern-role-section-title,
.modern-role-mission,
.modern-role-responsibilities,
.modern-role-skills {
  font-family: var(--main-font);
}

.modern-role-title {
  font-family: var(--main-font);
  font-weight: 800;
}

.modern-role-section-title {
  font-family: var(--main-font);
  font-weight: 700;
}

.modern-apply-btn {
  font-family: var(--main-font);
  font-weight: 800;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .modern-roles-slider-section {
    padding: 2.2rem 1.2rem;
  }
  
  .modern-slider-container {
    max-width: 800px;
    min-height: 260px;
  }
  
  .modern-slider-track {
    min-height: 260px;
  }
  
  .modern-slide {
    padding: 1.8rem 1.5rem;
  }
  
  .modern-role-title {
    font-size: 1.6rem;
  }
  
  .modern-role-section-title {
    font-size: 1.1rem;
  }
  
  .modern-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}
.modern-role-section {
  margin-bottom: 0.8rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #f3f3f3;
}
.modern-role-section:last-child {
  border-bottom: none;
}
.modern-role-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff2f00;
  margin-bottom: 0.2rem;
  margin-top: 0.1rem;
}
.modern-role-skills {
  list-style: disc inside;
  color: #444;
  font-size: 0.9rem;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  max-width: 320px;
  line-height: 1.3;
}
.modern-role-skills li {
  margin-bottom: 0.3rem;
}
@media (max-width: 600px) {
  .hero-button {
    text-align: center;
    margin-top: 20px;
  }

  .apply-btn-glow {
    width: 90%;
    font-size: 16px;
  }
  .hero-section{
    padding: 2rem 1rem;
    min-height: fit-content;
  }
}
@media (max-width: 375px) {
  .hero-button {
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

  .apply-btn-glow {
    font-size: 14px;
    padding: 10px 18px;
    width: 90%;
    max-width: 280px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-section {
    padding: 2rem 1rem;
    min-height: fit-content;
  }
}
@media (max-height: 600px) {
  .apply-btn-glow {
    margin-bottom: 1.5rem;
    transform: scale(0.9); /* تصغير بسيط للزر */
  }
  .hero-section {
    padding-bottom: 5rem; /* مساحة تحتية علشان يظهر */
  }
}

@media (max-width: 1024px) {
  .hero-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
   .apply-btn-glow {
    font-size: 14px;
    padding: 10px 18px;
    width: 90%;
    max-width: 280px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-section {
    padding: 2rem 1rem;
    min-height: fit-content;
  }
}
  

 