/* 
   Digital Success Tamil - Global Styles 
   Design: Professional Modern Minimalist
*/

/* -------------------------------------------------------------------------- */
/*                                 VARIABLES                                  */
/* -------------------------------------------------------------------------- */
:root {
  /* Primary Colors */
  --primary-blue: #0066CC;
  --primary-green: #00A86B;
  --primary-orange: #FF6B35;
  --primary-orange-hover: #E55A2B;
  --primary-blue-hover: #0052A3;

  /* Neutral Colors */
  --text-heading: #1A1A1A;
  --text-body: #4A5568;
  --text-light: #6B7280;
  --bg-white: #FFFFFF;
  --bg-light: #F7FAFC;
  --bg-dark: #1A1A1A;
  --border-color: #E2E8F0;

  /* Functional Colors */
  --whatsapp-green: #25D366;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Layout */
  --container-width: 1200px;
  --nav-height: 80px;
  --section-padding-desktop: 100px;
  --section-padding-mobile: 60px;
  --border-radius-card: 12px;
  --border-radius-btn: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-nav: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* -------------------------------------------------------------------------- */
/*                                   RESET                                    */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/*                                TYPOGRAPHY                                  */
/* -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 18px;
  }

  body {
    font-size: 16px;
  }
}

p {
  margin-bottom: 1.5rem;
  font-size: 18px;
}

@media(max-width: 768px) {
  p {
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/*                                  UTILITIES                                 */
/* -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding-desktop) 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-blue);
}

.text-green {
  color: var(--primary-green);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Flex Utilities */
.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/*                                 COMPONENTS                                 */
/* -------------------------------------------------------------------------- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--border-radius-btn);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: scale(1.02);
  color: #fff;
  /* Ensure text stays white */
}

.btn-secondary {
  background-color: #fff;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: #fff;
}

/* Cards */
.card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  height: 100%;
  /* For grid layouts */
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

@media(max-width: 768px) {
  .card {
    padding: 24px;
  }
}

/* -------------------------------------------------------------------------- */
/*                                 NAVIGATION                                 */
/* -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  box-shadow: var(--shadow-nav);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-blue);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 16px;
  color: var(--text-heading);
  font-weight: 500;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown-parent {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  /* Above navbar content */
}

.dropdown-parent:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-heading);
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background: var(--text-heading);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Mobile Menu */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  padding: 80px 30px 40px;
  transition: right 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  box-shadow: var(--shadow-xl, -10px 0 30px rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-heading);
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-light);
}

.mobile-nav-link:hover {
  color: var(--primary-blue);
}

.mobile-dropdown-content {
  display: none;
  padding-left: 20px;
  flex-direction: column;
}

.mobile-dropdown-content.show {
  display: flex;
}

.mobile-sub-link {
  font-size: 16px;
  padding: 8px 0;
  color: var(--text-body);
}

