/* =========================================
   ACCOUNT HUB — MODERN REDESIGN 2025
   Design: Clean Professional + Vibrant Accents
   Font: Sora (headings) + DM Sans (body)
   Color: Deep Navy + Electric Blue + Coral CTA
   ========================================= */

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

/* =========================================
   1. CSS VARIABLES & BASE
   ========================================= */
:root {
  --primary:       #0a1f44;       /* Deep Navy */
  --primary-mid:   #1a3a6e;       /* Mid Navy */
  --accent:        #1e6fff;       /* Electric Blue */
  --accent-light:  #e8f1ff;       /* Pale Blue */
  --cta:           #ff5c35;       /* Coral CTA */
  --cta-hover:     #e04a25;
  --gold:          #f5a623;       /* Warm Gold */
  --success:       #00b87a;       /* Green */
  --text-dark:     #0d1b2a;
  --text-mid:      #3d5068;
  --text-light:    #7a8fa6;
  --bg-light:      #f5f7fb;
  --bg-mid:        #edf1f8;
  --white:         #ffffff;
  --border:        #e2e8f0;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --shadow-sm:     0 2px 8px rgba(10, 31, 68, 0.06);
  --shadow-md:     0 8px 28px rgba(10, 31, 68, 0.10);
  --shadow-lg:     0 20px 50px rgba(10, 31, 68, 0.14);

  /* Legacy compatibility */
  --primary-color: #1e6fff;
  --secondary-color: #a0c4ff;
  --accent-color:  #ff5c35;
  --text-light-compat: #7a8fa6;
}

html { scroll-behavior: smooth; }

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'DM Sans', 'Poppins', Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: 'Sora', 'Poppins', sans-serif;
  color: var(--primary);
  margin-top: 0;
  line-height: 1.25;
}

p { line-height: 1.7; color: var(--text-mid); }

section { padding: 72px 0; }

a { transition: all 0.25s ease; }

/* =========================================
   2. BUTTONS
   ========================================= */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30, 111, 255, 0.30);
}
.btn-primary:hover {
  background: #1558e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 111, 255, 0.40);
}

.btn-primary.orange-btn {
  background: var(--cta);
  box-shadow: 0 4px 14px rgba(255, 92, 53, 0.30);
}
.btn-primary.orange-btn:hover {
  background: var(--cta-hover);
  box-shadow: 0 8px 24px rgba(255, 92, 53, 0.40);
}

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

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--accent);
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
.header {
  background: var(--white);
  padding: 0;
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  height: 46px;
  display: block;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li { margin: 0; }

nav a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: block;
  position: relative;
  transition: all 0.22s ease;
}

nav a:hover {
  color: var(--accent);
  background: var(--accent-light);
}

nav a.active {
  color: var(--accent);
  background: var(--accent-light);
  font-weight: 600;
}

nav a::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  font-size: 1.3em;
  cursor: pointer;
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  transition: 0.2s;
}
.menu-toggle:hover { background: var(--accent-light); border-color: var(--accent); }

/* =========================================
   4. ANNOUNCEMENT BAR
   ========================================= */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.88rem;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.announcement-bar p {
  margin: 0;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 88vh;
  width: 100%;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s;
  z-index: 1;
}

.hero-slide.active-slide {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

#slide-course {
  background: linear-gradient(135deg, #0a1f44 0%, #1e3a7e 50%, #1e6fff 100%);
}
#slide-service {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3e 50%, #1a3a6e 100%);
}
#slide-logo {
  background: linear-gradient(135deg, #f5f7fb 0%, #edf1f8 100%);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(30,111,255,0.10) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Geometric decorative dots */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero-content {
  max-width: 820px;
  padding: 40px 24px;
  z-index: 3;
  position: relative;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 28px;
}
.student-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}
.business-badge {
  background: rgba(255, 92, 53, 0.15);
  border: 1px solid rgba(255, 92, 53, 0.5);
  color: #ffb09a;
}

