/*
Theme Name: EduBold Marketing
Theme URI: https://edubold.com
Author: EduBold
Author URI: https://edubold.com
Description: Corporate marketing theme for EduBold SaaS with multi-page structure.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edubold-marketing
Tags: landing-page, responsive, accessibility-ready, custom-colors
*/

:root {
  /* Core Colors - Deep & Rich */
  --primary: #2563eb;
  --primary-dark: #1e3a8a;
  --primary-light: #60a5fa;
   --accent-glow: #38bdf8;

  /* Semantic Colors */
  --success: #10b981;
  --success-bg: #ecfdf5;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Neutrals */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --accent: #0ea5e9;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Gradients 2.0 - Mesh & Glow */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-mesh: radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(14, 165, 233, 0.15) 0px, transparent 50%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);

  /* Shadows - Layered & Colored */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2.5rem;
  --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
}

a {
  /*color: var(--primary);*/
  /*color: var(--text-muted);*/
  color:#2070eb;
  text-decoration: none;
  transition: all 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.constrained {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  filter: brightness(1.1);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--text-main);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface-alt);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: var(--bg-surface);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 150%;
  background: var(--gradient-mesh);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  /*color: var(--primary);*/
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-sm);
}

/* Cards & Glassmorphism */
.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  overflow:hidden;
  position:relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-inner);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 0fr));
  gap: 2.5rem;
}

/* Comparison Section (Old vs New) */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.comparison-card {
  padding: 3rem;
  border-radius: var(--radius-2xl);
}

.comparison-card.old {
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  opacity: 0.8;
}

.comparison-card.new {
  background: var(--text-main);
  color: white;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.comparison-card.new::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.3), transparent 60%);
}

/* FAQ Accordion */
.accordion-item {
	border-bottom: 1px solid var(--border);
	padding: 8px 0;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-muted);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--text-main);
  color: var(--bg-surface-alt);
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 50%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-primary {
  color: var(--primary);
}

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

