:root {
  --bg: #ffffff;
  --primary: #6b4ca1; /* soft royal purple */
  --text-dark: #1f2933;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9fafb;
  color: var(--text-dark);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}

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

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

/* Social Icons */
.nav-socials {
  display: flex;
  gap: 0.8rem;
}

.nav-socials a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-socials a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* CTA Button */
.nav-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 30px;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(107, 76, 161, 0.35);
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 1.4rem;
    display: none;
    border-bottom: 1px solid var(--border-light);
    animation: slideDown 0.4s ease;
  }

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

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

/* NAVBAR END */

/* Hero Section */
.hero {
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f6f3fb 100%);
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

/* Text */
.hero-tag {
  display: inline-block;
  background: rgba(107, 76, 161, 0.1);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(107, 76, 161, 0.35);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Image & Animated Border */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
}

.animated-border {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(270deg, #6b4ca1, #c7b8ea, #6b4ca1);
  background-size: 600% 600%;
  animation: borderGlow 8s ease infinite, float 4s ease-in-out infinite;
}

.animated-border img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

/* Animations */
@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .animated-border {
    width: 260px;
    height: 260px;
  }
}
/* HERO SECTION END */

/* About Section */
.about {
  padding: 6rem 1.5rem;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Content */
.section-tag {
  display: inline-block;
  color: var(--primary);
  background: rgba(107, 76, 161, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  max-width: 560px;
}

/* Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.highlight-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.highlight-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Values */
.about-values {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-values span {
  border: 1px solid rgba(107, 76, 161, 0.3);
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .about-values {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* About Section End */

/* Music & Mixes Section */
.mixes {
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
}

.mixes-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Grid */
.mixes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.mix-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

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

/* Icon */
.mix-thumb {
  width: 70px;
  height: 70px;
  background: rgba(107, 76, 161, 0.12);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
}

.mix-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.mix-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Link */
.mix-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease;
}

.mix-link:hover {
  border-color: var(--primary);
}

/* CTA */
.mixes-cta {
  margin-top: 4.5rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .mixes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .mixes-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}
/* MUSIC AND MIXES END */
/* Downloads Hero */
.downloads-hero {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom, #ffffff, #f4effa);
  text-align: center;
}

.downloads-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.downloads-hero p {
  max-width: 520px;
  margin: auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Downloads Section */
.downloads {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.downloads-container {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 3rem;
}

/* Download Card */
.download-card {
  background: #f9fafb;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.download-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.download-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.download-card audio {
  width: 100%;
  margin: 1.5rem 0;
}

/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(107, 76, 161, 0.35);
}

/* Back Home */
.back-home {
  text-align: center;
}

/* CTA */
.downloads-cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.cta-box {
  max-width: 800px;
  margin: auto;
  text-align: center;
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
  .downloads-hero h1 {
    font-size: 2rem;
  }

  .download-card {
    padding: 2rem 1.5rem;
  }
}
/* Download Section End */

.services {
  padding: 100px 6%;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 1.05rem;
  color: #666;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000, #444);
  opacity: 0;
  transition: 0.4s ease;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 80px;
}

.services-cta h4 {
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 20px;
}

.btn-book {
  display: inline-block;
  padding: 15px 40px;
  background: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-book:hover {
  background: #222;
  transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .services {
    padding: 80px 5%;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }
}
/* SERVICES SECTION END */

.testimonials {
  padding: 110px 6%;
  background: #f8f8f8;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 90px;
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.stat p {
  font-size: 0.95rem;
  color: #666;
}

/* Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header h2 {
  font-size: 2.7rem;
  color: #111;
  margin-bottom: 15px;
}

.testimonials-header p {
  max-width: 650px;
  margin: auto;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  top: 15px;
  left: 25px;
  color: #eee;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #777;
}

/* CTA */
.testimonials-cta {
  text-align: center;
  margin-top: 80px;
}

.cta-outline {
  display: inline-block;
  padding: 14px 38px;
  border: 2px solid #000;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cta-outline:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 2.2rem;
  }

  .stat h3 {
    font-size: 2.4rem;
  }
}
/* TESTIMONIALS END */

.gallery {
  padding: 110px 0;
  background: #ffffff;
  overflow: hidden;
}

.gallery-container {
  max-width: 100%;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 6%;
}

.gallery-header h2 {
  font-size: 2.6rem;
  color: #111;
  margin-bottom: 12px;
}

.gallery-header p {
  font-size: 1.05rem;
  color: #666;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}

/* Slider */
.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  width: calc(260px * 14);
  animation: slideLeft 35s linear infinite;
}

.gallery-slider:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  min-width: 260px;
  height: 340px;
  margin-right: 25px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Animation */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 2.1rem;
  }

  .gallery-item {
    min-width: 220px;
    height: 300px;
  }

  .gallery-track {
    animation-duration: 45s;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    min-width: 180px;
    height: 250px;
  }
}
/* GALLERY SECTION END */

.final-booking {
  padding: 120px 6%;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
}

.booking-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.booking-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.booking-content p {
  font-size: 1.05rem;
  color: #ccc;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.booking-highlights {
  list-style: none;
  margin-bottom: 35px;
}

.booking-highlights li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #e0e0e0;
}

.booking-btn {
  display: inline-block;
  padding: 16px 42px;
  background: #ffffff;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.booking-btn:hover {
  transform: translateY(-3px);
  background: #f1f1f1;
}

.booking-note {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #aaa;
}

/* Visual */
.booking-visual {
  display: flex;
  justify-content: center;
}

.booking-image {
  width: 320px;
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.booking-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  animation: pulseBorder 3s infinite;
}

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

/* Border animation */
@keyframes pulseBorder {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.3;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .booking-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-content p {
    margin: auto;
  }

  .booking-visual {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .booking-content h2 {
    font-size: 2.2rem;
  }

  .booking-image {
    width: 260px;
    height: 360px;
  }
}
/* BOOKING END */

/* Footer */
.footer {
  background: #ffffff;
  color: #111;
  padding: 80px 6% 30px;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

/* Brand / CTA */
.footer h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.footer-book {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 35px;
  background: #f4f4f4;
  color: #111;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.footer-book:hover {
  transform: translateY(-3px);
  background: #e0e0e0;
}

/* Navigation Links */
.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #111;
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #000;
}

/* Social Icons */
.footer-social .social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-social .social-icons a {
  color: #555;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #000;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-book {
    margin: 20px 0 0;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}
/* FOOTER END */

.support {
  background: #f9f9f9;
  padding: 80px 6%;
}

.support-container {
  max-width: 900px;
  margin: auto;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.support-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e0c097;
}

.support-info {
  flex: 1;
  min-width: 250px;
}

.support-info h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
}

.support-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.support-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.support-info ul li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
}

.support-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #e0c097;
  color: #111;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-btn:hover {
  background: #d1a870;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .support-card {
    flex-direction: column;
    text-align: center;
  }

  .support-img {
    margin-bottom: 20px;
  }
}

