
:root {
  --primary: #1F4E79;
  --primary-dark: #164066;
  --accent: #6FA8DC;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

/* Header/Hero Section */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo-container {
  margin-bottom: 30px;
}

.logo {
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') center/cover;
  opacity: 0.3;
}

header .container {
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

header p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.025em;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

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

.btn-primary.large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Trust Section */
.trust-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.trust-content {
  text-align: center;
}

.testimonial {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
}

.badge svg {
  color: var(--accent);
}

/* Feature Section */
.feature-section {
  padding: 80px 0;
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Results Section */
.results-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

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



/* Eligibility Section */
.eligibility-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.eligibility-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.eligibility-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.eligibility-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.eligibility-item p {
  color: var(--text-light);
}

.highlight {
  background: var(--primary);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content .tagline {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal.active {
  display: block;
}

.modal-content {
  background: white;
  margin: 5% auto;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  padding: 30px 30px 0;
  position: relative;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--text-dark);
}

.modal-header h2 {
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: left;
}

.modal-body {
  padding: 20px 30px 30px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 20px;
  text-align: center;
}

.form-submit .btn-primary {
  padding: 16px 48px;
  font-size: 1.1rem;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
}

.form-submit .btn-primary:hover {
  background: var(--primary-dark);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }
  
  header p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 280px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 20px;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-intro {
    font-size: 1.1rem;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  
  
  .eligibility-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  header {
    padding: 60px 0;
  }
  
  .feature-section,
  .results-section,
  .pricing-section,
  .eligibility-section,
  .about-section,
  .cta-section {
    padding: 60px 0;
  }
  
  .modal-header,
  .modal-body {
    padding: 20px;
  }
}
