* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
.element451-form-wrapper {
  width: 100%; /* Fill the blue card width */
  max-width: 100%; /* Prevent overflow */
  display: block;
  margin: 0 auto; /* Center it */
  overflow: hidden; /* Prevents scrollbars from poking out */
}
/* Force the Element451 container to behave */
lum-root {
  width: 100% !important;
  display: block !important;
}
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}
/* CONTAINER */
.nav-container {
  max-width: 1280px; /* same as max-w-7xl */
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* LOGO */
.logo {
  height: 100px;
  width: auto;
  padding-top: 10px;
}
/* BUTTON */
.apply-btn {
  background-color: #2563eb;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.apply-btn:hover {
  background-color: #1d4ed8;
  text-decoration: none;
}
/* RESPONSIVE */
@media (max-width: 640px) {
  .stats-three {
    padding-top: 80px;
  }
  .logo {
    height: 68px;
  }
  .apply-btn {
    padding: 6px 18px;
    font-size: 14px;
  }
}
/* HERO SECTION */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2)),
    url("images/homescreen.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: bottom 32px;
  background-position: left;
  padding: 10px 10%;
}

.hero-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  gap: 14px;
}
.hero-content {
  margin-top: -90px;
}
/* LEFT CONTENT */
.hero-content h2 {
  font-size: clamp(1rem, 5vw, 3rem);
  color: #b4e50d;
  justify-content: center;
  margin-top: 5px;
}
.hero-content h2 span {
  display: block;
  color: white;
}
.Appointment {
  display: flex;
  align-items: center;
  gap: 2px;
}
.badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #facc15, #f97316);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 9px;
  font-size: 20px;
}
.description {
  font-size: 18px;
  padding-top: 20px;
  color: white;
  max-width: 600px;
}
/* FEATURES */
.features {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.feature-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-card h4 {
  margin: 10px 0 5px;
}
.feature-card p {
  font-size: 14px;
  color: #6b7280;
}
/* STATS */
.stats-three {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 14px;
  text-align: center;
  justify-content: space-evenly;
}
.stats-three-card {
  background: linear-gradient(to right, #090979, #00d4ff);
  padding: 8px 18px;
  border-radius: 9px;
}
.stats-three strong {
  font-size: 32px;
  color: white;
}
.stats-three span {
  display: block;
  color: white;
}
/* FORM */
.form-wrapper {
  position: relative;
}
.form {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 14px;
  color: #334155;
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
}
/* FOCUS */
.field input:focus,
.field select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form h3 {
  margin-bottom: 20px;
  justify-content: center;
  text-align: center;
  font-size: 24px;
}
.form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}
.form button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.form button:hover {
  background: #1d4ed8;
}
.Book-btn {
  background-color: #2563eb;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: auto;
  margin-top: 10px;
  text-decoration: none;
}
@media (max-width: 600px) {
  .hero {
    padding: 10px 2%;
  }
  .hero-content {
    padding-top: 120px;
  }
  .stats-three {
    padding-top: 20px;
    gap: 10px;
  }
  .Appointment {
    display: grid;
  }
  .badge {
    font-size: 14px;
  }
  .hero-content h3 {
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 4px;
  }
  .hero-content h3 span {
    color: green;
    font-weight: 700;
  }
  .hero-content h1 {
    padding-top: 2px;
  }
  .hero-content h1 span {
    padding-bottom: 4px;
  }
}
/* RESPONSIVE */
@media (min-width: 600px) {
  .stats-three {
    padding-top: 120px;
  }
  .badge {
    margin-top: 140px;
  }
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
  .form-wrapper {
    position: sticky;
    top: 96px;
  }
  .stats-three {
    padding-top: 100px;
  }
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.floating-book-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* HOVER EFFECT */
.floating-book-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 25px 45px rgba(37, 99, 235, 0.6);
}
/* MOBILE */
@media (max-width: 550px) {
  .floating-book-btn {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 14px;
  }
  .stats-three {
    font-size: 10px;
    align-items: center;
    text-align: center;
  }
  .stats-three strong {
    font-size: 22px;
  }
}
/* get quality codes */
/* SECTION */
.quality-section {
  padding: 40px 6%;
  background: linear-gradient(135deg, #f9fafb, #eff6ff);
}
.container {
  max-width: 1280px;
  margin: auto;
}
/* HEADER */
.section-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 20px;
}
.section-header p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
}
/* BUTTON */
.cta-btn {
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.45);
}
/* GRID */
.benefits-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
/* CARD */
.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.benefit-card h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #0f172a;
}
.benefit-card p {
  font-size: 15px;
  color: #475569;
  margin-top: 10px;
  line-height: 1.6;
}
/* ICON */
.icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
}
/* GRADIENTS */
.gradient-purple .icon {
  background: linear-gradient(to right, #a855f7, #ec4899);
}
.gradient-blue .icon {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
}
.gradient-green .icon {
  background: linear-gradient(to right, #22c55e, #14b8a6);
}
.gradient-orange .icon {
  background: linear-gradient(to right, #f97316, #ef4444);
}
.gradient-indigo .icon {
  background: linear-gradient(to right, #6366f1, #a855f7);
}
.gradient-teal .icon {
  background: linear-gradient(to right, #14b8a6, #22c55e);
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.brochure-section {
  padding: 40px 6%;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}
.container {
  max-width: 1200px;
  margin: auto;
}
/* HEADER */
.brochure-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
}
.brochure-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 14px;
}
.brochure-header p {
  font-size: 18px;
  color: #475569;
}
/* GRID */
.brochure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
/* CONTENT */
.brochure-content h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #0f172a;
}
.brochure-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}
.features-list {
  list-style: none;
  margin-bottom: 30px;
}
.features-list li {
  margin-bottom: 12px;
  color: #334155;
  font-size: 16px;
}
/* CTA */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.primary-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s ease;
}
.primary-btn:hover {
  background: #1d4ed8;
}
.secondary-btn {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
}
/* PRICING CARD */
.pricing-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.pricing-card h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #0f172a;
}
.price-box {
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 16px;
  text-align: center;
}
.price-box strong {
  display: block;
  font-size: 32px;
  color: #2563eb;
}
.price-box .label {
  display: block;
  font-size: 14px;
  color: #64748b;
}
.price-box .unit {
  font-size: 14px;
  color: #64748b;
}
.price-box.highlight {
  border-color: #2563eb;
  background: #eff6ff;
}
.note p {
  font-size: 14px;
  color: #475569;
  margin-top: 10px;
}
.course-badge {
  margin: 0 auto;
  width: 150px;
  padding: 1.2rem;
  background: linear-gradient(135deg, #4f46e5, #8b5cf6);
  border-radius: 1.2rem;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 18px 35px rgba(79, 70, 229, 0.35);
}

/* Icon */
.icon-wrapper {
  position: relative;
}

.icon-glow {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  filter: blur(12px);
}

.icon-circle {
  position: relative;
  background: #ffffff;
  padding: 0.6rem;
  border-radius: 50%;
}

.award-icon {
  width: 28px;
  height: 28px;
  color: #6d28d9;
}

/* Text */
.months {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.sub-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Status */
.badge-status {
  margin-top: 0.2rem;
  padding: 0.25rem 0.7rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 480px) {
  .fees-card {
    padding: 1.5rem;
  }

  .course-badge {
    width: 140px;
    padding: 1rem;
  }

  .months {
    font-size: 1.6rem;
  }
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .brochure-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}
/* transform course */
/* SECTION */
.transform-section {
  padding: 80px 6%;
  background: linear-gradient(135deg, #eef2ff, #ffffff, #eff6ff);
}
.container {
  max-width: 1280px;
  margin: auto;
}
/* GRID */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
/* CONTENT */
.content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 20px;
}
.content .lead {
  font-size: 17px;
  color: #475569;
  margin-bottom: 18px;
}
.content .sub {
  font-size: 17px;
  color: #475569;
  margin-bottom: 24px;
}
/* BENEFITS */
.benefits {
  list-style: none;
  margin: 20px 0 30px;
}
.benefits li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #374151;
  font-size: 16px;
}
.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #22c55e;
  font-weight: bold;
}
/* BUTTON */
.cta-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
}
.cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}
/* IMAGE */
.image-wrapper {
  position: relative;
}
.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* DECORATIVE BLUR */
.blur {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  z-index: -1;
}
.blur.blue {
  background: #2563eb;
  bottom: -30px;
  right: -30px;
}
.blur.indigo {
  background: #4f46e5;
  top: -30px;
  left: -30px;
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .transform-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Why choose CCCK BUSINESS */

/* SECTION */
.choose-section {
  padding: 80px 6%;
  background: #ffffff;
}
/* CONTAINER */
.choose-container {
  max-width: 1280px;
  margin: auto;
}
/* HEADER */
.choose-section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}
.choose-section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 16px;
}
.choose-section-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
}
/* GRID */
.choose-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
/* CARD */
.choose-feature-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.choose-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
/* ICON */
.choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
}
/* TEXT */
.choose-feature-card h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 12px;
}
.choose-feature-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}
/* COLOR VARIANTS */
.choose-feature-card.purple .choose-icon {
  background: linear-gradient(to right, #a855f7, #ec4899);
}
.choose-feature-card.blue .choose-icon {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
}
.choose-feature-card.orange .choose-icon {
  background: linear-gradient(to right, #f97316, #ef4444);
}
.choose-feature-card.green .choose-icon {
  background: linear-gradient(to right, #22c55e, #14b8a6);
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .choose-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .choose-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* SECTION */
.success-section {
  padding: 80px 6%;
  background: linear-gradient(135deg, #eff6ff, #f5f3ff, #eef2ff);
}
.container {
  max-width: 1280px;
  margin: auto;
}
/* HEADER */
.section-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
}
.quote-icon {
  width: 64px;
  height: 64px;
  margin: auto;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: #475569;
}
/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
/* First card: full row & centered */
.testimonial-card:first-child {
  grid-column: 1 / -1; /* span both columns */
  justify-self: center;
  max-width: 520px;
}
/* Bottom two cards */
.testimonial-card:nth-child(2),
.testimonial-card:nth-child(3) {
  align-self: end;
}
/* Card styling (example) */
.testimonial-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
/* CONTENT */
.testimonial-content h4 {
  font-size: 18px;
  color: #0f172a;
}
.testimonial-content span {
  display: block;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 8px;
}
.rating {
  color: #facc15;
  margin-bottom: 10px;
}
.testimonial-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}
/* STATS */
.stats {
  text-align: center;
  justify-content: center;
  margin-top: 30px;
  display: grid;
}
.stats-title {
  font-size: 20px;
  color: #475569;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stats-grid strong {
  font-size: 30px;
  color: #2563eb;
}
.stats-grid span {
  display: block;
  font-size: 14px;
  color: #64748b;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card:first-child {
    max-width: 100%;
    justify-self: stretch;
  }
}
/* Video Tour */
/* SECTION */
.video-section {
  position: relative;
  padding: 90px 6%;
  background: linear-gradient(135deg, #020617, #1e3a8a, #312e81);
  overflow: hidden;
}
/* DOT PATTERN */
.bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}
.container {
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 1;
}
/* HEADER */
.section-header-new {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
}
.section-header-new h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: white;
}
.section-header-new p {
  font-size: 18px;
  color: white;
}
/* GRID */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
/* CARD */
.video-card {
  /*background: #ffffff;*/
  color: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  /*box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);*/
  /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}
.video-card:hover {
  /*transform: translateY(-8px);*/
  /*box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55);*/
}
/* THUMB */
.video-thumb {
  position: relative;
  height: 290px;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: fit;
  transition: transform 0.5s ease;
}
/*.video-card:hover img {*/
/*  transform: scale(1.12);*/
/*}*/
/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.45),
    transparent
  );
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.video-card:hover .overlay {
  opacity: 1;
}
/* PLAY */
.play-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 72px;
  height: 72px;
  background: #ffffff;
  color: #2563eb;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.video-card:hover .play-btn {
  transform: scale(1.15);
}
/* DURATION */
.duration {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}
/* CONTENT */
.video-content {
  padding: 24px;
}
.video-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.video-card:hover h3 {
  color: #2563eb;
}
.video-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}
/* BUTTON */
.cta-wrapper {
  text-align: center;
}
.cta-btn {
  background: #ffffff;
  color: #1e3a8a;
  padding: 16px 36px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}