.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.animated-text, .animated-button {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 5;
  opacity: 0.6;
}
.scroll-down span {
  display: block;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid rgba(255,255,255,0.8);
  border-right: 2px solid rgba(255,255,255,0.8);
  transform: rotate(45deg);
  margin: -7px;
  animation: scroll 2s infinite;
}
.scroll-down span:nth-child(2) { animation-delay: -0.2s; }
.scroll-down span:nth-child(3) { animation-delay: -0.4s; }
@keyframes scroll {
  0% { opacity: 0; transform: rotate(45deg) translate(-14px,-14px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(14px,14px); }
}

/* Big logo hero */
.big-logo-hero {
  width: 320px;
  max-width: 88%;
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 12px 24px rgba(10,31,68,0.18));
}
#slide-logo h2 {
  color: var(--primary);
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.animate-zoom {
  animation: zoomInLogo 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes zoomInLogo {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* =========================================
   6. STATS SECTION
   ========================================= */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(30,111,255,0.08);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  gap: 32px;
}

.stat-box {
  flex: 1 1 180px;
  padding: 16px;
  position: relative;
}
.stat-box::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-box:last-child::after { display: none; }

.stat-box i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin: 6px 0;
  color: var(--white);
  line-height: 1;
}
.stat-box p {
  font-size: 0.95rem;
  opacity: 0.82;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

/* =========================================
   7. SERVICE CARDS
   ========================================= */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.service-card, .content-box {
  background: var(--white);
  padding: 38px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.32s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card:hover, .content-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: 0.3s;
}
.service-card:hover .service-icon-wrapper {
  background: var(--accent);
  transform: rotate(-4deg) scale(1.05);
}

.service-card i, .content-box i {
  font-size: 26px;
  color: var(--accent);
  transition: 0.3s;
}
.service-card:hover i { color: var(--white); }

.service-card h2, .service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card ul { list-style: none; padding: 0; margin-top: 14px; }
.service-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.service-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
}

/* Service preview card (alternate) */
.service-preview-card {
  background: var(--white);
  padding: 38px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.32s cubic-bezier(0.16,1,0.3,1);
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-preview-card .icon-box {
  width: 76px;
  height: 76px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: 0.3s;
}
.service-preview-card:hover .icon-box { background: var(--accent); }
.service-preview-card i { font-size: 30px; color: var(--accent); transition: 0.3s; }
.service-preview-card:hover i { color: var(--white); }

/* =========================================
   8. WHY CHOOSE US / FEATURES
   ========================================= */
.why-choose-us { background: var(--bg-light); }

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

.feature-box {
  background: var(--white);
  padding: 28px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--cta));
  border-radius: 0 0 0 0;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.feature-box h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-box h3 i { color: var(--success); font-size: 1rem; }
.feature-box p { font-size: 0.92rem; color: var(--text-mid); margin: 0; }

/* =========================================
   9. ABOUT / TEAM / PROFILE CARDS
   ========================================= */
.founder-legacy-card, .founder-card {
  background: linear-gradient(135deg, #fffbee 0%, #fff8e1 100%);
  border-left: 5px solid var(--gold);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}
.founder-legacy-card h3 {
  color: #b8860b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 880px;
  margin: 50px auto;
}

.profile-card, .team-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.profile-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--cta));
}
.profile-card:hover, .team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.profile-card h3, .team-card h3 {
  margin-bottom: 4px;
  font-size: 1.15rem;
  color: var(--primary);
}
.profile-card h4, .team-card h4 {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* =========================================
   10. IMAGE STYLES
   ========================================= */
.profile-card img,
.student-card img,
.team-card img {
  width: 100% !important;
  max-width: 240px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid var(--border) !important;
  padding: 3px !important;
  margin-bottom: 16px;
  background: var(--bg-light) !important;
  box-shadow: none !important;
}

.founder-img {
  width: 100% !important;
  max-width: 320px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: var(--radius-md) !important;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
  display: block;
  margin: 0 auto 20px auto;
}

.founder-img-wrapper {
  height: auto !important;
  flex: 0 0 auto !important;
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}

/* =========================================
   11. STUDENT / SUCCESS CARDS
   ========================================= */
.student-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  text-align: center;
  border-top: 4px solid var(--success);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.student-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--success);
}
.student-card h3 {
  color: var(--success);
  margin-top: 14px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.student-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
  text-align: justify;
}

