/* RESET */
* {
  font-family: 'Segoe UI', sans-serif;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(135deg, #1abc9c, #16a085);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .info span {
  margin-right: 20px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* NAVBAR */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

/* LOGO */
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  color: #16a085;
}

.logo-sub {
  font-size: 13px;
  letter-spacing: 3px;
  color: #555;
}

/* MENU */
.nav-link {
  font-weight: 600;
  color: #333 !important;
  margin: 0 12px;
  position: relative;
  transition: 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: #16a085;
  bottom: -6px;
  left: 50%;
  transition: 0.4s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.nav-link:hover {
  color: #16a085 !important;
}

/* ICONS */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icons i {
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-icons i:hover {
  color: #16a085;
  transform: scale(1.1);
}

/* CART */
.cart {
  position: relative;
}

.cart .badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #16a085;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  padding: 3px 6px;
}

/* SCROLL EFFECT */
.scrolled {
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* cards */
/* HERO SECTION */
.hero-section {
  background: linear-gradient(120deg, #fef6f8, #e8faf6);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

/* CONTENT */
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #0b2c3d;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #16a085;
}

.badge-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #e9faf5;
  color: #16a085;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeDown 1s ease;
}

.btn-hero {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  background: #16a085;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 20px 40px rgba(22,160,133,0.3);
}

.btn-hero:hover {
  transform: translateY(-4px);
  background: #138a72;
}

/* IMAGES */
.hero-images {
  position: relative;
  height: 450px;
}

/* GLASS IMAGE CARDS */
.img-card {
  position: absolute;
  width: 230px;
  height: 320px;
  border-radius: 120px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transition: 0.5s;
  animation: float 4s ease-in-out infinite;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* POSITIONING */
.img-one {
  top: 20px;
  left: 80px;
}

.img-two {
  bottom: 0;
  right: 40px;
  animation-delay: 1.5s;
}

/* HOVER EFFECT */
.img-card:hover {
  transform: scale(1.05) rotate(2deg);
}

/* SHAPES */
.shape {
  position: absolute;
  animation: float 6s infinite ease-in-out;
}

.circle {
  width: 30px;
  height: 30px;
  background: #ff5b5b;
  border-radius: 50%;
  top: 40px;
  right: 140px;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid #f4d03f;
  top: 80px;
  right: 40px;
}

.ring {
  width: 35px;
  height: 35px;
  border: 4px solid #16a085;
  border-radius: 50%;
  bottom: 80px;
  left: 40px;
}

/* ANIMATIONS */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-images {
    margin-top: 60px;
  }

  .img-card {
    width: 180px;
    height: 260px;
  }
}

/* explore */
.feature-strip {
  padding: 80px 0;
}

.feature-box {
  max-width: 1200px;
  margin: auto;
  background: #3fc1a1;
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* FEATURE ITEMS */
.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  z-index: 2;
  transition: 0.4s;
}

.feature-item i {
  font-size: 42px;
  transition: 0.4s;
}

.feature-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.feature-item strong {
  font-size: 20px;
}

/* HOVER EFFECT */
.feature-item:hover {
  transform: translateY(-6px);
}

.feature-item:hover i {
  transform: scale(1.2) rotate(6deg);
}

/* DECORATIVE CIRCLES */
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: float 6s infinite ease-in-out;
}

.c1 {
  width: 160px;
  height: 160px;
  background: #ffffff;
  top: -40px;
  right: 60px;
}

.c2 {
  width: 220px;
  height: 220px;
  border: 3px solid #ffffff;
  bottom: -80px;
  right: -60px;
}

/* ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-box {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .feature-item {
    justify-content: center;
  }
}

/* category grid */
.categories-section {
  padding: 100px 0;
  background: #ffffff;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #0b2c3d;
  margin-bottom: 60px;
  position: relative;
}

.section-title span {
  color: #16a085;
}

.section-title::after {
  content: '';
  width: 90px;
  height: 4px;
  background: #f4c430;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.category-card {
  background: #f2f9fb;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.category-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0b2c3d;
}

.category-card .icon {
  font-size: 30px;
}

/* HOVER EFFECT */
.category-card:hover {
  background: #16a085;
  transform: translateY(-6px);
}

.category-card:hover h4 {
  color: #ffffff;
}

.category-card:hover .icon {
  transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* cards 8 */
.popular-courses {
  padding: 100px 0;
  background: #fff;
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.course-header h2 {
  font-size: 40px;
  font-weight: 800;
}

.course-header span {
  color: #16a085;
}

.view-btn {
  background: #3fc1a1;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* GRID */
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.course-card {
  transition: 0.4s;
}

.course-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.course-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.level {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4d4d;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 6px;
}

.course-img i {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  font-size: 16px;
}

/* CATEGORY */
.category {
  display: inline-block;
  margin: 15px 0;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.sales { background: #ffe6e6; color: #ff4d4d; }
.finance { background: #e6f7f2; color: #16a085; }

/* TEXT */
.course-card h4 {
  font-size: 18px;
  font-weight: 700;
}

.rating, .meta {
  margin: 8px 0;
  font-size: 14px;
}

/* PRICE */
.price {
  margin-top: 10px;
}

.price .new {
  color: red;
  font-weight: 700;
}

.price .old {
  text-decoration: line-through;
  color: #888;
  margin-left: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .course-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .course-grid { grid-template-columns: 1fr; }
  .course-header { flex-direction: column; gap: 20px; }
}
.results-section {
  background: #eef9f6;
  padding: 100px 0 140px;
  position: relative;
}

/* GRID */
.results-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

/* CONTENT */
.results-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b2c3d;
  line-height: 1.3;
}

.results-content h2 span {
  color: #16a085;
}

.desc {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
  max-width: 520px;
}

/* LIST */
.results-list {
  list-style: none;
  padding: 0;
}

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 500;
}

.dot {
  width: 12px;
  height: 12px;
  background: #16a085;
  border-radius: 50%;
  margin-top: 6px;
}

/* IMAGE */
.results-image {
  position: relative;
}

.results-image img {
  width: 100%;
  max-width: 380px;
  z-index: 2;
  position: relative;
}

/* SHAPES */
.shape {
  position: absolute;
  animation: float 6s infinite ease-in-out;
}

.red {
  width: 24px;
  height: 24px;
  background: #ff5b5b;
  border-radius: 50%;
  top: 40px;
  left: -10px;
}

.yellow {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid #f4d03f;
  top: 20px;
  right: 40px;
}

.ring {
  width: 36px;
  height: 36px;
  border: 3px solid #000;
  border-radius: 50%;
  bottom: 80px;
  left: 40px;
}

.dots {
  width: 70px;
  height: 70px;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 8px 8px;
  right: -10px;
  bottom: 120px;
}

/* STATS */
.stats-box {
  margin-top: 80px;
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  text-align: center;
}

.stat .num {
  font-size: 36px;
  font-weight: 800;
}

.red { color: #ff9e9e; }
.green { color: #16a085; }
.yellow { color: #f4c430; }
.purple { color: #7a5cff; }

.stat p {
  margin-top: 8px;
  font-weight: 600;
}

/* ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .results-list li {
    justify-content: center;
  }

  .stats-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .stats-box {
    grid-template-columns: 1fr;
  }
}
/* testimonal */
.testimonial-section {
  padding: 100px 0;
  background: #ffffff;
}

/* TITLE */
.testimonial-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #0b2c3d;
  margin-bottom: 60px;
}

.testimonial-title span {
  color: #16a085;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  border: 1px solid #e5e5e5;
  position: relative;
  transition: 0.4s ease;
  animation: fadeUp 0.8s ease both;
}

.card-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #16a085;
  border-radius: 12px 12px 0 0;
}

/* TEXT */
.testimonial-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* PROFILE */
.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.profile span {
  font-size: 14px;
  color: #777;
}

/* HOVER EFFECT */
.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(22,160,133,0.2);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-title {
    font-size: 32px;
  }
}
/* student */
.demo-section {
  padding: 120px 0;
  background: #ffffff;
}

/* GRID */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.demo-image {
  position: relative;
}

.demo-image img {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

/* FLOATING SHAPES */
.shape {
  position: absolute;
  animation: float 6s infinite ease-in-out;
}

.circle {
  width: 220px;
  height: 220px;
  background: #eaf7f3;
  border-radius: 50%;
  top: 60px;
  left: -40px;
}

.semi {
  width: 40px;
  height: 40px;
  background: #ffd166;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
  top: 30px;
  right: 80px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ff5b5b;
  border-radius: 50%;
  bottom: 120px;
  left: 60px;
}

/* CONTENT */
.demo-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b2c3d;
  line-height: 1.3;
}

.demo-content h2 span {
  color: #16a085;
}

.desc {
  margin: 25px 0 40px;
  color: #555;
  line-height: 1.7;
}

/* GLASS FEATURE CARDS */
.demo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.glass-card {
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.glass-card i {
  font-size: 36px;
  color: #16a085;
}

.glass-card h4 {
  margin: 15px 0 10px;
  font-weight: 700;
}

.glass-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER EFFECT */
.glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(22,160,133,0.25);
}

/* BUTTON */
.demo-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  background: #3fc1a1;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.4s;
}

.demo-btn:hover {
  background: #16a085;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(22,160,133,0.3);
}

/* ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .demo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .demo-features {
    grid-template-columns: 1fr;
  }

  .demo-image img {
    margin: auto;
  }
}
/* foter */
.edu-footer {
  background: #eef9f6;
  padding: 80px 0 0;
  font-family: 'Segoe UI', sans-serif;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
}

/* BRAND */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 45px;
}

.footer-brand h3 {
  margin: 0;
  color: #16a085;
  font-size: 22px;
}

.footer-brand span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #555;
}

.footer-brand p {
  margin-top: 20px;
  color: #555;
  line-height: 1.7;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #0b2c3d;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.footer-links a::after {
  content: '';
  width: 0;
  height: 2px;
  background: #16a085;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #16a085;
}

/* CONTACT */
.footer-contact p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #d8eae4;
  color: #333;
  font-size: 14px;
}

/* SCROLL TO TOP */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #3fc1a1;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  transition: 0.4s;
}

#scrollTopBtn:hover {
  background: #16a085;
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }
}

