/* ============================================
   InspireMe - Complete CSS Stylesheet
   Colors: Navy (#1a2d4d), White (#ffffff), Yellow (#FFD700)
   ============================================ */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a2d4d;
  --secondary: #FFD700;
  --accent: #FF69B4;
  --text-white: #ffffff;
  --text-light: #b0b8c1;
  --border-color: rgba(255, 215, 0, 0.2);
  --gradient: linear-gradient(135deg, #FFD700, #FF69B4, #9D4EDD);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
nav {
  background-color: var(--primary);
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--secondary);
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-white);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 1rem 0;
  border-bottom: 2px solid var(--border-color);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--secondary);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease;
}

.gradient-box {
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.gradient-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: pulse 3s ease-in-out infinite;
}

.play-button {
  font-size: 4rem;
  color: var(--text-white);
  position: relative;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.logo-img {
  max-width: 150px;
  animation: fadeInDown 0.8s ease;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: #FFC700;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background-color: rgba(26, 45, 77, 0.8);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: var(--secondary);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 45, 77, 0.8);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.card-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: rgba(26, 45, 77, 0.5);
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-highlight {
  color: var(--secondary);
  font-weight: 600;
}

.mt-3 {
  margin-top: 2rem;
}

/* Section Header */
.section-header {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 105, 180, 0.02));
  padding: 3rem 0;
  border-bottom: 2px solid var(--border-color);
}

.section-header h1 {
  color: var(--secondary);
  font-size: 2.5rem;
}

/* Interview Content */
.interview-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.interview-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 2px solid var(--border-color);
}

.interview-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.interview-info {
  background-color: rgba(26, 45, 77, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  text-align: justify;
}

.interview-info h2 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.interview-profession {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.interview-company {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.interview-questions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.interview-questions h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.question-list {
  list-style: none;
  padding-left: 0;
}

.question-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.question-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.interview-header {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 105, 180, 0.05));
  padding: 3rem 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

.interview-header h1 {
  color: var(--secondary);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: rgba(26, 45, 77, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-title {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Steps Container */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background-color: rgba(26, 45, 77, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.step-divider {
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
  margin-bottom: 1rem;
}

.step-title {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Forms */
.participation-form {
  background-color: rgba(26, 45, 77, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  background-color: rgba(26, 45, 77, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: rgba(26, 45, 77, 0.7);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

.success-message {
  background-color: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--secondary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  display: none;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

/* Contact Info */
.contact-info {
  background-color: rgba(26, 45, 77, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--secondary);
}

/* Highlight Box */
.highlight-box {
  background-color: rgba(255, 215, 0, 0.05);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

/* Accordion */
.accordion-item {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 2px solid var(--border-color);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .about-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .interview-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .about-image .image-wrapper {
    width: 100%;
    aspect-ratio: auto;
    min-height: 200px;
  }

  .about-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .logo-img {
    max-width: 100px;
  }
}

section {
  padding: 2rem 0;
  opacity: 0;
  transform: translateY(40px);
  animation: sectionReveal 0.8s ease forwards;
}

section:nth-of-type(2) {
  animation-delay: 0.15s;
}

section:nth-of-type(3) {
  animation-delay: 0.3s;
}

section:nth-of-type(4) {
  animation-delay: 0.45s;
}

@keyframes sectionReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-image .image-wrapper {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--secondary);
  background-color: var(--primary);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