.cta-btn:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}
.campus-video {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: #000;
  position: relative;
  z-index: 2;
}
/* VERY IMPORTANT */
video::-webkit-media-controls {
  z-index: 5;
  display: flex !important;
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .video-thumb {
    height: 220px;
  }
  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
/* SECTION */
.best-courses {
  padding: 80px 6%;
}
.container {
  max-width: 1280px;
  margin: auto;
}
/* HEADER */
.section-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 18px;
  color: #475569;
}
/* GRID */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
/* CARD */
.course-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
/* BODY */
.course-body {
  padding: 22px;
}
.course-body h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 8px;
}
.desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 14px;
}
/* META */
.meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #475569;
  margin-bottom: 12px;
}
/* INFO */
.info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
}
/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-size: 18px;
  font-weight: 600;
  color: #2563eb;
}
.footer button {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.footer button:hover {
  background: #1d4ed8;
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Course categories */
/* SECTION */
.categories-section {
  padding: 80px 6%;
}
.container {
  max-width: 1280px;
  margin: auto;
}
/* HEADER */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 18px;
  color: #475569;
}
/* GRID */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 50px;
}
/* CARD */
.category-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}
.category-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin: 16px 0 6px;
}
.category-card span {
  font-size: 14px;
  color: #64748b;
}
/* ICON */
.icon {
  width: 64px;
  height: 64px;
  margin: auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
}
/* COLOR VARIANTS */
.blue .icon {
  background: #2563eb;
}
.indigo .icon {
  background: #4f46e5;
}
.pink .icon {
  background: #ec4899;
}
.purple .icon {
  background: #9333ea;
}
.green .icon {
  background: #22c55e;
}
.red .icon {
  background: #ef4444;
}
.orange .icon {
  background: #f97316;
}
.cyan .icon {
  background: #06b6d4;
}
.teal .icon {
  background: #14b8a6;
}
/* CTA */
.cta-wrapper {
  text-align: center;
}
.cta-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cta-btn:hover {
  background: #1d4ed8;
  transform: translateX(4px);
}
/* RESPONSIVE */
@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Footer section */
/* FOOTER */
.footer {
  color: #ffffff;
  background: linear-gradient(135deg, #020617, #1e3a8a, #312e81);
  display: grid;
  align-items: center;
  justify-content: center;
}
/* CONTAINER */
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 2%;
}
/* MAIN */
.footer-main {
  padding: 80px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
/* TEXT */
.footer-logo {
  height: 100px;
  width: auto;
}
.footer-text {
  color: #bfdbfe;
  margin-bottom: 20px;
  line-height: 1.6;
}
/* SOCIAL */
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.social-links a:hover {
  background: #2563eb;
}
/* LINKS */
.footer h4 {
  font-size: 20px;
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul a {
  color: #bfdbfe;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer ul a:hover {
  color: #ffffff;
}
/* CONTACT */
.contact-list li {
  color: #bfdbfe;
  margin-bottom: 14px;
}
/* NEWSLETTER */
.newsletter {
  margin-top: 20px;
}
.newsletter h5 {
  margin-bottom: 10px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.newsletter-form input::placeholder {
  color: #bfdbfe;
}
.newsletter-form button {
  padding: 10px 14px;
  background: #2563eb;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
}
/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.bottom-flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.bottom-flex p {
  color: #bfdbfe;
  font-size: 14px;
}
.bottom-links {
  display: flex;
  gap: 20px;
}
.bottom-links a {
  color: #bfdbfe;
  font-size: 14px;
  text-decoration: none;
}
.bottom-links a:hover {
  color: #ffffff;
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-flex {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ---------------- COMMON ---------------- */
.container-footer {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}
.footer {
  color: #e5e7eb;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #1e40af);
}
/* ---------------- MAIN FOOTER ---------------- */
.footer-main {
  padding: 4rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
/* ABOUT */
.footer-logo {
  width: 140px;
  margin-bottom: 1rem;
}
.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 1.2rem;
}
.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #ffffff;
  transition: 0.3s ease;
}
.social-links a:hover {
  background: #2563eb;
  transform: translateY(-3px);
}
/* LINKS */
.footer h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: #ffffff;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: #c7d2fe;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}
/* CONTACT */
.contact-list {
  list-style: none;
  font-size: 0.95rem;
}
.contact-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  color: #cbd5f5;
}
.contact-list i {
  color: #60a5fa;
}
/* NEWSLETTER */
.newsletter {
  margin-top: 1.5rem;
}
.newsletter h5 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
}
.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
}
.newsletter-form input::placeholder {
  color: #dbeafe;
}
.newsletter-form button {
  background: #2563eb;
  border: none;
  padding: 0 1rem;
  color: #ffffff;
  cursor: pointer;
}
/* ---------------- BOTTOM BAR ---------------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.2rem 0;
}
.bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.bottom-flex p {
  font-size: 0.85rem;
  color: #c7d2fe;
}
.bottom-links a {
  color: #c7d2fe;
  margin-left: 1rem;
  font-size: 0.85rem;
  text-decoration: none;
}
.bottom-links a:hover {
  color: #ffffff;
}
/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .contact-list li {
    justify-content: center;
  }
  .newsletter-form {
    max-width: 320px;
    margin: auto;
  }
  .bottom-flex {
    flex-direction: column;
    text-align: center;
  }
  .bottom-links a {
    margin: 0 0.5rem;
  }
}
/* hero screen new layout */
.appointment-wrapper {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
}
/* Card */
.appointment-card {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  max-width: 500px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
/* Heading */
.appointment-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}
/* Text */
.appointment-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: #e0e7ff;
}
/* Button */
.book-btn {
  display: inline-block;
  background: #ffffff;
  color: #1e3a8a;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.book-btn:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}
/* Mobile Responsive */
@media (max-width: 480px) {
  .appointment-card {
    padding: 32px 24px;
  }
  .appointment-card h3 {
    font-size: 22px;
  }
  .appointment-card p {
    font-size: 15px;
  }
  .book-btn {
    width: 100%;
    padding: 14px;
  }
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 100%;
}
/* Modern browsers */
.hero-image {
  aspect-ratio: 5 / 3;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