/* =========================================
   12. UTILITY PAGES (Contact, FAQ, Terms…)
   ========================================= */
.utility-page {
  padding: 72px 0;
  background: var(--bg-light);
  min-height: 70vh;
}
.utility-page .container { max-width: 880px; }
.utility-page h1 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--accent-light);
}
.utility-page h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 12px;
}
.utility-page p { color: var(--text-mid); font-size: 1rem; }
.utility-page ul { padding-left: 24px; }
.utility-page ul li { color: var(--text-mid); margin-bottom: 8px; line-height: 1.7; }
.utility-page a { color: var(--accent); }
.utility-page a:hover { text-decoration: underline; }

/* =========================================
   13. FAQ SECTION
   ========================================= */
.faq-section {
  background: var(--white);
  padding: 72px 0;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 44px;
  font-size: 2.2rem;
}

details {
  background: var(--white);
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all 0.28s ease;
}
details:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(30,111,255,0.08);
}
details[open] {
  background: var(--accent-light);
  border-color: var(--accent);
  border-left: 4px solid var(--accent);
}
summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s;
  font-family: 'Sora', sans-serif;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--accent); }
summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
details p {
  padding: 0 24px 20px;
  margin: 0;
  line-height: 1.75;
  color: var(--text-mid);
  border-top: 1px solid rgba(30,111,255,0.12);
  margin-top: 4px;
  padding-top: 16px;
  animation: fadeIn 0.38s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   14. CONTACT PAGE
   ========================================= */
.contact-page { padding: 72px 0; }
.contact-page h1 { font-size: 2.4rem; margin-bottom: 12px; }

.contact-grid {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.contact-form, .contact-info { flex: 1 1 380px; }

.contact-form form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  margin-top: 18px;
}
.contact-form form input,
.contact-form form textarea,
.contact-form form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 0;
}
.contact-form form input:focus,
.contact-form form textarea:focus,
.contact-form form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,111,255,0.12);
}
.contact-form button {
  background: linear-gradient(135deg, var(--accent) 0%, #1558e0 100%);
  color: var(--white);
  padding: 14px 30px;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  margin-top: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(30,111,255,0.28);
}
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,111,255,0.38);
}

.contact-info h2 { font-size: 1.5rem; margin-bottom: 18px; color: var(--primary); }
.contact-info p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }

/* =========================================
   15. GOOGLE REVIEWS
   ========================================= */
.reviews-section { background: var(--bg-light); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.reviewer-header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}
.reviewer-header strong { display: block; color: var(--text-dark); font-size: 1rem; }
.google-logo {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 22px;
  background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stars { color: var(--gold); font-size: 0.9rem; }
.review-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.6;
}

/* =========================================
   16. SERVICES PAGE (Hero Banners)
   ========================================= */
.services-page, .success-page { padding: 64px 0; }
.services-page h1, .success-page h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  text-align: center;
}

.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(30,111,255,0.15) 0%, transparent 65%);
}
.service-hero h1, .service-hero p {
  color: var(--white) !important;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.service-hero h1 { font-size: 2.6rem; }
.service-hero p { font-size: 1.1rem; opacity: 0.9; }

/* =========================================
   17. PRICE BOXES (Service Pages)
   ========================================= */
.price-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--accent);
  position: relative;
}
.price-tag {
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem;
  color: var(--success);
  font-weight: 800;
  margin: 12px 0;
  display: block;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.step-num {
  background: var(--accent);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.service-icon {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
  text-align: center;
}
.price-box h2, .price-box h3 { color: var(--primary); }

/* =========================================
   18. CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #1e6fff 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,111,255,0.20) 0%, transparent 65%);
}
.cta-section h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}
.cta-section .btn-primary {
  background: var(--cta);
  box-shadow: 0 6px 20px rgba(255,92,53,0.40);
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  padding: 15px 38px;
}
.cta-section .btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 10px 30px rgba(255,92,53,0.50);
}

/* =========================================
   19. FOOTER
   ========================================= */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 56px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cta), var(--gold));
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-col { flex: 1 1 200px; }
.footer h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'Sora', sans-serif;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }

