/* Yogsanskriti — Design System (logo blue + green) */
:root {
  --brand-blue: #1B4F8F;
  --brand-blue-dark: #133D72;
  --brand-blue-light: #2E7DCB;
  --brand-blue-50: #E8F1FB;
  --brand-green: #4CB050;
  --brand-green-dark: #3B8E3F;
  --brand-green-light: #7BC97F;
  --brand-green-50: #EDF8EE;
  --ink-900: #0F1B2D;
  --ink-700: #2A3B55;
  --ink-500: #5B6B82;
  --ink-300: #9DA9BB;
  --ink-100: #E2E8F0;
  --bg: #F7FAFC;
  --bg-soft: #FFFFFF;
  --bg-tinted: #F1F6FB;
  --gold: #E2A93A;
  --shadow-sm: 0 2px 6px rgba(15, 27, 45, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 27, 45, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 27, 45, 0.12);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --font-serif: "Lato", sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-blue-dark); }

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink-900); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { color: var(--ink-700); }

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-tinted { background: var(--bg-tinted); }
.section-dark { background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.85); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  margin-bottom: .8rem;
}
.section-dark .eyebrow { color: var(--brand-green-light); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { margin-top: .8rem; font-size: 1.05rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: var(--radius-pill); font-weight: 600; font-size: .95rem; cursor: pointer; border: 2px solid transparent; transition: all .2s ease; text-align: center; line-height: 1; }
.btn-primary { background: var(--brand-blue); color: #fff; }
.btn-primary:hover { background: var(--brand-blue-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--brand-green); color: #fff; }
.btn-secondary:hover { background: var(--brand-green-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--brand-blue); border-color: var(--brand-blue); }
.btn-outline:hover { background: var(--brand-blue); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: #fff; color: var(--brand-blue); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }

/* Header / Nav */
.site-header { background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 rgba(15,27,45,0.05); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }
.nav-brand { display: flex; align-items: center; gap: .65rem; }
.nav-brand img { height: 52px; width: auto; }
.nav-brand .brand-text { display: none; }
.nav-links { display: flex; gap: 2.25rem; align-items: center; list-style: none; }
.nav-links a { border-radius: var(--radius-sm); color: var(--ink-700); font-weight: 500; font-size: .94rem; }
.nav-links a {position: relative;color: inherit;text-decoration: none;}

/* underline element */
.nav-links a::after {content: "";position: absolute;left: 0;bottom: -7px;width: 0%;height: 2px;background-color: var(--brand-blue);transition: width 0.3s ease;}

/* hover & active state */
.nav-links a:hover::after,
.nav-links a.active::after {width: 100%;}

.nav-cta { display: flex; gap: .5rem; align-items: center; }
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; color: var(--brand-blue); padding: .5rem; }
@media (max-width: 960px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-apply { display: inline-flex; }
  .nav.open .nav-links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem; box-shadow: var(--shadow-lg); gap: .25rem; }
  .nav.open .nav-links a { width: 100%; padding: .85rem 1rem; }
}

/* Hero */
.hero { position: relative; padding: clamp(4rem, 0vw, 7rem) 0 clamp(3rem, 7vw, 6rem); background: linear-gradient(120deg, #EAF1FB 0%, #F5FBF6 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(76,176,80,0.18), transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(27,79,143,0.15), transparent 70%); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--brand-blue); display: block; }
.hero h1 .accent-green { color: var(--brand-green-dark); }
.hero p.lead { font-size: 1.15rem; color: var(--ink-500); margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(15,27,45,0.08); }
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .num { font-family: var(--font-serif); font-size: 1.6rem; color: var(--brand-blue); font-weight: 700; }
.hero-trust .lbl { font-size: .85rem; color: var(--ink-500); }
.hero-visual { position: relative; }
.hero-visual .image-card { position: relative; aspect-ratio: 4 / 3.5; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-visual .image-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .floating-badge { position: absolute; padding: 1rem 1.25rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .8rem; }
.hero-visual .floating-badge.tl { top: 18px; left: -18px; }
.hero-visual .floating-badge.br { bottom: 24px; right: -18px; }
.hero-visual .floating-badge .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--brand-green-50); display: grid; place-items: center; color: var(--brand-green-dark); font-size: 1.1rem; }
.hero-visual .floating-badge .label { font-size: .78rem; color: var(--ink-500); text-transform: uppercase; letter-spacing: .08em; }
.hero-visual .floating-badge .value { font-weight: 700; color: var(--ink-900); font-size: .95rem; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
}

/* Stats strip */
.stats-strip { padding: 2rem 0; background: var(--brand-blue); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.stats-grid .stat { text-align: center; padding: .6rem; border-right: 1px solid rgba(255,255,255,0.18); }
.stats-grid .stat:last-child { border-right: 0; }
.stats-grid .stat .num { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1; }
.stats-grid .stat .lbl { margin-top: .4rem; font-size: .9rem; color: rgba(255,255,255,0.8); }

/* Card grids */
.cards { display: grid; gap: 1.5rem; }
.cards.cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards.cols-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cards.cols-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card { background: var(--bg-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .card-image { aspect-ratio: 16 / 10; background: var(--ink-100); overflow: hidden; }
.card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-image img { transform: scale(1.04); }
.card .card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card .card-tag { display: inline-block; padding: .25rem .65rem; background: var(--brand-green-50); color: var(--brand-green-dark); border-radius: var(--radius-pill); font-size: .75rem; font-weight: 600; margin-bottom: .8rem; align-self: flex-start; text-transform: uppercase; letter-spacing: .05em; }
.card .card-tag.blue { background: var(--brand-blue-50); color: var(--brand-blue); }
.card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.card .card-meta { display: flex; gap: 1rem; font-size: .82rem; color: var(--ink-500); margin-top: .4rem; }
.card .card-foot { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--ink-100); display: flex; justify-content: space-between; align-items: center; }
.card .price { font-family: var(--font-serif); font-size: 1.3rem; color: var(--brand-blue); font-weight: 700; }
.card .arrow-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--brand-blue); font-weight: 600; font-size: .9rem; }
.card .arrow-link:hover { gap: .55rem; }

/* Service cards (icon-led) */
.service-card { background: var(--bg-soft); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow-sm); transition: all .25s ease; border: 1px solid transparent; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-blue-50); }
.service-card .icon {width:100px;height: 100px; padding: 20px; border-radius: 18px; background: linear-gradient(135deg, var(--brand-blue-50), var(--brand-green-50)); display: grid; place-items: center; margin: 0 auto 1.2rem; color: var(--brand-blue); font-size: 1.6rem; }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { font-size: .95rem; color: var(--ink-500); }
/* .service-card .icon img{} */

/* Director cards */
.director-card {display: flex; background: var(--bg-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.director-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.director-card .photo {height:100%; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-100);width:300px; }
.director-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.director-card .info img { width: 100%; height: 370px; object-fit: cover;border-radius: var(--radius); }
.director-card .info { padding: 1.4rem;    width: 800px; }
.director-card .info h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.director-card .role { color: var(--brand-green-dark); font-weight: 600; font-size: .9rem; margin-bottom: .8rem; }
.director-card .bio { font-size: .9rem; color: var(--ink-500); }
.director-card .counseller-bio{overflow: auto;height: 260px;}
.director-card .director-bio{overflow: auto;height: 260px;}



/* Testimonials */
.testimonial-card { background: var(--bg-soft); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); position: relative; }
.testimonial-card .quote-icon { position: absolute; top: -16px; left: 24px; width: 40px; height: 40px; border-radius: 50%; background: var(--brand-blue); color: #fff; display: grid; place-items: center; font-size: 1.4rem; font-family: var(--font-serif); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card .text { font-style: italic; color: var(--ink-700); margin-bottom: 1.2rem; line-height: 1.7; }
.testimonial-card .person { display: flex; align-items: center; gap: .8rem; }
.testimonial-card .person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-card .person .name { font-weight: 700; color: var(--ink-900); font-size: .95rem; }
.testimonial-card .person .role { font-size: .82rem; color: var(--ink-500); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery-item { aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.7)); font-size: .85rem; opacity: 0; transition: opacity .25s; }
.gallery-item:hover .caption { opacity: 1; }

/* News */
.news-item { display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--ink-100); }
.news-item:last-child { border-bottom: 0; }
.news-item .thumb { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--ink-100); }
.news-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-item h3 { margin-bottom: .5rem; }
.news-item .meta { display: flex; gap: 1rem; font-size: .82rem; color: var(--ink-500); margin-bottom: .6rem; }
.news-item p { color: var(--ink-500); margin-bottom: .8rem; }
@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; }
}

