/* ============================================
   PRIME SOFT — Light & Attractive Theme
   Clean Professional Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:opsz,wght@9..144,700;9..144,900&display=swap');

:root {
  --primary:   #1a56ff;
  --primary2:  #0ea5e9;
  --accent:    #ff6b2b;
  --green:     #10b981;
  --purple:    #7c3aed;
  --yellow:    #f59e0b;
  --bg:        #f0f4ff;
  --bg2:       #ffffff;
  --bg3:       #e8eeff;
  --text:      #0f1729;
  --text2:     #374151;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --card:      #ffffff;
  --shadow:    0 4px 24px rgba(26,86,255,0.10);
  --shadow2:   0 20px 60px rgba(26,86,255,0.15);
  --radius:    18px;
  --gradient:  linear-gradient(135deg, #1a56ff 0%, #0ea5e9 100%);
  --gradient2: linear-gradient(135deg, #ff6b2b 0%, #f59e0b 100%);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-block;
  background: rgba(26,86,255,0.1);
  color: var(--primary);
  border: 1px solid rgba(26,86,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.15;
}
.section-header p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26,86,255,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(26,86,255,0.4); }
.btn-primary.full-width { width: 100%; text-align: center; border-radius: 12px; padding: 16px; }

.btn-accent {
  display: inline-block;
  background: var(--gradient2);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s;
  box-shadow: 0 8px 24px rgba(255,107,43,0.3);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,107,43,0.4); }

.btn-ghost {
  display: inline-block;
  border: 2px solid var(--border);
  color: var(--text2);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s;
  background: white;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all .3s;
  background: white;
}
.btn-outline:hover { background: var(--primary); color: white; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,0);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  padding: 13px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner { display: flex; align-items: center; gap: 32px; }
.logo {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  color: var(--text);
}
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 28px; margin-right: auto; }
.nav-links a { text-decoration: none; color: var(--text2); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  background: white;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.shape-1 {
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,86,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.shape-2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,43,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.shape-3 {
  position: absolute;
  top: 40%; right: 10%;
  width: 80px; height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  opacity: 0.15;
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite;
}
.shape-4 {
  position: absolute;
  top: 20%; left: 15%;
  width: 50px; height: 50px;
  background: var(--gradient2);
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-20px) rotate(45deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text);
}

.hero-content p {
  color: var(--muted);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat span { color: var(--muted); font-size: 13px; font-weight: 500; margin-top: 4px; display: block; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-main {
  position: absolute;
  top: 20px; left: 0; right: 60px;
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(26,86,255,0.15);
  border: 1px solid rgba(26,86,255,0.1);
}
.hero-card-stats {
  position: absolute;
  bottom: 20px; right: 0; left: 60px;
  background: var(--gradient);
  border-radius: 20px;
  padding: 24px;
  color: white;
  box-shadow: 0 20px 50px rgba(26,86,255,0.35);
}
.mini-course {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mini-course:last-child { border: none; }
.mini-course-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mini-course-info { flex: 1; }
.mini-course-info strong { display: block; font-size: 14px; font-weight: 600; }
.mini-course-info span { font-size: 12px; color: var(--muted); }
.mini-course-fee { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ADMISSION CTA BANNER */
.admission-banner {
  margin: 0;
  padding: 60px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.admission-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.admission-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.admission-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}
.admission-banner p { color: rgba(255,255,255,0.85); font-size: 16px; }
.btn-white {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all .3s;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }

/* COURSES SECTION */
.courses-section { padding: 100px 0; background: var(--bg); }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.course-card-new {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border);
  position: relative;
}
.course-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow2);
  border-color: rgba(26,86,255,0.2);
}
.course-top {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}
.course-top::after {
  content: '';
  position: absolute;
  right: -20px; bottom: -20px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.course-emoji { font-size: 2.8rem; }
.course-duration-pill {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.course-body-new { padding: 22px; }
.course-cat-new {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  margin-bottom: 6px;
}
.course-body-new h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.course-body-new p { color: var(--muted); font-size: 13px; margin-bottom: 16px; line-height: 1.6; }
.course-footer-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.course-fee-new { }
.fee-label-new { font-size: 11px; color: var(--muted); }
.fee-amt-new { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 900; color: var(--primary); }
.enroll-btn {
  background: rgba(26,86,255,0.08);
  color: var(--primary);
  border: 1px solid rgba(26,86,255,0.2);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.enroll-btn:hover { background: var(--primary); color: white; }

/* SERVICES SECTION */
.services-section { padding: 100px 0; background: white; }
.services-grid-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.service-card-new {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.service-card-new:hover { background: white; box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(26,86,255,0.15); }
.service-card-new:hover::before { transform: scaleX(1); }
.service-icon-new {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(26,86,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: all .3s;
}
.service-card-new:hover .service-icon-new { background: var(--gradient); }
.service-card-new h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card-new p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ABOUT SECTION */
.about-section { padding: 100px 0; background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-area { position: relative; }
.about-main-box {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow2);
  border: 1px solid var(--border);
}
.about-main-box h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 900; color: var(--text); margin-bottom: 12px; }
.about-main-box p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.about-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gradient);
  color: white;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 40px rgba(26,86,255,0.35);
  min-width: 180px;
}
.about-float-card .num { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 900; display: block; }
.about-float-card span { font-size: 14px; opacity: 0.9; }
.about-text-area h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; margin-bottom: 18px; line-height: 1.2; }
.about-text-area p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.feat-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text2); }
.feat-item .check { width: 22px; height: 22px; background: rgba(16,185,129,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--green); flex-shrink: 0; }

/* CONTACT */
.contact-section { padding: 100px 0; background: white; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 36px; font-size: 15px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.c-detail { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px;
  background: rgba(26,86,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.c-detail strong { display: block; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.c-detail p { color: var(--muted); font-size: 14px; margin: 0; }

.contact-form-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,86,255,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #059669;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* FOOTER */
.footer { background: var(--text); color: white; padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; margin: 14px 0 22px; max-width: 280px; line-height: 1.7; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 900; }
.footer-logo span { color: var(--primary2); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  transition: all .2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.footer-links h4 { font-weight: 700; margin-bottom: 18px; font-size: 14px; color: white; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links ul li a:hover { color: white; }
.footer-links ul li span { color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .admission-banner-inner { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .about-float-card { position: relative; bottom: auto; right: auto; margin-top: 16px; }
}