/* contact us */

.contact-page {
  padding: 100px 0;
  background: #ffffff;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0b2c3d;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: #333;
  line-height: 1.6;
}

.icon {
  color: #f4c430;
  font-size: 18px;
}

.contact-info h3 {
  margin: 40px 0 20px;
  font-size: 28px;
  font-weight: 700;
}

/* MAP */
.map-box iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* RIGHT FORM */
.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  margin-bottom: 18px;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #16a085;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(22,160,133,0.15);
}

.form-row {
  display: flex;
  gap: 20px;
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  background: #3fc1a1;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.contact-form button:hover {
  background: #16a085;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(22,160,133,0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
  }

  .contact-info h2,
  .contact-form-box h2 {
    font-size: 28px;
  }
}

/* about us */

.about-section {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.about-tag {
  display: inline-block;
  color: #888;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 46px;
  font-weight: 800;
  color: #0b2c3d;
  line-height: 1.2;
  margin-bottom: 25px;
  animation: fadeLeft 1s ease;
}

.about-content h2 span {
  color: #16a085;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 560px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 38px;
  background: #3fc1a1;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(22,160,133,0.25);
}

.about-btn:hover {
  background: #16a085;
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(22,160,133,0.4);
}

/* IMAGE */
.about-image {
  position: relative;
  animation: fadeRight 1s ease;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: 0.5s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* IMAGE HOVER */
.about-image:hover img {
  transform: scale(1.05);
}

/* SHAPES */
.shape {
  position: absolute;
  animation: float 6s infinite ease-in-out;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 70px solid #f45b8d;
  left: -40px;
  top: 120px;
}

.dots {
  width: 90px;
  height: 90px;
  background-image: radial-gradient(#aab7c4 2px, transparent 2px);
  background-size: 10px 10px;
  bottom: -20px;
  left: -20px;
}

.circle {
  width: 90px;
  height: 90px;
  background: #ffd966;
  border-radius: 50%;
  top: -30px;
  right: 60px;
}

/* ANIMATIONS */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-image img {
    max-width: 520px;
    margin: auto;
  }
}

.why-section {
  padding: 120px 0;
  background: #ffffff;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

/* CARD */
.why-card {
  position: relative;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-8px);
}

/* STEP NUMBER */
.step {
  font-size: 80px;
  font-weight: 800;
  color: #e0e0e0;
  display: block;
  margin-bottom: 20px;
}

/* TITLE */
.why-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0b2c3d;
  margin-bottom: 20px;
  position: relative;
}

.why-card h3::after {
  content: '';
  width: 0;
  height: 3px;
  background: #16a085;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.4s;
}

.why-card:hover h3::after {
  width: 60px;
}

/* TEXT */
.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .step {
    font-size: 60px;
  }
}