/* Forms */
.form-card { background: var(--bg-soft); padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink-700); margin-bottom: .4rem; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--ink-100); border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit; color: var(--ink-900); background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(27,79,143,0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.flash { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .92rem; font-weight: 500; }
.flash.success { background: var(--brand-green-50); color: var(--brand-green-dark); border-left: 4px solid var(--brand-green); }
.flash.error { background: #FDECEC; color: #B11C1C; border-left: 4px solid #D93B3B; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--radius); margin-bottom: .75rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { padding: 1.2rem 1.4rem; font-weight: 600; color: var(--ink-900); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--brand-blue); transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 1.4rem 1.2rem; color: var(--ink-500); font-size: .95rem; }

/* Footer */
.site-footer { background: #0F1B2D; color: rgba(255,255,255,0.75); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 760px) {.nav-links a::after {content: "";position: absolute;left: 0;bottom: -7px;width: 0%;height: 0px;background-color: var(--brand-blue);transition: width 0.3s ease;}
 .footer-grid { grid-template-columns: 1fr 1fr; } .director-card .photo {height: auto; } .director-card{display: flex;flex-wrap: wrap;}}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: 1rem; margin-bottom: 1rem; font-weight: 700; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255,255,255,0.75); font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 56px; background: #fff; padding: .4rem; border-radius: 8px; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,0.7); }
.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: rgba(255,255,255,0.75); }
.footer-contact li .ic { color: var(--brand-green-light); margin-top: 2px; }
.socials { display: flex; gap: .5rem; margin-top: 1rem; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; font-size: .9rem; transition: background .2s; }
.socials a:hover { background: var(--brand-blue); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: rgba(255,255,255,0.6); }