@media (max-width: 900px) {
  .nav-menu.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
.footer {
  background-color: var(--bg-dark);
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col-about {
  flex: 0 0 35%;
}

.footer-col-links {
  flex: 0 0 25%;
}

.footer-col-contact {
  flex: 0 0 30%;
}

@media (max-width: 768px) {

  .footer-col-about,
  .footer-col-links,
  .footer-col-contact {
    flex: 0 0 100%;
  }

  .footer-content {
    flex-direction: column;
  }
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-blue);
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary-blue);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.footer-seo {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #111;
  padding: 20px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media(max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* -------------------------------------------------------------------------- */
/*                            FLOATING COMPONENTS                             */
/* -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: pulse-green 2s infinite;
  transition: transform 0.3s ease;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 110px;
  width: 48px;
  height: 48px;
  background-color: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 990;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--primary-blue-hover);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .scroll-top {
    right: 96px;
  }
}


/* -------------------------------------------------------------------------- */
/*                            ADDITIONAL COMPONENTS                           */
/* -------------------------------------------------------------------------- */

/* Avatar Group */
.avatar-group {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.avatar:not(:first-child) {
  margin-left: -12px;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.badge-blue {
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary-blue);
}

.badge-green {
  background: rgba(0, 168, 107, 0.1);
  color: var(--primary-green);
}

/* Course Cards */
.card-img-top {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* Icons */
.icon-box-lg {
  margin-bottom: 1rem;
}

.icon-box-lg svg {
  width: 48px;
  height: 48px;
}

/* -------------------------------------------------------------------------- */
/*                                ANIMATIONS                                  */
/* -------------------------------------------------------------------------- */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.badge-blue {
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary-blue);
}

.badge-green {
  background: rgba(0, 168, 107, 0.1);
  color: var(--primary-green);
}

/* Course Cards */
.card-img-top {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* Icons */
.icon-box-lg {
  margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------- */
/*                                ANIMATIONS                                  */
/* -------------------------------------------------------------------------- */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}


/* -------------------------------------------------------------------------- */
/*                                HERO SECTION                                */
/* -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background-color: var(--primary-blue);
  background-image: linear-gradient(135deg, var(--primary-blue) 0%, #008a5e 100%);
  overflow: hidden;
  text-align: center;
  color: #fff;
  margin-top: 0;
  /* Override default section spacing if needed */
}

/* Abstract Background Shapes */
.hero-shape {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

.shape-circle {
  border-radius: 50%;
  background: #fff;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid #fff;
}

.s1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
}

.s2 {
  bottom: 15%;
  right: 10%;
  width: 150px;
  height: 150px;
}

.s3 {
  top: 20%;
  right: 20%;
  width: 60px;
  height: 60px;
}

.s4 {
  bottom: 20%;
  left: 15%;
  opacity: 0.05;
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-btn-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust-indicators {
  display: flex;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-800 {
  animation-delay: 0.8s;
}

.delay-900 {
  animation-delay: 0.9s;
}

.delay-1000 {
  animation-delay: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 140px 20px 80px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-btn-group .btn {
    width: 100%;
  }

  .hero-trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .hero-content {
    align-items: center;
  }
}

/* -------------------------------------------------------------------------- */
/*                            CHALLENGES SECTION                              */
/* -------------------------------------------------------------------------- */
.challenges-section {
  background-color: #FFFFFF;
  padding: 100px 0;
}

.eyebrow-text {
  display: block;
  color: #00A86B;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.intro-paragraph {
  color: #4A5568;
  font-size: 18px;
  max-width: 700px;
  line-height: 1.7;
  margin: 0 auto 48px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.challenge-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #FF6B35;
  transition: all 0.3s ease;
}

.challenge-card:hover {
  border-color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.icon-container {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-container svg {
  color: #FF6B35;
  width: 28px;
  height: 28px;
}

.challenge-text {
  font-size: 18px;
  color: #1A1A1A;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-text {
  font-size: 20px;
  color: #1A1A1A;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .challenges-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .challenges-section {
    padding: 60px 0;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .intro-paragraph {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

/* -------------------------------------------------------------------------- */
/*                              APPROACH SECTION                              */
/* -------------------------------------------------------------------------- */
.approach-section {
  background-color: #F7FAFC;
  padding: 100px 0;
}

.approach-subheading {
  color: #4A5568;
  font-size: 18px;
  max-width: 700px;
  line-height: 1.7;
  margin: 0 auto 64px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #0066CC;
}

.feature-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Icon scale-in animation when card is visible */
.feature-card.is-visible .feature-icon-container {
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.feature-card:hover .feature-icon-container {
  transform: rotate(5deg) scale(1.05);
}

.feature-icon-container svg {
  width: 40px;
  height: 40px;
}

/* Icon Colors */
.icon-blue {
  background: rgba(0, 102, 204, 0.12);
  color: #0066CC;
}

.icon-green {
  background: rgba(0, 168, 107, 0.12);
  color: #00A86B;
}

.icon-orange {
  background: rgba(255, 107, 53, 0.12);
  color: #FF6B35;
}

.feature-card h3 {
  font-size: 24px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 16px;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .approach-section {
    padding: 80px 0;
  }
}

@media (max-width: 992px) {
  .approach-grid {
    gap: 24px;
  }

  .feature-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .approach-section {
    padding: 60px 0;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    /* Stack vertically */
  }

  .feature-card {
    padding: 32px;
  }

  /* -------------------------------------------------------------------------- */
  /*                             EXPERIENCE SECTION                             */
  /* -------------------------------------------------------------------------- */
  .experience-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    overflow: hidden;
    /* For animations if needed */
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 64px;
    align-items: center;
  }

  /* Left Column: Profile */
  .profile-column {
    display: flex;
    justify-content: center;
    position: relative;
  }

  .profile-container {
    position: relative;
    width: 300px;
    height: 300px;
  }

  .profile-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #0066CC;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    background: linear-gradient(135deg, #E6F3FF 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }

  /* Floating Badges */
  .floating-badge {
    position: absolute;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0066CC;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
  }

  @keyframes floatBadge {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  .badge-top-right {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
  }

  .badge-left {
    top: 45%;
    left: -40px;
    animation-delay: 1s;
  }

  .badge-bottom-right {
    bottom: 40px;
    right: -20px;
    animation-delay: 2s;
  }

  /* Right Column: Content */
  .experience-content h2 {
    font-size: 40px;
  }

  .credential-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E2E8F0;
  }

  .credential-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .credential-icon {
    flex-shrink: 0;
    color: #FF6B35;
  }

  .credential-icon svg {
    width: 24px;
    height: 24px;
  }

  .credential-item h4 {
    font-size: 18px;
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .credential-item p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Bottom Statement Box */
  .statement-box {
    background: #FFF4E6;
    border-left: 4px solid #FF6B35;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
    position: relative;
  }

  .quote-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #FF6B35;
    opacity: 0.2;
    width: 32px;
    height: 32px;
  }

  .statement-text {
    font-size: 18px;
    color: #1A1A1A;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding-left: 20px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .experience-section {
      padding: 80px 0;
    }

    .experience-content h2 {
      font-size: 36px;
    }
  }

  @media (max-width: 900px) {
    .experience-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .profile-column {
      margin-bottom: 20px;
    }

    .profile-container {
      width: 250px;
      height: 250px;
    }

    /* Reset Badge positions for mobile centering context if desired, or keep as is */
    .badge-top-right {
      right: -10px;
    }

    .badge-left {
      left: -20px;
    }

    .badge-bottom-right {
      right: -10px;
    }
  }

  @media (max-width: 768px) {
    .experience-section {
      padding: 60px 0;
    }

    .experience-content h2 {
      font-size: 32px;
    }

    .credential-item h4 {
      font-size: 17px;
    }
  }

  .feature-card h3 {
    font-size: 20px;
  }
}

/* -------------------------------------------------------------------------- */
/*                                ABOUT PAGE                                  */
/* -------------------------------------------------------------------------- */

/* Hero Section */
.about-hero {
  background: linear-gradient(to bottom, #F7FAFC 0%, #FFFFFF 100%);
  padding: 80px 0;
}

.about-badge {
  display: inline-block;
  background: rgba(0, 102, 204, 0.1);
  color: #0066CC;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-hero-sub {
  color: #4A5568;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Experience Section */
.about-experience p {
  margin-bottom: 1.2rem;
}

.highlight-box {
  background: #E6F3FF;
  border-left: 4px solid #0066CC;
  padding: 20px;
  border-radius: 8px;
  margin-top: 24px;
}

.highlight-text {
  color: #0066CC;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  position: relative;
}

.card-problem {
  border: 2px solid #FEE2E2;
  border-left: 6px solid #EF4444;
}

.card-benefit {
  border: 2px solid #D1FAE5;
  border-left: 6px solid #00A86B;
}

.icon-header-problem {
  color: #EF4444;
  margin-bottom: 16px;
}

.icon-header-problem svg {
  width: 32px;
  height: 32px;
  fill: rgba(239, 68, 68, 0.1);
}

.icon-header-benefit {
  color: #00A86B;
  margin-bottom: 16px;
}

.icon-header-benefit svg {
  width: 32px;
  height: 32px;
  fill: rgba(0, 168, 107, 0.1);
}

.comparison-card h3 {
  font-size: 24px;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 16px;
  color: #4A5568;
}

.comparison-list li svg {
  width: 20px;
  height: 20px;
}

.list-problem li svg {
  color: #EF4444;
}

.list-benefit li svg {
  color: #00A86B;
}

/* Persona Section */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.persona-card {
  background: linear-gradient(to bottom, #F7FAFC 0%, #FFFFFF 100%);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.persona-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #0066CC;
}

.persona-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.persona-icon svg {
  width: 24px;
  height: 24px;
}

.persona-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}

/* Belief Section */
.belief-section {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.large-quote-mark {
  position: absolute;
  top: 40px;
  left: 10%;
  font-size: 200px;
  line-height: 0.5;
  color: rgba(255, 255, 255, 0.1);
  font-family: serif;
}

.belief-quote {
  font-size: 32px;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.4;
}

.belief-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
}

/* Responsive About Page */
@media (max-width: 1024px) {
  .persona-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }

  .about-hero-sub {
    font-size: 18px;
  }

  .about-badge {
    margin-bottom: 24px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .persona-grid {
    grid-template-columns: 1fr;
  }

  .belief-quote {
    font-size: 24px;
  }

  .wrap-mobile {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
  }

  .wrap-mobile .btn {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/*                               COURSES PAGE                                 */
/* -------------------------------------------------------------------------- */

/* Section 1: Hero */
.courses-hero {
  background: linear-gradient(to bottom, #F7FAFC 0%, #FFFFFF 100%);
  padding: 80px 0;
  text-align: center;
}

.program-badge {
  display: inline-block;
  background: rgba(0, 168, 107, 0.1);
  color: #00A86B;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.courses-hero h1 {
  font-size: 48px;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.courses-hero-intro-1 {
  font-size: 20px;
  color: #4A5568;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.courses-hero-intro-2 {
  font-size: 18px;
  color: #4A5568;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section 2: Two Training Paths */
.training-paths-section {
  background: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.training-paths-intro {
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 40px;
}

.paths-visual-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.path-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.path-icon-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.path-icon-circle.blue {
  background: rgba(0, 102, 204, 0.12);
  color: #0066CC;
}

.path-icon-circle.green {
  background: rgba(0, 168, 107, 0.12);
  color: #00A86B;
}

.path-text {
  font-size: 20px;
  font-weight: 600;
}

.path-text.blue {
  color: #0066CC;
}

.path-text.green {
  color: #00A86B;
}

.paths-note {
  font-size: 16px;
  color: #4A5568;
  margin-top: 32px;
  font-style: italic;
}

/* Section 3 & 4: Course Cards */
.level-1-section {
  background: #F7FAFC;
  padding: 80px 0;
}

.level-2-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.course-card-new {
  background: #FFFFFF;
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.course-card-new:hover {
  transform: translateY(-4px);
}

.course-card-new.blue-hover:hover {
  border-color: #0066CC;
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
}

.course-card-new.green-hover:hover {
  border-color: #00A86B;
  box-shadow: 0 12px 32px rgba(0, 168, 107, 0.15);
}

.card-top-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.card-top-badge.blue {
  background: #E6F3FF;
  color: #0066CC;
}

.card-top-badge.green {
  background: #E6F9F0;
  color: #00A86B;
}

.card-heading {
  font-size: 32px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 24px;
}

.card-label {
  font-size: 14px;
  font-weight: 600;
  color: #0066CC;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.card-label.green {
  color: #00A86B;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #4A5568;
  line-height: 2;
  margin-bottom: 4px;
}

.card-list-check li svg {
  color: #00A86B;
  /* Green checks */
  width: 20px;
  height: 20px;
}

.card-list-arrow li svg {
  color: #0066CC;
  /* Blue arrows */
  width: 18px;
  height: 18px;
}

.card-list-arrow.green li svg {
  color: #00A86B;
}

.course-details-box {
  background: #F7FAFC;
  border-radius: 8px;
  padding: 24px;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.detail-item {
  font-size: 16px;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-item.fees {
  font-size: 20px;
  font-weight: 700;
  color: #0066CC;
}

.detail-item.fees.green {
  color: #00A86B;
}

.btn.course-cta {
  width: auto;
  margin-top: 32px;
  display: inline-flex;
}

.btn.course-cta.blue {
  background: #0066CC;
  color: white;
}

.btn.course-cta.blue:hover {
  background: #0052A3;
  transform: scale(1.02);
}

.btn.course-cta.green {
  background: #00A86B;
  color: white;
}

.btn.course-cta.green:hover {
  background: #008f5a;
  transform: scale(1.02);
}

/* Section 5: Complete Course Option */
.complete-course-section {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.complete-course-section h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 20px;
}

.complete-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  max-width: 500px;
  margin: 0 auto 32px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-item {
  font-size: 18px;
  color: white;
  line-height: 2;
}

.btn.complete-cta {
  background: white;
  color: #0066CC;
}

.btn.complete-cta:hover {
  background: #F7FAFC;
}

/* Section 6: FAQ */
.faq-section {
  background: #F7FAFC;
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #0066CC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-size: 18px;
  color: #1A1A1A;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Adjust as needed */
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #E2E8F0;
}

.faq-content-p {
  font-size: 16px;
  color: #4A5568;
  line-height: 1.7;
}

.faq-toggle-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}


/* Section 7: Final CTA */
.final-cta-section {
  background: white;
  padding: 80px 0;
  text-align: center;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .courses-hero h1 {
    font-size: 36px;
  }

  .courses-hero {
    padding: 60px 0;
  }

  .paths-visual-container {
    grid-template-columns: 1fr;
  }

  .course-card-new {
    padding: 32px 24px;
    margin: 0 20px;
  }

  .card-heading {
    font-size: 26px;
  }

  .course-details-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn.course-cta {
    width: 100%;
  }

  .complete-course-section h2 {
    font-size: 26px;
  }

  .highlight-box {
    margin: 0 20px 32px;
  }
}

/* -------------------------------------------------------------------------- */
/*                      SOCIAL MEDIA MARKETING PAGE                           */
/* -------------------------------------------------------------------------- */

/* SECTION 1 - HERO */
.smm-hero {
  background: linear-gradient(to bottom, #E6F3FF 0%, #FFFFFF 100%);
  padding: 100px 0;
  text-align: center;
}

.level-badge {
  display: inline-block;
  background: rgba(0, 102, 204, 0.15);
  color: #0066CC;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.smm-hero h1 {
  font-size: 52px;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc-1 {
  font-size: 20px;
  color: #4A5568;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.hero-desc-2 {
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 40px;
}

.quick-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.stat-card i {
  color: #0066CC;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.stat-text {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.stat-subtext {
  font-size: 14px;
  color: #4A5568;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: #0066CC;
  color: white;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.hero-btn-primary:hover {
  background: #0052A3;
  transform: scale(1.02);
}

.hero-btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.hero-btn-whatsapp:hover {
  background: #20bd5a;
  transform: scale(1.02);
}

/* SECTION 2 - WHAT IS SMM */
.smm-what-is {
  background: white;
  padding: 100px 0;
  text-align: center;
}

.smm-what-is h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 32px;
}

.intro-text {
  font-size: 18px;
  color: #4A5568;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.benefit-card {
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.benefit-card i {
  color: #0066CC;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.benefit-text {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}

.warning-box {
  background: #FFF4E6;
  border-left: 4px solid #FF6B35;
  border-radius: 8px;
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.warning-text {
  font-size: 16px;
  color: #1A1A1A;
  font-weight: 500;
  margin-bottom: 12px;
}

.highlight-text {
  font-size: 18px;
  color: #0066CC;
  font-weight: 600;
}

/* SECTION 3 - WHY LEARN */
.smm-why-learn {
  background: #F7FAFC;
  padding: 100px 0;
  text-align: center;
}

.smm-why-learn h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 48px;
}

.reasons-list {
  max-width: 800px;
  margin: 0 auto;
}

.reason-item {
  background: white;
  border-left: 4px solid #0066CC;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.reason-item i {
  color: #00A86B;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.reason-item span {
  font-size: 18px;
  color: #1A1A1A;
  font-weight: 500;
}

.bottom-statement {
  background: #E6F3FF;
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: #0066CC;
  font-weight: 600;
}

/* SECTION 4 - MODULES */
.smm-modules {
  background: white;
  padding: 100px 0;
  text-align: center;
}

.eyebrow {
  color: #00A86B;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.smm-modules h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 16px;
}

.subheading {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 48px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.module-card {
  background: linear-gradient(to bottom, #F7FAFC 0%, #FFFFFF 100%);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all 0.3s ease;
}

.module-card:hover {
  border-color: #0066CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.module-card i {
  color: #0066CC;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.module-card span {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}

.course-details-panel {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  padding: 40px;
  border-radius: 12px;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.course-details-panel .detail {
  font-size: 18px;
  color: white;
}

.course-details-panel .fees {
  font-size: 24px;
  font-weight: 700;
}

/* SECTION 5 - HOW TAUGHT */
.smm-how-taught {
  background: #F7FAFC;
  padding: 100px 0;
  text-align: center;
}

.smm-how-taught h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 48px;
}

.teaching-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.teaching-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.icon-circle i {
  color: #0066CC;
  width: 48px;
  height: 48px;
}

.teaching-text {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}

.bottom-highlight {
  background: #E6F3FF;
  border-left: 4px solid #0066CC;
  padding: 24px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
  color: #0066CC;
  font-weight: 600;
}

/* SECTION 6 - WHO FOR */
.smm-who-for {
  background: white;
  padding: 100px 0;
  text-align: center;
}

.smm-who-for h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 48px;
}

.audience-cards {
  display: flex;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.audience-card {
  background: linear-gradient(to bottom, #F7FAFC 0%, #FFFFFF 100%);
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
  max-width: 200px;
}

.audience-card:hover {
  border-color: #0066CC;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.15);
}

.audience-card i {
  color: #0066CC;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.audience-text {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}

/* SECTION 7 - FAQ */
.smm-faq {
  background: #F7FAFC;
  padding: 100px 0;
  text-align: center;
}

.smm-faq h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 48px;
}

/* Reuse FAQ styles from courses overview */
.smm-faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* SECTION 8 - FINAL CTA */
.smm-final-cta {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.smm-final-cta h2 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-btn-white {
  background: white;
  color: #0066CC;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.cta-btn-white:hover {
  background: #F7FAFC;
}

.cta-btn-white.whatsapp {
  color: #25D366;
}

.cta-small-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

/* RESPONSIVE - SOCIAL MEDIA MARKETING PAGE */
@media (max-width: 768px) {
  .smm-hero h1 {
    font-size: 36px;
  }

  .smm-hero {
    padding: 60px 0;
  }

  .quick-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    max-width: 100%;
    width: 100%;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .smm-what-is h2,
  .smm-why-learn h2,
  .smm-modules h2,
  .smm-how-taught h2,
  .smm-who-for h2,
  .smm-faq h2 {
    font-size: 28px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .teaching-points-grid {
    grid-template-columns: 1fr;
  }

  .course-details-panel {
    flex-direction: column;
    align-items: center;
    padding: 24px;
  }

  .audience-cards {
    flex-direction: column;
    align-items: center;
  }

  .audience-card {
    max-width: 100%;
    width: 100%;
  }

  .smm-final-cta h2 {
    font-size: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-white {
    width: 100%;
    justify-content: center;
  }

  .smm-what-is,
  .smm-why-learn,
  .smm-modules,
  .smm-how-taught,
  .smm-who-for,
  .smm-faq,
  .smm-final-cta {
    padding: 60px 0;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .teaching-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------------------------------------------- */
/*                   COMPLETE DIGITAL MARKETING PAGE                          */
/* -------------------------------------------------------------------------- */

/* Gradient Icons */
.gradient-icon {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-icon-large {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 48px;
  height: 48px;
}

.gradient-icon-xl {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 64px;
  height: 64px;
}

/* SECTION 1 - HERO */
.complete-hero {
  background: linear-gradient(to bottom, #E6F3FF 0%, #E6F9F0 50%, #FFFFFF 100%);
  padding: 120px 0;
  text-align: center;
}

.complete-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 168, 107, 0.15) 100%);
  color: #0066CC;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.complete-hero h1 {
  font-size: 56px;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.complete-hero-desc {
  font-size: 20px;
  color: #4A5568;
  max-width: 850px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.key-highlights {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.highlight-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1;
  max-width: 300px;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  border-image: linear-gradient(135deg, #0066CC, #00A86B) 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.highlight-card .gradient-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.highlight-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.highlight-text {
  font-size: 14px;
  color: #4A5568;
}

.complete-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.complete-btn-gradient {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.complete-btn-gradient:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}

.complete-btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.complete-btn-whatsapp:hover {
  background: #20bd5a;
  transform: scale(1.02);
}

/* SECTION 2 - WHAT IS DIGITAL MARKETING */
.complete-what-is {
  background: white;
  padding: 100px 0;
  text-align: center;
}

.complete-what-is h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 24px;
}

.complete-intro {
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 40px;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.component-card {
  background: linear-gradient(to bottom, #F7FAFC 0%, #FFFFFF 100%);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.component-card .gradient-icon-large {
  margin-bottom: 16px;
}

.component-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.component-desc {
  font-size: 16px;
  color: #4A5568;
}

.bottom-statement-gradient {
  background: linear-gradient(135deg, #E6F3FF 0%, #E6F9F0 100%);
  padding: 32px;
  border-radius: 12px;
  max-width: 750px;
  margin: 0 auto;
  font-size: 20px;
  color: #0066CC;
  font-weight: 600;
}

/* SECTION 3 - WHY COMPLETE */
.complete-why {
  background: #F7FAFC;
  padding: 100px 0;
  text-align: center;
}

.complete-why h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 48px;
}

.synergy-list {
  max-width: 800px;
  margin: 0 auto;
}

.synergy-item {
  background: white;
  border-left: 4px solid;
  border-image: linear-gradient(135deg, #0066CC 0%, #00A86B 100%) 1;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.synergy-item .gradient-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.synergy-item span {
  font-size: 18px;
  color: #1A1A1A;
  font-weight: 500;
}

.synergy-highlight span {
  font-size: 20px;
  font-weight: 700;
  color: #0066CC;
}

/* SECTION 4 - COURSE STRUCTURE */
.complete-structure {
  background: white;
  padding: 100px 0;
  text-align: center;
}

.complete-structure h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 48px;
}

.two-levels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.level-panel {
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.level-1-panel {
  background: linear-gradient(to bottom, #E6F3FF 0%, #FFFFFF 100%);
  border: 2px solid #0066CC;
}

.level-2-panel {
  background: linear-gradient(to bottom, #E6F9F0 0%, #FFFFFF 100%);
  border: 2px solid #00A86B;
}

.level-badge-header {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.level-badge-header.blue {
  background: #0066CC;
}

.level-badge-header.green {
  background: #00A86B;
}

.level-heading {
  font-size: 24px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 8px;
}

.level-duration {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 24px;
}

.level-modules {
  text-align: left;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 2;
}

.module-item i {
  color: #00A86B;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* SECTION 5 - TOTAL DETAILS */
.complete-details-gradient {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.complete-details-gradient h2 {
  color: white;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-glass-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.detail-glass-card i {
  color: white;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.detail-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.detail-value {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

/* SECTION 6 - WHO FOR */
.complete-who-for {
  background: white;
  padding: 100px 0;
  text-align: center;
}

.complete-who-for h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 48px;
}

.complete-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.complete-audience-card {
  background: linear-gradient(to bottom, #F7FAFC 0%, #FFFFFF 100%);
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.complete-audience-card:hover {
  border-image: linear-gradient(135deg, #0066CC, #00A86B) 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.complete-audience-card .gradient-icon-xl {
  margin-bottom: 16px;
}

.complete-audience-text {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
}

/* SECTION 7 - FAQ */
.complete-faq {
  background: #F7FAFC;
  padding: 100px 0;
  text-align: center;
}

.complete-faq h2 {
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 48px;
}

.complete-faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* SECTION 8 - FINAL CTA */
.complete-final-cta {
  background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.complete-final-cta h2 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
}

.complete-final-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.value-statement-box {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 32px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto 48px;
  backdrop-filter: blur(10px);
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  color: white;
  line-height: 2;
}

.value-item i {
  color: white;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.complete-final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.complete-final-btn-white {
  background: white;
  color: #0066CC;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.complete-final-btn-white:hover {
  background: #F7FAFC;
}

.complete-final-btn-white.whatsapp {
  color: #25D366;
}

.complete-final-small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE - COMPLETE DIGITAL MARKETING PAGE */
@media (max-width: 768px) {
  .complete-hero h1 {
    font-size: 38px;
  }

  .complete-hero {
    padding: 60px 0;
  }

  .key-highlights {
    flex-direction: column;
    align-items: center;
  }

  .highlight-card {
    max-width: 100%;
    width: 100%;
  }

  .complete-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .complete-btn-gradient,
  .complete-btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .components-grid {
    grid-template-columns: 1fr;
  }

  .two-levels-grid {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .complete-audience-grid {
    grid-template-columns: 1fr;
  }

  .complete-what-is h2,
  .complete-why h2,
  .complete-structure h2,
  .complete-details-gradient h2,
  .complete-who-for h2,
  .complete-faq h2 {
    font-size: 28px;
  }

  .complete-final-cta h2 {
    font-size: 32px;
  }

  .complete-final-ctas {
    flex-direction: column;
    width: 100%;
  }

  .complete-final-btn-white {
    width: 100%;
    justify-content: center;
  }

  .complete-what-is,
  .complete-why,
  .complete-structure,
  .complete-details-gradient,
  .complete-who-for,
  .complete-faq,
  .complete-final-cta {
    padding: 60px 0;
  }

  .value-item {
    font-size: 16px;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}