.footer a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.22s;
}
.footer a:hover { color: var(--white); }

.footer p { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.7; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.84rem;
}
.footer-bottom p { color: rgba(255,255,255,0.52); margin: 4px 0; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  transition: all 0.25s ease;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.jd-icon {
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  letter-spacing: -0.5px;
}

/* =========================================
   20. ANIMATIONS & SCROLL EFFECTS
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 58px;
  height: 58px;
  bottom: 32px;
  right: 28px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.50);
}

/* =========================================
   21. SECTION TITLES (Global)
   ========================================= */
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 50px;
}
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }

/* =========================================
   22. PLACEMENT TICKER
   ========================================= */
.placement-ticker-section {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--accent-light);
  padding: 14px 0;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--accent-light), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--accent-light), transparent);
}
.ticker { display: inline-block; animation: marquee 32s linear infinite; }
.ticker-wrap:hover .ticker { animation-play-state: paused; }
.ticker-item {
  display: inline-block;
  padding: 0 36px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
}
.ticker-item::after {
  content: "•";
  position: absolute;
  right: 0;
  color: rgba(30,111,255,0.3);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   23. KNOWLEDGE CENTER (Blog)
   ========================================= */
.blog-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 64px 0 44px;
  text-align: center;
}
.blog-header h1 { font-size: 2.4rem; margin-bottom: 10px; color: var(--white); }
.blog-header p { font-size: 1.05rem; color: rgba(255,255,255,0.80); max-width: 580px; margin: 0 auto 28px; }

.search-box-wrapper {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  box-shadow: 0 6px 18px rgba(10,31,68,0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.search-box-wrapper input {
  flex: 1;
  padding: 14px 22px;
  border: none;
  outline: none;
  font-size: 0.97rem;
  font-family: 'DM Sans', sans-serif;
}
.search-box-wrapper button {
  background: var(--cta);
  color: var(--white);
  border: none;
  padding: 0 24px;
  cursor: pointer;
  font-size: 1.15rem;
  transition: background 0.25s;
}
.search-box-wrapper button:hover { background: var(--cta-hover); }

.blog-container-section { padding: 54px 0; background: var(--bg-light); }
.blog-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 36px;
  align-items: start;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.featured-card .blog-thumb {
  height: 240px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
}
.blog-fallback-icon { font-size: 80px; opacity: 0.22; }
.category-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--cta);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.blog-content { padding: 24px 26px; }
.blog-content h2 { margin-top: 8px; font-size: 1.6rem; }
.blog-content h2 a { text-decoration: none; color: var(--text-dark); transition: 0.25s; }
.blog-content h2 a:hover { color: var(--accent); }
.blog-meta { font-size: 0.86rem; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.blog-grid .blog-card h3 { font-size: 1.2rem; margin: 10px 0; }
.blog-grid .blog-card h3 a { text-decoration: none; color: var(--text-dark); }
.category-tag {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  font-weight: 700;
}
.text-link {
  color: var(--cta);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.88rem;
  margin-top: 10px;
  display: inline-block;
}

.sidebar-widget {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  margin-bottom: 28px;
}
.widget-title {
  font-size: 1.05rem;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--cta);
  padding-bottom: 10px;
  display: inline-block;
  color: var(--primary);
  font-family: 'Sora', sans-serif;
}
.tool-list { list-style: none; padding: 0; margin: 0; }
.tool-list li { margin-bottom: 10px; }
.tool-list a {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.25s;
  font-weight: 500;
  font-size: 0.93rem;
  border: 1.5px solid var(--border);
}
.tool-list a i { width: 28px; color: var(--accent); font-size: 1rem; }
.tool-list a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.tool-list a:hover i { color: var(--white); }
.category-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.category-cloud a {
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s;
}
.category-cloud a:hover { background: var(--accent); color: var(--white); }
.pagination { margin-top: 36px; display: flex; gap: 8px; }
.pagination a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.pagination a.active, .pagination a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* =========================================
   24. SINGLE BLOG POST
   ========================================= */
.blog-post-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  font-size: 1.03rem;
  line-height: 1.82;
}
.blog-post-content h2 { margin-top: 32px; font-size: 1.7rem; color: var(--primary); }
.blog-post-content h3 { margin-top: 24px; font-size: 1.3rem; color: var(--primary-mid); }
.blog-post-content p { margin-bottom: 20px; color: var(--text-mid); }
.blog-post-content ul, .blog-post-content ol { margin-bottom: 20px; padding-left: 22px; }
.blog-post-content li { margin-bottom: 9px; }