/* Hero CTA strip */
.cta-strip { background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green-dark) 100%); padding: 3.5rem 0; color: #fff; }
.cta-strip .inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; margin-bottom: .5rem; }
.cta-strip p { color: rgba(255,255,255,0.9); }

/* Page header (interior pages) */
.page-head { background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%); color: #fff; padding: 40px; text-align: center; position: relative; overflow: hidden; }
.page-head::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(76,176,80,0.25), transparent 70%); }
.page-head h1 { color: #fff; margin-bottom: .8rem; }
.page-head p { color: rgba(255,255,255,0.9); max-width: 680px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumbs { display: inline-flex; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: #fff; }

/* Content typography */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; color: var(--ink-700); }
.prose h2, .prose h3 { margin-top: 2rem; margin-bottom: .8rem; }
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
.prose li { margin-bottom: .4rem; }

/* Two column layout */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-chip { padding: .55rem 1.1rem; border-radius: var(--radius-pill); background: #fff; color: var(--ink-700); border: 1.5px solid var(--ink-100); font-weight: 500; font-size: .9rem; cursor: pointer; transition: all .2s; }
.filter-chip:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.filter-chip.active { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }

/* Detail page */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; }
@media (max-width: 880px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-hero-img { aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 2rem; }
.detail-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-card { background: #fff; padding: 1.6rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); top: 100px; }
.sidebar-card h4 { margin-bottom: 1rem; }
.spec-list { list-style: none; padding: 0; }
.spec-list li { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--ink-100); font-size: .9rem; }
.spec-list li:last-child { border-bottom: 0; }
.spec-list .label { color: var(--ink-500); }
.spec-list .value { font-weight: 600; color: var(--ink-900); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Empty state */
.empty { text-align: center; padding: 3rem 1rem; color: var(--ink-500); }
.empty .icon { font-size: 2.5rem; margin-bottom: .8rem; opacity: .5; }



/*===============home page css new section==========*/
.feature-wrapper-concept{display:flex;background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 0 20px rgba(0,0,0,.04);}
.feature-card{flex: 1;display: flex;gap: 20px;padding: 25px;border-right: 1px solid #e5e7eb;box-sizing: border-box;}
.feature-card:last-child{border-right:none;}
.icon-box{width:60px;height:60px;font-size:30px;}
.feature-card h3{font-size:20px;font-weight:700;color:#000;margin-bottom:15px;}
.feature-card p{font-size:16px;color:#202020;}

@media (max-width:991px){
.feature-wrapper-concept{flex-wrap:wrap;}
.feature-card{width:50%;flex:none;min-height:auto;border-right:none;border-bottom:1px solid #e5e7eb;}
.feature-card:last-child{width:100%;border-bottom:none;}}

@media (max-width:576px){
.feature-wrapper-concept{display:block;}
.feature-card{width:100%;padding:25px;border-bottom:1px solid #e5e7eb;}
.feature-card:last-child{border-bottom:none;}
.feature-card h3{font-size:24px;}
.feature-card p{font-size:16px;line-height:1.7;}}

/*===============================next section==================*/
.tech-courese-container{position:relative;}
.tech-courses-wrapper{overflow:hidden;}
.tech-courses-concept{display:flex;gap:20px;padding:20px 0px;overflow-x:auto;overflow-y:visible;scroll-behavior:smooth;scrollbar-width:none;}
.tech-courses-concept::-webkit-scrollbar{display:none;}
.tech-courses-wrapper .tech-courses-card{flex:0 0 calc(25% - 15px);min-width:280px;padding:20px;box-sizing:border-box;position:relative;background:#f7f8fa;border:1px solid #e2e8f0;border-radius:12px;transition:all .4s ease;}
.tech-courses-card:hover{transform:translateY(-6px);box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;background:#fff;border-color:rgba(59,142,63,.25);}
.tech-courses-card::after{content:"";position:absolute;left:0;bottom:0;width:0;height:3px;background:#3b8e3f;transition:width .5s ease;border-radius:10px 10px 0 0;}
.tech-courses-card:hover::after{width:100%;}
.icon-box{margin-bottom:20px;font-size:28px;}
.tech-courses-card h3{font-size:18px;font-weight:700;margin-bottom:15px;}
.tech-courses-card p{font-size:15px;line-height:1.6;margin-bottom:20px;color:#333;}
.tech-courses-card{display:flex;flex-direction:column;}
.tech-courses-card .content{display:flex;flex-direction:column;flex:1;}
.card-link{margin-top:auto;display:inline-block;}
.card-link{color:#3b8e3f;font-weight:600;text-decoration:none;transition:.3s;}
.card-link:hover{transform:translateX(5px);}
.tech-nav{position:absolute;top:65%;transform:translateY(-50%);width:45px;height:45px;border:none;border-radius:50%;background:#fff;box-shadow:0 4px 15px rgba(0,0,0,.15);cursor:pointer;z-index:10;font-size:22px;font-weight:700;transition:.3s;}
.tech-nav:hover{background:#3b8e3f;color:#fff;}
.tech-prev{ left:-10px; }
.tech-next{ right:-10px; }

@media(max-width:991px){
.tech-courses-wrapper .tech-courses-card{flex:0 0 320px;}
.tech-nav{width:40px;height:40px;font-size:18px;}}

@media(max-width:576px){
.tech-courses-concept{padding:15px 10px;}
.tech-courses-wrapper .tech-courses-card{flex:0 0 85%;}
.tech-prev{ left:0; }
.tech-next{ right:0; }}

/*==========================================*/

.signature-program-concept{display:flex;gap:20px;padding:20px;}
.signature-program-concept .signature-program-card{flex:1;padding:22px;border-radius:14px;transition:0.4s ease;position:relative;overflow:hidden;}
.signature-program-concept .card-1{background:#1a3c5e;color:#fff;}
.signature-program-concept .card-2{background:#e6f5ef;color:#1f2937;border:1px solid #e5e7eb;}
.signature-program-concept .card-3{background:#fef0e7;color:#1f2937;}
.signature-program-concept .signature-program-card:hover{transform:translateY(-8px);box-shadow:0 12px 30px rgba(0,0,0,0.12);}
.signature-program-concept .top-badge{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:600;padding:8px 14px;border-radius:30px;margin-bottom:18px;}
.signature-program-concept .card-1 .top-badge{background:rgba(255,255,255,0.12);color:#fff;border:1px solid rgba(255,255,255,0.15);}
.signature-program-concept .card-2 .top-badge{background:#eef2ff;color:#4f46e5;}
.signature-program-concept .card-3 .top-badge{background:#fff3e8;color:#ea580c;}
.signature-program-concept .blink-dot{width:8px;height:8px;border-radius:50%;animation:spBlink 1.2s infinite;}
.signature-program-concept .card-1 .blink-dot{background:#4ade80;box-shadow:0 0 10px #4ade80;}
.signature-program-concept .card-2 .blink-dot{background:#4f46e5;box-shadow:0 0 10px #4f46e5;}
.signature-program-concept .card-3 .blink-dot{background:#ea580c;box-shadow:0 0 10px #ea580c;}

@keyframes spBlink{
0%,100%{opacity:1;transform:scale(1);}
50%{opacity:.35;transform:scale(1.35);}}

.signature-program-concept .signature-program-card h3{font-size:22px;font-weight:700;line-height:1.35;margin-bottom:15px;}

.signature-program-concept .card-1 h3,
.signature-program-concept .card-1 p,
.signature-program-concept .card-1 .card-list li{color:#fff;}

.signature-program-concept .card-2 h3,
.signature-program-concept .card-3 h3{color:#111827;}

.signature-program-concept .card-2 p,
.signature-program-concept .card-3 p,
.signature-program-concept .card-2 .card-list li,
.signature-program-concept .card-3 .card-list li{color:#4b5563;}

.signature-program-concept .signature-program-card p{font-size:15px;line-height:1.8;margin-bottom:18px;}

.signature-program-concept .card-list{padding-left:18px;margin:18px 0 22px;}

.signature-program-concept .card-list li{margin-bottom:10px;font-size:14px;line-height:1.6;}

.signature-program-concept .card-link{display:inline-flex;align-items:center;gap:6px;text-decoration:none;font-weight:700;font-size:15px;transition:all .3s ease;}

.signature-program-concept .card-1 .card-link{color:#4ade80;}

.signature-program-concept .card-2 .card-link{color:#4f46e5;}

.signature-program-concept .card-3 .card-link{color:#ea580c;}

.signature-program-concept .card-link:hover{transform:translateX(6px);}

@media(max-width:991px){
.signature-program-concept{flex-direction:column;padding:10px;}
.signature-program-concept .signature-program-card{width:100%;}
.signature-program-concept .signature-program-card h3{font-size:20px;}}
