:root {
    --primary-color: #1e293b;
    --accent-color: #41535a;
    --text-main: #334155;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --bg:#eaf0fb;
    --ink:#1f2a44;
    --muted:#5f6f86;
    --card:#ffffff;
    --line:#e6ebf4;
    --accent:#4A5E7A;
    --pill:#eef3fb;
    --radius:14px;
    --shadow:0 8px 28px rgba(16,24,40,.08);
  }



/*-----------------------Navigation------------*/

/* Navbar Base */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px); /* Modern blur effect */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-color);
}
.logo span {
    color: var(--accent-color);
    font-weight: 400;
}

/* Menu Items */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Dropdown Logic */
.has-sub { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.has-sub:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
}

.dropdown li a:hover {
    background: #f8fafc;
    color: var(--accent-color);
}

/* CTA Button */
.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.nav-cta:hover {
    transform: scale(1.05);
}

/* Mobile Toggle (Hidden on Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Responsive Tablet/Mobile */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 80%;
        height: calc(100vh - 70px);
        padding: 40px;
        transition: 0.4s;
        box-shadow: -10px 0 20px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        display: none; /* Toggle with JS for mobile */
        padding-left: 20px;
    }
}


/*--------------Footer---------------*/
/* Footer Container */
.main-footer {
  background-color: #f8fafc;
  padding: 80px 0 30px;
  border-top: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
  color: #333c49;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Typography & Links */
.footer-column h4 {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #64748b;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

/* Brand Section */
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #1e293b;
  display: block;
  margin-bottom: 15px;
}

.footer-logo span { color: #1c2533; font-weight: 400; }

/* Newsletter Form */
.footer-form {
  display: flex;
  margin-top: 15px;
}

.footer-form input {
  padding: 10px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 6px 0 0 6px;
  outline: none;
  width: 100%;
}

.footer-form button {
  background: #1e293b;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* SDG Section (The colorful part from your image) */
.sdg-section {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
}

.sdg-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 20px;
}

.sdg-icon-row {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.sdg-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.sdg-icon-box:hover { transform: scale(1.1); }

.sdg-icon-box.blue   { background-color: #00add8; }
.sdg-icon-box.orange { background-color: #f39200; }
.sdg-icon-box.red    { background-color: #e5243b; }
.sdg-icon-box.green  { background-color: #4c9f38; }

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-form { justify-content: center; }
  .sdg-icon-row { flex-wrap: wrap; }
}















/*-------Home(Index)----------------------*/

/* 1. Global Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.movina-impact {
  padding: 80px 0;
}

/* 2. Header & Logo Styling */
.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.logo-container {
  margin-bottom: 20px;
}

.site-logo {
  height: 60px; /* Adjust height based on your logo shape */
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 10px;
}

.tagline {
  font-size: clamp(2rem, 5vw, 3.2rem); /* Fluid typography for screen sizes */
  color: #1e293b;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* 3. Button CTA Styles */
.cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
}

.btn-primary {
  background-color: #1e293b;
  color: white;
  border: 2px solid #1e293b;
}

.btn-primary:hover {
  background-color: #334155;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #1e293b;
  border: 2px solid #cbd5e1;
}

.btn-secondary:hover {
  background-color: #f8fafc;
  border-color: #1e293b;
}

/* 4. Grid & Card Styling */
.values-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.value-card {
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: #475569;
}

/* 5. Minimalist Colors */
.color-teal   { background-color: #f0fdfa; }
.color-green  { background-color: #f0fdf4; }
.color-orange { background-color: #fffaf0; }
.color-sage   { background-color: #f7fee7; }
.color-purple { background-color: #faf5ff; }
.color-gold   { background-color: #fefce8; }

/* 6. Footer & SDGs */
.sdg-footer {
  margin-top: 80px;
  padding-top: 40px;
  text-align: center;
  border-top: 1px solid #f1f5f9;
}

.sdg-footer p {
  font-size: 0.9rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sdg-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.sdg-dot { width: 10px; height: 10px; border-radius: 50%; }
.blue { background: #00add8; }
.orange { background: #f39200; }
.red { background: #e5243b; }
.green { background: #4c9f38; }

/* 7. Mobile Adjustments */
@media (max-width: 600px) {
  .movina-impact { padding: 50px 0; }
  .cta-group { flex-direction: column; }
  .btn { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
}









/*-------resources----------------------*/

  *{ box-sizing:border-box }
  body{
    margin:0;
    font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background: var(--bg);
    color:var(--muted);
    line-height:1.65;
  }

  /* Shell */
  .wrap{ width:min(1100px, 92vw); margin-inline:auto }

  .resources{
    padding: clamp(28px, 6vw, 68px) 0;
  }
  .resources header{
    text-align:center;
    margin-bottom: clamp(14px, 3vw, 24px);
  }
  .resources h1{
    margin:.25rem 0 .35rem;
    color:var(--ink);
    font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  }
  .resources .lead{
    margin:0;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
  }

  /* Tabs (radio-powered) */
  .tabs{
    margin: clamp(18px, 3.5vw, 26px) auto;
    width: min(560px, 100%);
    background: rgba(255,255,255,.35);
    border:1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    display:grid;
    grid-auto-flow: column;
    gap: 6px;
  }
  .tabs input{ position:absolute; opacity:0; pointer-events:none }
  .tab{
    display:block;
    text-align:center;
    padding:10px 14px;
    border-radius: 999px;
    background: var(--pill);
    color:var(--muted);
    font-weight:700;
    cursor:pointer;
    user-select:none;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  }

  /* Active styles (one per radio) */
  #tab-books:checked ~ .labels label[for="tab-books"],
  #tab-courses:checked ~ .labels label[for="tab-courses"],
  #tab-podcasts:checked ~ .labels label[for="tab-podcasts"],
  #tab-club:checked ~ .labels label[for="tab-club"]{
    background:#fff;
    color:var(--ink);
    box-shadow: var(--shadow);
  }

  /* Panels */
  .panels{ margin-top: clamp(16px, 2.5vw, 24px); }
  .panel{ display:none; }
  #tab-books:checked ~ .panels #panel-books{ display:block }
  #tab-courses:checked ~ .panels #panel-courses{ display:block }
  #tab-podcasts:checked ~ .panels #panel-podcasts{ display:block }
  #tab-club:checked ~ .panels #panel-club{ display:block }

  /* Cards */
  .card-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(12px, 2.2vw, 20px);
  }
  .card{
    background: var(--card);
    border:1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    display:grid;
    grid-template-columns: auto 1fr;
    gap: 12px 14px;
    align-items:start;
  }
  .icon{
    width:40px; height:40px; border-radius:10px;
    background: #eef3ff; display:grid; place-items:center;
    color: var(--accent); font-size:20px;
  }
  .card h3{
    grid-column: 2 / -1;
    margin: 2px 0 0;
    color: var(--ink);
    font-size: 1.1rem;
    line-height:1.25;
  }
  .card p{
    grid-column: 2 / -1;
    margin:.35rem 0 .75rem;
  }
  .cta{
    grid-column: 2 / -1;
    background: #eef3ff;
    color: var(--ink);
    border:1px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px;
    display:inline-flex; align-items:center; justify-content:center;
    gap:.45rem; text-decoration:none; font-weight:700;
  }
  .cta::after{ content:"↗"; font-size: 1rem; transform: translateY(-1px) }
  .cta:hover{ filter: brightness(1.03) }

  /* Mobile tweaks */
  @media (max-width:600px){
    .tabs{ grid-auto-flow: row; border-radius: 14px }
    .tab{ border-radius: 10px }
  }





/*-------------Podcast Section---------------*/

/* Podcast Hero Area */
.podcast-section-main { padding: 80px 0; background-color: #fff; }

.podcast-hero-container {
    background-color: #f8fafc; /* Soft background tint */
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 0 0 50px 50px;
}

.podcast-flex {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.podcast-image-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.podcast-content-area h2 {
    font-size: 2.8rem;
    color: var(--blue-darker);
    margin: 15px 0;
}

.podcast-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Platform Badges */
.platform-badges { display: flex; gap: 15px; margin-top: 15px; }

.platform-link {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.platform-link.spotify { background: #1DB954; color: white; }
.platform-link.apple { background: #000; color: white; }
.platform-link:hover { transform: translateY(-3px); opacity: 0.9; }

/* Episode Grid */
.section-subheader { text-align: center; margin-bottom: 40px; }
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.episode-item iframe {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 968px) {
    .podcast-flex { grid-template-columns: 1fr; text-align: center; }
    .platform-badges { justify-content: center; }
    .podcast-image-wrapper { max-width: 400px; margin: 0 auto; }
}






/*-------------Blog Landing Starts----------*/

/* Blog Landing Page Base */
.blog-landing {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-landing-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Filter & Search Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: white;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--brand-dark);
    color: white;
    border-color: var(--brand-dark);
}

.search-box {
    position: relative;
    margin-left: 20px;
}

.search-box input {
    padding: 10px 40px 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
}

/* Featured Section */
.featured-trending {
    margin-bottom: 80px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.featured-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.trending-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ef4444;
}

.featured-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-text h2 { font-size: 2.2rem; margin: 15px 0; color: var(--brand-dark); }

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.mini-avatar { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; }

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.topic-card {
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.topic-icon { font-size: 2.5rem; margin-bottom: 20px; }
.topic-card h3 { margin: 15px 0; font-size: 1.2rem; color: var(--brand-dark); }
.topic-card p { font-size: 0.95rem; color: var(--text-main); margin-bottom: 25px; flex-grow: 1; }

.read-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 0.9rem;
}

/* Load More */
.load-more { text-align: center; margin-top: 60px; }

/* Mobile Adjustments */
@media (max-width: 968px) {
    .featured-card { grid-template-columns: 1fr; }
    .featured-text { padding: 40px 30px; }
    .featured-image { min-height: 250px; }
}



















/*-------------Blog Home Starts----------*/
:root {
    --brand-dark: #1e293b;
    --brand-accent: #3b82f6;
    --text-main: #475569;
    --bg-light: #ffffff;
    --card-bg: #f8fafc;
    --border-color: #e2e8f0;
    --radius-lg: 24px;
}

/* Page Layout */
.page.blog-single {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    position: relative;
}

/* Content Area */
main.content {
    flex: 1;
    max-width: 760px;
}

.blog-header {
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.blog-header h1 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; color: #94a3b8; }
.blog-header p { font-size: 1.8rem; font-weight: 800; color: var(--brand-dark); line-height: 1.2; }

/* Article Body */
.category-pill { color: var(--brand-accent); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.article-meta-header h2 { font-size: 2.5rem; margin: 10px 0; color: var(--brand-dark); }
.author-meta { color: #94a3b8; font-style: italic; margin-bottom: 30px; }

.article-body h3 { margin: 40px 0 15px; color: var(--brand-dark); }
.article-body p { margin-bottom: 20px; line-height: 1.8; color: var(--text-main); font-size: 1.1rem; }

/* Highlight Box (Minimalist version of your Benefits section) */
.highlight-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.clean-list { list-style: none; padding: 0; }
.clean-list li { margin-bottom: 12px; padding-left: 25px; position: relative; }
.clean-list li::before { content: "•"; color: var(--brand-accent); position: absolute; left: 0; font-weight: bold; }

/* Ordered Practices */
.ordered-practices { padding-left: 20px; }
.ordered-practices li { margin-bottom: 20px; padding-left: 10px; font-weight: 500; }

/* Sidebar (Desktop Fixed) */
aside.sidebar {
    width: 300px;
    height: fit-content;
    position: sticky;
    top: 100px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
}

.sidebar h4 { font-size: 0.9rem; text-transform: uppercase; margin-bottom: 20px; border-bottom: 2px solid var(--brand-accent); display: inline-block; }

.apa-list { list-style: none; padding: 0; font-size: 0.85rem; color: #64748b; }
.apa-list li { margin-bottom: 15px; line-height: 1.5; }

/* Pager Buttons */
.pager { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--border-color); }
.btn-pager { 
    text-decoration: none; padding: 12px 25px; border-radius: 50px; 
    border: 1px solid var(--border-color); color: var(--brand-dark); 
    font-weight: 600; transition: all 0.2s;
}
.btn-pager:hover { background: var(--brand-dark); color: white; }

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .page.blog-single { flex-direction: column; }
    aside.sidebar { position: relative; top: 0; width: 100%; order: 2; }
    main.content { order: 1; }
}


/*-----------------Courses Page-------------------*/

/* Registration Section */
.registration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #dfded9 0%, #ffffff 100%); /* Subtle teal gradient */
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.reg-promo h2 {
    font-size: 3rem;
    color: var(--brand-dark);
    line-height: 1.1;
    margin: 15px 0;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: 500;
}

.promo-bullets {
    list-style: none;
    padding: 20px 0;
}

.promo-bullets li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-weight: 600;
    color: var(--brand-dark);
}

.promo-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-accent);
}

.hashtag-cloud {
    margin-top: 30px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
}

.hashtag-cloud span { margin-right: 15px; }

/* Right Form Card */
.reg-form-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.modern-form h3 { font-size: 1.8rem; color: var(--brand-dark); margin-bottom: 8px; }
.modern-form p { color: #64748b; margin-bottom: 30px; }

.input-group { margin-bottom: 20px; }
.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.btn-submit {
    width: 100%;
    background: var(--brand-dark);
    color: white;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--brand-accent);
    transform: translateY(-2px);
}

.payment-direct {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .reg-grid { grid-template-columns: 1fr; gap: 50px; }
    .reg-promo { text-align: center; }
    .reg-form-card { padding: 30px; }
}




/* -------------Courses Grid------------- */
.courses-section{
  margin-top: 100px;
  margin-bottom: 100px;

}




.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 100px;
}

.course-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text-main);
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.course-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.course-icon.blue { background: #f0fdfa; }
.course-icon.yellow { background: #fefce8; }
.course-icon.purple { background: #faf5ff; }

.read-more-btn {
    background: none;
    border: none;
    color: var(--blue-darker);
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    padding: 0;
    transition: color 0.2s;
}

.read-more-btn:hover { color: var(--bright-yellow); }

/* Modal/Popup Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 30px;
    max-width: 550px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal-divider {
    width: 50px;
    height: 3px;
    background: var(--bright-yellow);
    margin: 20px auto;
}

.btn-pay {
    display: inline-block;
    margin-top: 30px;
    background: var(--blue-darker);
    color: rgb(73, 71, 71);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-pay:hover {
    background: var(--bright-yellow);
    color: var(--blue-darker);
    transform: scale(1.05);
}

.close-modal {
    position: absolute;
    top: 25px; right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
}

















/*-----------Contact Up Page------------------------*/
/* Contact Page Base */
.contact-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

/* Left Sidebar Styling */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Pastel Icon Backgrounds */
.info-icon.teal { background-color: #f0fdfa; }
.info-icon.purple { background-color: #faf5ff; }
.info-icon.gold { background-color: #fefce8; }

.info-text h4 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 2px;
}

.info-text p { color: var(--text-main); font-size: 0.95rem; }

.social-box {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* Right Form Card Styling */
.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    resize: none;
}

/* Responsive Scaling */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2; /* Move info below form on mobile */
        text-align: center;
    }
    
    .info-item { justify-content: center; }
    
    .input-row { grid-template-columns: 1fr; }
}




/*---------About Page-------------*/
/* About Hero */
.about-hero {
    padding: 100px 0 60px;
    text-align: center;
    background-color: #ffffff;
}

/* Vision & Mission Overlap */
.vision-mission {
    padding-bottom: 80px;
}

.vm-wrapper {
    display: flex;
    gap: 0; /* Cards will overlap or touch */
    justify-content: center;
    flex-wrap: wrap;
}

.vm-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 60px 40px;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.vm-card.vision {
    background-color: var(--brand-dark);
    color: white;
    z-index: 2;
}

.vm-card.mission {
    background-color: var(--card-bg);
    margin-left: -30px; /* Overlap on desktop */
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

/* Principles */
.principles {
    padding: 100px 0;
    background: #fafafa;
}

.principles-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.p-item {
    position: relative;
    padding-top: 30px;
}

.p-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.1);
    position: absolute;
    top: -10px;
    left: 0;
}

.p-item h4 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    padding: 30px;
    border-radius: 20px;
}

/* Specific Tints */
.why-card.teal { background: #f0fdfa; }
.why-card.purple { background: #faf5ff; }
.why-card.orange { background: #fffaf0; }
.why-card.sage { background: #f7fee7; }

/* Responsive Adjustments */
@media (max-width: 968px) {
    .vm-card.mission { margin-left: 0; margin-top: 20px; }
    .why-grid { grid-template-columns: 1fr; text-align: center; }
    .why-cards { grid-template-columns: 1fr; }
}


/*-------------------IMPC Section---------------*/
/* IMPC Layout */
.impc-section { padding: 100px 0; background-color: #ffffff; }

/* Timeline Styling */
.impc-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0 100px;
    position: relative;
}

.timeline-item { text-align: center; position: relative; }

.month-pill {
    background: var(--blue-desaturated);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.theme-box {
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: 0.3s;
}

.theme-box h4 { color: var(--blue-darker); font-size: 1.1rem; line-height: 1.4; }

.theme-box:hover {
    border-color: var(--bright-yellow);
    transform: translateY(-5px);
}

/* Objectives Grid */
.impc-objectives {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    padding: 60px;
    background: #f1f5f9;
    border-radius: 40px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.obj-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: left;
}

.obj-icon { font-size: 1.5rem; display: block; margin-bottom: 15px; }

.obj-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Responsive Adjustments */
@media (max-width: 968px) {
    .impc-timeline { grid-template-columns: 1fr 1fr; }
    .impc-objectives { grid-template-columns: 1fr; padding: 40px 20px; }
}







/*-----------------Team---------------------*/
/* Container Logic */
.team-section{
    margin-top: 100px;
    margin-bottom: 100px;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px; /* Fixed height for a sleek uniform look */
    background: #f8fafc;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Image Layer */
.member-image {
    width: 100%;
    height: 100%;
}

.member-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The Surprise: Slide-up Overlay */
.member-overlay {
    position: absolute;
    bottom: -100%; /* Hidden at bottom */
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(74, 94, 122, 0.95), rgba(74, 94, 122, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.overlay-content {
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

/* Hover States */
.team-card:hover .member-overlay {
    bottom: 0;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.team-card:hover .overlay-content {
    opacity: 1;
}

/* Content Styling inside Overlay */
.overlay-content h3 {
    font-size: 1.2rem;
    color: var(--bright-yellow); /* Yellow accent for the name on dark bg */
    margin-bottom: 5px;
    text-transform: uppercase;
}

.overlay-content .role {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.overlay-content .bio {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Socials on Overlay */
.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-socials img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Makes black icons white for the blue background */
    transition: 0.3s;
}

.team-socials a:hover img {
    transform: translateY(-3px);
    filter: brightness(1) invert(0); /* Optional: flip back to original color on hover */
}















/*-------------------Books Page-----------*/

/* Books Grid Layout */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.book-card {
    display: flex;
    gap: 25px;
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
    height: fit-content;
}


.books-page{
  background-color: var(--bg-light);

}



.book-summary{
  margin-bottom: 50px;
}


.book-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.book-img img { width: 140px; border-radius: 8px; box-shadow: 5px 5px 15px rgba(0,0,0,0.1); }

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(30, 41, 59, 0.6); /* Dark Blue overlay */
    backdrop-filter: blur(5px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.retailer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.retailer-grid a {
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #4A5E7A;
    font-weight: 600;
    transition: 0.2s;
}

.retailer-grid a:hover {
    background: #41536e;
    color: white;
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #94a3b8;
}

/* Author Section Styling */
.author-profile { margin-top: 100px; margin-bottom: 100px; padding-top: 50px; border-top: 1px solid #eee; }
.profile-card { display: flex; align-items: center; gap: 40px; }
.profile-card img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; }













