@import "tailwindcss";
@import "tw-animate-css";

@custom-variant dark (&:is(.dark *));

:root {
  /* Updated color tokens to match NE-Vent design brief */
  --background: #ffffff;
  --foreground: #475569;
  --card: #f1f5f9;
  --card-foreground: #475569;
  --popover: #ffffff;
  --popover-foreground: #475569;
  --primary: #059669;
  --primary-foreground: #ffffff;
  --secondary: #10b981;
  --secondary-foreground: #ffffff;
  --muted: #f1f5f9;
  --muted-foreground: #475569;
  --accent: #10b981;
  --accent-foreground: #ffffff;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5e7eb;
  --input: #ffffff;
  --ring: rgba(5, 150, 105, 0.5);
  --chart-1: #059669;
  --chart-2: #10b981;
  --chart-3: #4b5563;
  --chart-4: #dc2626;
  --chart-5: #f59e0b;
  --radius: 0.5rem;
  --sidebar: #f1f5f9;
  --sidebar-foreground: #475569;
  --sidebar-primary: #ffffff;
  --sidebar-primary-foreground: #475569;
  --sidebar-accent: #10b981;
  --sidebar-accent-foreground: #ffffff;
  --sidebar-border: #e5e7eb;
  --sidebar-ring: rgba(5, 150, 105, 0.5);
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Updated navigation with red and black theme */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 2px solid #a70c0a;
}

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

.nav-logo h2 {
  color: #a70c0a;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(167, 12, 10, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #a70c0a;
  text-shadow: 0 0 5px rgba(167, 12, 10, 0.5);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #a70c0a;
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Updated buttons with red and black styling */
.btn-primary {
  background: linear-gradient(135deg, #a70c0a 0%, #8a0a08 100%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(167, 12, 10, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8a0a08 0%, #a70c0a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(167, 12, 10, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #a70c0a;
  border: 2px solid #a70c0a;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: #a70c0a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(167, 12, 10, 0.3);
}

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

/* Updated hero section with dramatic red and black gradient */
.hero {
  /* padding: 120px 0 80px; */
  /* background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%); */
  /* position: relative;
  overflow: hidden; */
  background: url("../banner.jpg");
  margin-top: 76px;
  /* background: url(/banner.jpg); */
  background-repeat: no-repeat;
  width: 100%;
  height: 656px;
  background-size: cover;
  max-width: 100%;
  background-position: center;
}
.checkbox-item {
	display : flex;
flex-direction : row-reverse;
align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(167, 12, 10, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #a70c0a 0%, #8a0a08 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(167, 12, 10, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(167, 12, 10, 0.2);
  border: 2px solid rgba(167, 12, 10, 0.3);
}

/* Updated sections with refined black and white contrast */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #f8f8f8;
  border-top: 3px solid #a70c0a;
  border-bottom: 3px solid #a70c0a;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #a70c0a 0%, #8a0a08 100%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

/* Enhanced benefit cards with red accents */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #a70c0a;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(167, 12, 10, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(167, 12, 10, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: grayscale(100%) sepia(100%) hue-rotate(340deg) saturate(500%);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
}

/* Updated eligibility section styling */
.eligibility-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eligibility-list {
  margin: 2rem 0;
}

.eligibility-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.check-icon {
  background: linear-gradient(135deg, #a70c0a 0%, #8a0a08 100%);
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(167, 12, 10, 0.3);
}

.eligibility-requirements {
  background: #000;
  color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  border: 2px solid #a70c0a;
}

.eligibility-requirements h3 {
  margin-bottom: 1rem;
  color: #a70c0a;
  font-weight: 700;
}

.eligibility-requirements ul {
  list-style: none;
  padding: 0;
}

.eligibility-requirements li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
  color: #cccccc;
}

.eligibility-requirements li:last-child {
  border-bottom: none;
}

.eligibility-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #a70c0a;
}

/* Enhanced testimonials with red and black theme */
.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  background: #000;
  color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 2px solid #a70c0a;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: #a70c0a;
  font-weight: bold;
}

.testimonial-card.active {
  display: block;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-weight: 600;
  color: #a70c0a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #cccccc;
  font-weight: 500;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #a70c0a;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #a70c0a;
  box-shadow: 0 0 10px rgba(167, 12, 10, 0.5);
}

/* Updated form with sophisticated red and black styling */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #000;
  color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid #a70c0a;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #a70c0a;
}

.form-header p {
  color: #cccccc;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #333;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #1a1a1a;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a70c0a;
  box-shadow: 0 0 10px rgba(167, 12, 10, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: #a70c0a;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  color: #cccccc;
}

/* Updated footer with black background and red accents */
.footer {
  background: #000;
  color: #ffffff;
  padding: 3rem 0 1rem;
  border-top: 3px solid #a70c0a;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #a70c0a;
  font-weight: 700;
}

.footer-section p {
  line-height: 1.6;
  color: #cccccc;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #cccccc;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #a70c0a;
  text-shadow: 0 0 10px rgba(167, 12, 10, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #cccccc;
}

/* Updated responsive design for mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(167, 12, 10, 0.3);
    padding: 2rem 0;
    border-top: 2px solid #a70c0a;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .eligibility-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero {
    width: 100%;
    background-size: contain;
    height: 175px;
        margin-top: 90px;
  }
  .section-header h2 {
    font-size: 2rem;
  }

  .form-container {
    padding: 2rem;
  }
  .section {
    padding: 40px 0;
}
}