.example-box {
  background: linear-gradient(135deg, #fff8e8 0%, #fff3d6 100%);
  border-left: 5px solid var(--gold);
  padding: 22px;
  margin: 28px 0;
  border-radius: var(--radius-sm);
}
.example-box h4 { margin-top: 0; color: #a0720a; display: flex; align-items: center; gap: 8px; }

.blog-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.blog-table th, .blog-table td { border: 1px solid var(--border); padding: 12px 14px; text-align: left; }
.blog-table th { background: var(--primary); color: var(--white); font-family: 'Sora', sans-serif; }
.blog-table tr:nth-child(even) { background: var(--bg-light); }

.post-header { margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.post-tags span {
  background: var(--accent-light);
  color: var(--accent);
  padding: 5px 12px;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* =========================================
   25. MISC SERVICE PAGE CARDS
   ========================================= */
.service-card-pro {
  background: var(--white);
  padding: 38px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card-pro::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cta));
}
.service-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.service-icon-box {
  width: 66px; height: 66px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: 0.3s;
}
.service-card-pro:hover .service-icon-box { background: var(--accent); transform: rotate(-6deg); }
.service-icon-box i { font-size: 28px; color: var(--accent); transition: 0.3s; }
.service-card-pro:hover .service-icon-box i { color: var(--white); }
.service-card-pro h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.service-card-pro p { color: var(--text-mid); font-size: 0.93rem; flex-grow: 1; margin-bottom: 22px; }
.service-btn {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  transition: gap 0.25s;
}
.service-btn:hover { gap: 14px; color: var(--primary); }

/* =========================================
   26. TOOL CARDS, PROFILE EXTRAS
   ========================================= */
.tool-card {
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 24px;
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.tool-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tool-card i { font-size: 1.3rem; }

/* =========================================
   27. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 900px) {
  .header .container { position: relative; }
  .menu-toggle { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 999;
    border-top: 2px solid var(--accent);
  }
  nav.nav-open { display: block; animation: slideDown 0.28s ease; }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  nav ul li { margin: 0; }
  nav a {
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  nav a.active { background: var(--accent-light); }

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

  .hero { min-height: 88vh; height: auto; padding: 100px 0 60px; }
  .hero h1 { font-size: 2.1rem; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 340px; box-sizing: border-box; }

  .stats-grid { gap: 24px; }
  .stat-box::after { display: none; }

  .contact-grid { flex-direction: column; }
  .footer-grid { flex-direction: column; gap: 32px; }

  .team-grid { grid-template-columns: 1fr !important; gap: 28px; padding: 0 12px; }

  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }
  .featured-card .blog-thumb { height: 180px; }

  .service-hero h1 { font-size: 2rem; }
  .cta-section h2 { font-size: 1.9rem; }

  .stat-number { font-size: 2.2rem; }
  .section-title { font-size: 1.75rem; }
}

@media (max-width: 600px) {
  .big-logo-hero { max-width: 260px; }
  #slide-logo h2 { font-size: 1.15rem; }
  .ticker-item { font-size: 0.88rem; padding: 0 18px; }
  .blog-post-content { padding: 20px; }
  .price-box { padding: 22px; }
  .utility-page h1 { font-size: 1.9rem; }
  .stat-number { font-size: 1.9rem; }
  .hero h1 { font-size: 1.8rem; }
  section { padding: 52px 0; }
}
