/* Home Cash Course - Custom Styles */
/* Aesthetic Direction: Bold, Modern, Dynamic with Geometric Accents */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Sora:wght@300;400;600;700;800&display=swap');

:root {
  --primary-gold: #FFB800;
  --primary-dark: #1A1A2E;
  --primary-purple: #6B4CE6;
  --accent-coral: #FF6B6B;
  --accent-teal: #4ECDC4;
  --neutral-light: #F8F9FA;
  --neutral-dark: #2D2D44;
  --gradient-main: linear-gradient(135deg, #6B4CE6 0%, #FFB800 100%);
  --gradient-alt: linear-gradient(135deg, #4ECDC4 0%, #6B4CE6 100%);
  --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FFB800 100%);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-bold: 0 20px 60px rgba(107, 76, 230, 0.15);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-dark);
  background: var(--neutral-light);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Navigation */
.navbar {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 600;
  color: var(--primary-dark) !important;
  margin: 0 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(107, 76, 230, 0.85)),
              url('../images/banner.jpg') center/cover;
  z-index: 0;
}

.dropdown-toggle::after{
  left: 50%;
  margin-left: 0;
  transform: translateX(-50%);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-gold);
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-teal);
  bottom: -10%;
  left: -5%;
  animation-delay: 5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent-coral);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: slideInUp 1s ease;
}

.hero-content .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: slideInUp 1s ease 0.2s backwards;
}

.btn-primary-custom {
  background: var(--gradient-main);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
  animation: slideInUp 1s ease 0.4s backwards;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 184, 0, 0.4);
  color: white;
}

.btn-outline-custom {
  border: 2px solid white;
  background: transparent;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  color: white;
  transition: all 0.3s ease;
  animation: slideInUp 1s ease 0.6s backwards;
  margin-left: 1rem;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Featured Courses Section */
.featured-courses {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--neutral-light) 0%, #ffffff 100%);
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
}

.course-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-bold);
}

.course-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-main);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.course-content {
  padding: 2rem;
}

.course-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.course-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f0f0;
}

.course-price {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: var(--primary-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 76, 230, 0.2) 0%, rgba(255, 184, 0, 0.2) 100%);
  z-index: 0;
}

.stat-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 600;
}

/* Testimonials */
.testimonials-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--neutral-light) 100%);
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  margin: 1rem;
  border-left: 5px solid var(--primary-gold);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-gold);
}

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

.author-info h5 {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: var(--primary-gold);
  opacity: 0.2;
}

/* Progress Section */
.progress-section {
  padding: 6rem 0;
  background: var(--gradient-alt);
  color: white;
}

.progress-item {
  margin-bottom: 2rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.custom-progress {
  height: 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.custom-progress-bar {
  height: 100%;
  background: white;
  border-radius: 50px;
  transition: width 2s ease;
}

/* Newsletter Section */
.newsletter-section {
  padding: 8rem 0;
  background: var(--primary-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: white;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 1.2rem 2.5rem;
  background: var(--primary-gold);
  border: none;
  border-radius: 50px;
  color: var(--primary-dark);
  font-weight: 700;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Blog Section */
.blog-section {
  padding: 8rem 0;
  background: var(--neutral-light);
}

.blog-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-bold);
}

.blog-image {
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.blog-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.read-more {
  color: var(--primary-purple);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 1rem;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

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

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

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

.footer-section ul li a:hover {
  color: var(--primary-gold);
}

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

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1;
}

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

.btn-cookie {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--gradient-main);
  color: white;
}

.btn-reject {
  background: #e0e0e0;
  color: var(--primary-dark);
}

.btn-cookie:hover {
  transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-section {
  padding: 6rem 0;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

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

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

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(107, 76, 230, 0.1);
}

.contact-info {
  background: var(--gradient-main);
  padding: 3rem;
  border-radius: 30px;
  color: white;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.map-container {
  margin-top: 4rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* About Page Styles */
.team-section {
  padding: 6rem 0;
  background: var(--neutral-light);
}

.team-member {
  text-align: center;
  padding: 2rem;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-gold);
  box-shadow: var(--shadow-soft);
}

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

.team-member h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Policy Pages */
.policy-section {
  padding: 6rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.policy-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.policy-section h3 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-purple);
}

.policy-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.policy-section ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-section ul li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

/* Course Detail Page */
.course-detail-section {
  padding: 6rem 0;
}

.course-detail-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.course-detail-image {
  height: 400px;
  overflow: hidden;
}

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

.course-detail-content {
  padding: 3rem;
}

.course-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--neutral-light);
  border-radius: 15px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Article Page */
.article-section {
  padding: 6rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 3rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.article-image {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 3rem;
}

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

.article-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
}

.article-content h3 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.article-content p {
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .btn-outline-custom {
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 1s ease;
}

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



.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}