/* courses */
.course-section {
  padding: 100px 0;
  background: #ffffff;
}

/* GRID */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.course-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.course-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(22,160,133,0.25);
}

/* IMAGE */
.course-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.course-card:hover img {
  transform: scale(1.1);
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 6px;
  color: #fff;
}

.sales { background: #ff5b5b; }
.finance { background: #16a085; }

/* BOOKMARK */
.bookmark {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  font-size: 14px;
}

/* BODY */
.course-body {
  padding: 25px;
}

.course-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2c3d;
  margin: 10px 0 20px;
}

/* RATING */
.rating {
  font-size: 14px;
  color: #ffb703;
}

.rating span {
  color: #666;
}

/* FOOTER */
.course-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.price {
  color: #e63946;
  font-weight: 700;
}

.price del {
  color: #999;
  font-weight: 400;
  margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}

/* cards js */

.course-body {
  padding: 15px 10px;
}

.course-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0;
  color: #0b2c3d;
}

/* cart and seacrh */

/* NAV ICON BUTTONS */
.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  color: #333;
}

.icon-btn:hover {
  color: #16a085;
  transform: scale(1.1);
}

/* SEARCH POPUP */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-box {
  width: 95%;
  max-width: 550px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.popup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.search-results {
  margin-top: 15px;
  max-height: 280px;
  overflow-y: auto;
}

.search-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-item h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.search-item button {
  background: #16a085;
  border: none;
  padding: 6px 10px;
  color: white;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

.search-item button:hover {
  background: #138a72;
}

/* CART DRAWER */
.cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: none;
  justify-content: flex-end;
  z-index: 2500;
}

.cart-box {
  width: 95%;
  max-width: 380px;
  height: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: -20px 0 50px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin-top: 10px;
}

.cart-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.cart-item h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.cart-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.cart-footer {
  padding-top: 15px;
  border-top: 1px solid #eee;
}

body {
    background: linear-gradient(120deg, #fef6f8, #e8faf6);
}

.auth-wrap {
    padding: 70px 0;
}

.auth-card {
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}

.auth-left {
    padding: 40px;
    background: linear-gradient(135deg, rgba(22,160,133,0.12), rgba(11,44,61,0.08));
    height: 100%;
}

    .auth-left h2 {
        font-weight: 800;
        color: #0b2c3d;
        margin-bottom: 10px;
    }

    .auth-left p {
        color: #444;
        line-height: 1.7;
        font-size: 15px;
    }

.auth-right {
    padding: 40px;
}

.tab-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    border: none;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    background: rgba(0,0,0,0.06);
    color: #0b2c3d;
}

    .tab-btn.active {
        background: #16a085;
        color: #fff;
    }

.form-label {
    font-weight: 700;
    color: #0b2c3d;
}

.form-control {
    border-radius: 12px;
    padding: 12px 14px;
}

.input-group-text {
    border-radius: 12px;
    cursor: pointer;
    background: rgba(0,0,0,0.04);
}

.auth-submit {
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 12px;
    background: #16a085;
    color: #fff;
    font-weight: 800;
    margin-top: 10px;
}

.small-text {
    font-size: 14px;
    color: #444;
}

.success-msg {
    background: rgba(22,160,133,0.12);
    border: 1px solid rgba(22,160,133,0.35);
    color: #0b2c3d;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: none;
}

.error-msg {
    background: rgba(231,76,60,0.12);
    border: 1px solid rgba(231,76,60,0.35);
    color: #c0392b;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: none;
}
.page-wrap {
    padding: 80px 0;
}

.policy-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}

    .policy-card h1 {
        font-weight: 800;
        color: #0b2c3d;
        margin-bottom: 15px;
    }

    .policy-card h4 {
        font-weight: 700;
        margin-top: 25px;
        color: #16a085;
    }

    .policy-card p, .policy-card li {
        color: #444;
        line-height: 1.8;
        font-size: 15px;
    }

.policy-note {
    background: rgba(22,160,133,0.10);
    border: 1px solid rgba(22,160,133,0.25);
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    font-size: 14px;
}