:root {
  --primary-color: #3a86ff;
  --secondary-color: #8338ec;
  --accent-color: #ff006e;
  --text-color: #2b2d42;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --border-radius: 12px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
}

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

/* Navbar Styles */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow);
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 120px 0;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button Styles */
.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: darken(var(--accent-color), 10%);
  border-color: darken(var(--accent-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 110, 0.3);
}

/* Feature Cards */
.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works {
  background-color: white;
  padding: 100px 0;
}

.step-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

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

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

/* FAQ Section */
.faq-section {
  background-color: var(--light-bg);
  padding: 100px 0;
}

.accordion-button {
  background-color: white;
  color: var(--text-color);
  font-weight: 600;
  padding: 1.5rem;
  border-radius: var(--border-radius) !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-body {
  background-color: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 100px 0;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

/* Footer Styles */
.footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
}

.footer h5, .footer h6 {
  color: white;
  font-weight: 600;
}

.footer p {
  font-size: 0.9rem;
}

.footer .social-icons a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
  color: var(--primary-color);
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.footer .btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 0.85rem;
}

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

  .hero, .cta-section {
    clip-path: none;
  }

  .step-card {
    margin-bottom: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* Guides Section */
.guide-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.guide-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Section */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-button {
  background-color: white;
  color: var(--text-color);
  font-weight: 600;
  padding: 1.5rem;
  border-radius: var(--border-radius) !important;
  box-shadow: var(--box-shadow);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-body {
  background-color: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}


.bg-darker {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Add this at the end of the file */
.video-details {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.video-details img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-details .text-muted {
    font-size: 0.9rem;
}

.video-details .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.video-details .btn i {
    margin-right: 0.5rem;
}

@media (max-width: 767px) {
    .video-details .col-md-8 {
        margin-top: 1rem;
    }
}


.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}
.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-form h2 {
    color: #333;
    margin-bottom: 30px;
}
.contact-section .form-control {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.contact-section .form-control:focus {
    box-shadow: none;
    border-color: #764ba2;
}
.contact-section .btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.contact-section .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}