.footer-links {
	
}
.footer-links p {
	font-size:16px;
	color:#d7d5d5;
}
.footer-links h4 {
	font-size:18px;
	color:#fff;
}
.footer-links > a {
	font-size:16px;
	color:#d7d5d5;
	display:block;
	line-height:32px;
	position:relative;
}
.footer-links > a:hover {
	color:#fff;
	padding-left:20px;
	transition:all 0.3s;
	--webkit-transition:all 0.3s;
}
.footer-links > a::before {
	content:'';
	width:0px;
	height:1px;
	position:absolute;
	background:#fff;
	top:18px;
	left:0px;
	transition:all 0.7s;
	--webkit-transition:all 0.7s;
}
.footer-links > a:hover::before {
	width:15px;
	transition:all 0.7s;
	--webkit-transition:all 0.7s;
}
.header-bg {
	background: url("../../uploads/assets/img/header-bg.jpg");
    background-repeat: no-repeat;
	background-size: cover;
	min-height:700px;
}
.header-names {
	font-weight: 700;
	font-size: 1.5rem;
	background: #fff;
	padding: 7px 25px;
	border-radius: 50px;
}
ul.hero-list {
	margin:20px 0 0 20px;
	padding:0;
}
ul.hero-list li {
	margin:0;
	padding:0;
	font-size:18px;
	list-style-type:disclosure-closed;
}
.value-overlays {
	margin: 0;
	padding: 0px 15px 20px 15px;
	width: 100%;
	position: absolute;
	z-index: 20;
	bottom: 0;
	background: rgba(256, 256, 256, 0.7);
}
.modules-card  {
	/*background: url("../../uploads/assets/img/module-bg.png");
    background-repeat: no-repeat;
	background-size: cover;*/
	background-color:#f1faff;
}
.modules-card:hover {
	background: url("../../uploads/assets/img/module-bg.png");
	background-repeat: no-repeat;
	/*background-size: cover;*/
	background-position:center center;
}
.why-edubold-bg {
	background: url("../../uploads/assets/img/why-edubold-bg.jpg") no-repeat center center;
	background-color: #000;
	background-size: cover;
	background-repeat:no-repeat;
	background-attachment:fixed;
}
.faq-bg {
	background: url("../../uploads/assets/img/faq-bg.jpg") center center;
    background-repeat: no-repeat;
	background-size: cover;
}
.move-top {
	margin:0;
	padding:7px;
	width:45px;
	height:45px;
	background:#fff;
	color:green;
	border-radius:10px;
	text-align:center;
	
	position:fixed;
	bottom:20px;
	right:20px;
	z-index:10;
}
/***** padding ******/
.p-0 {
	padding:0;
}
.p-1 {
	padding:1rem;
}
.p-2 {
	padding:2rem;
}
.p-3 {
	padding:3rem;
}
.p-4 {
	padding:4rem;
}
.p-5 {
	padding:5rem;
}
/***** margins ******/
.m-0 {
	padding:0;
}
.m-1 {
	padding:1rem;
}
.m-2 {
	padding:2rem;
}
.m-3 {
	padding:3rem;
}
.m-4 {
	padding:4rem;
}
.m-5 {
	padding:5rem;
}
.mission-bg {
	background: url("../../uploads/assets/img/mission-bg.jpg");
	background-color: #000;
	background-size: cover;
	background-repeat:no-repeat;
}
.leadership-bg {
	background: url("../../uploads/assets/img/leadership-bg.jpg") no-repeat;
	background-size: cover;
	background-position: right top;
}
.join-fam-bg {
	background: url("../../uploads/assets/img/join-fam-bg.jpg") repeat-x left center #fff;
	/* background-size: cover; */
}
.footer-bg {
	background:url(../../uploads/assets/img/map-bg-blue.png) no-repeat center top / cover var(--text-main);
}
.journey-bg {
	background: url("../../uploads/assets/img/map-bg.png") no-repeat center top #fff;
}
.chaos-bg {
	background:url(../../uploads/assets/img/chaos-bg.jpg) no-repeat center top / cover var(--text-main);
}
.legal-section {
	margin:0 0 55px 0;
}
.dashed-divider-down {
	text-align: center;
	margin: 25px auto;
	transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	width: 55%;
	background:#fff;
	position:relative;
}
.dashed-divider-up {
	text-align: center;
	margin: 25px auto;
	width: 55%;
	background:#fff;
	position:relative;
}
.header-names-cont {
	display: flex;
	gap: 1.75rem;
	justify-content: center;
	filter: grayscale(1);
}
.e-con-inner h2, .entry-content h2 {
	font-size: clamp(2.25rem, 5vw, 3.0rem);
	margin-top:50px;
}
.e-con-inner h3, .entry-content h3 {
	margin-top:25px;
	margin-bottom:5px;
}
.e-con-inner p, .entry-content p {
	margin-bottom:10px;
}
.e-con-inner code, .entry-content code {
	background: #fff;
	padding: 15px;
	border: dashed 2px #d5ebf2;
}



/*********** Responsive *************/
@media (max-width: 1024px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 0 1rem;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 1rem 0;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
	padding: 15px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.5rem;
  }
 .header-names-cont {
	display: inline-block;
	}
.header-names {
	margin: 10px 0;
    display: inline-flex;
    /*width: 60%;*/
    text-align: center;
}
.value-overlays {
	position: relative;
}
.steps {
	width:100% !important;
}
.dashed-divider-down {
	margin: -43px auto 10px auto;
	width: 100%;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
}
.dashed-divider-up {
	margin: -43px auto 10px auto;
	width: 100%;
	transform: scaleY(-1);
	-webkit-transform: scaleY(-1);
}
.steps-track-line {
	display:none;
}
.border-dashed-left {
	border-left:dashed 2px #cecece;	
}
.border-dashed-right {
	border-right:dashed 2px #cecece;
}
ul.hero-list {
	margin: 0px 0 0 20px !important;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100%, 0fr));
  gap: 2.5rem;
}
}