/* support end */

/* Learn More */
.learn-more {
  padding: 60px 0;
  text-align: center;
}

.learn-more-btn {
  display: inline-block;
  padding: 16px 45px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  border: 2px solid #111;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}
/* Learn More End */

/* About HTML*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #111;
  line-height: 1.7;
}

/* Hero */
.about-hero {
  padding: 80px 6% 60px;
  text-align: center;
}

.about-hero img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 4px solid #e0c097;
}

.about-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.about-hero p {
  color: #666;
}

/* Story */
.about-story {
  max-width: 900px;
  margin: auto;
  padding: 40px 6%;
}

.about-story p {
  margin-bottom: 20px;
}

.highlight {
  font-weight: 600;
  font-size: 1.1rem;
}

.quote {
  font-style: italic;
  border-left: 4px solid #e0c097;
  padding-left: 15px;
}

/* Lessons */
.lessons {
  background: #f9f9f9;
  padding: 60px 6%;
}

.lessons h2 {
  text-align: center;
  margin-bottom: 30px;
}

.lessons ul {
  max-width: 700px;
  margin: auto;
  list-style: none;
}

.lessons li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

/* CTA */
.about-cta {
  padding: 70px 6%;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 16px 45px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
}

.back-home {
  display: block;
  margin-top: 15px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
  .about-hero h1 {
    font-size: 2rem;
  }
}

/* About HTML End */
