@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --copper: #B87333;
  --copper-light: #d4956a;
  --copper-dark: #96571e;
  --navy: #1B3A5C;
  --navy-light: #2a5580;
  --navy-dark: #0f2640;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --text-light: #6e6e6e;
  --bg: #ffffff;
  --bg-warm: #f8f7f5;
  --bg-alt: #f1efe9;
  --border: #e2dfd8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.9rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 500; }

p { color: var(--text-muted); }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.sectionHead {
  text-align: center;
  margin-bottom: 48px;
}

.sectionHead h2 {
  margin-bottom: 12px;
}

.sectionHead p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.sectionTag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--copper);
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn:active {
  transform: scale(0.97);
}

.btnPrimary {
  background: var(--copper);
  color: #fff;
}

.btnPrimary:hover {
  background: var(--copper-dark);
}

.btnOutline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btnOutline:hover {
  background: var(--navy);
  color: #fff;
}


/* ---- Header ---- */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}

.topbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.topbarInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.menu a:hover {
  color: var(--copper);
}

.menuCta {
  display: none !important;
}

.menuBtn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.menuBtn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menuBtn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menuBtn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menuBtn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.topCta {
  padding: 10px 24px;
  font-size: 0.88rem;
}


/* ---- Hero / Banner ---- */

.banner {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.bannerBg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bannerBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerBg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,38,64,0.88) 0%, rgba(27,58,92,0.72) 100%);
}

.bannerContent {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}

.bannerContent h1 {
  font-size: 2.7rem;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.bannerContent p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.7;
}

.bannerActions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bannerActions .btnOutline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.bannerActions .btnOutline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.bannerBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.bannerBadge i {
  color: var(--copper-light);
}


/* ---- Stats ---- */

.stats {
  padding: 56px 0;
  background: var(--navy);
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.statBox h3 {
  font-size: 2.2rem;
  color: var(--copper-light);
  margin-bottom: 6px;
}

.statBox p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}


/* ---- About ---- */

.about {
  padding: 90px 0;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.aboutImg {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.aboutImg img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.aboutBody .sectionTag {
  text-align: left;
}

.aboutBody h2 {
  margin-bottom: 18px;
}

.aboutBody p {
  margin-bottom: 16px;
  font-size: 1.01rem;
}

.aboutHighlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.aboutHighlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
}

.aboutHighlights li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--bg-alt);
  color: var(--copper);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}


/* ---- Why Us ---- */

.whyUs {
  padding: 90px 0;
  background: var(--bg-warm);
}

.whyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.whyCard {
  background: var(--bg);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.whyCard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.whyIcon {
  width: 52px;
  height: 52px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--copper);
}

.whyIcon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whyCard h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.whyCard p {
  font-size: 0.94rem;
  line-height: 1.65;
}


/* ---- Courses ---- */

.courses {
  padding: 90px 0;
}

.courseList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.courseItem {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.courseItem:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.courseTop {
  padding: 32px 28px 24px;
}

.courseDuration {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--copper);
  background: rgba(184,115,51,0.08);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.courseTop h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.courseTop p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.courseBottom {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.courseBottom a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--copper);
  transition: color var(--transition);
}

.courseBottom a:hover {
  color: var(--copper-dark);
}

.courseBottom .courseMode {
  font-size: 0.82rem;
  color: var(--text-light);
}


/* ---- Learning Process ---- */

.process {
  padding: 90px 0;
  background: var(--bg-warm);
}

.processSteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.processStep {
  text-align: center;
  position: relative;
}

.stepNum {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 18px;
}

.processStep h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.processStep p {
  font-size: 0.9rem;
  max-width: 220px;
  margin: 0 auto;
}

.stepConnector {
  display: none;
  position: absolute;
  top: 28px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  height: 2px;
  background: var(--border);
}


/* ---- Tools ---- */

.tools {
  padding: 90px 0;
}

.toolsGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.toolBox {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.toolBox:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.toolBox img {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.toolBox span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}


/* ---- Live Projects ---- */

.liveProjects {
  padding: 90px 0;
  background: var(--bg-warm);
}

.projectCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.projectCard {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.projectCard:hover {
  box-shadow: var(--shadow-md);
}

.projectCard img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.projectInfo {
  padding: 24px;
}

.projectInfo h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.projectInfo p {
  font-size: 0.92rem;
}

.projectTags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.projectTags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--copper);
  background: rgba(184,115,51,0.08);
  padding: 4px 10px;
  border-radius: 4px;
}


/* ---- Student Success ---- */

.success {
  padding: 90px 0;
}

.successGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.successImg {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.successImg img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.successBody h2 {
  margin-bottom: 18px;
}

.successBody > p {
  margin-bottom: 28px;
  font-size: 1.01rem;
}

.successMetrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.metric {
  background: var(--bg-warm);
  padding: 22px;
  border-radius: var(--radius-sm);
}

.metric strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  color: var(--copper);
  margin-bottom: 4px;
}

.metric span {
  font-size: 0.88rem;
  color: var(--text-muted);
}


/* ---- Testimonials ---- */

.testimonials {
  padding: 90px 0;
  background: var(--bg-warm);
}

.storyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.studentVoice {
  background: var(--bg);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.studentVoice::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--copper-light);
  opacity: 0.3;
  position: absolute;
  top: 14px;
  left: 22px;
  line-height: 1;
}

.studentVoice blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-top: 18px;
}

.voiceAuthor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voiceAvatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--copper);
  flex-shrink: 0;
}

.voiceAuthor strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.voiceAuthor span {
  font-size: 0.82rem;
  color: var(--text-light);
}


/* ---- Trainer ---- */

.trainer {
  padding: 90px 0;
}

.trainerGrid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 56px;
  align-items: center;
}

.trainerPhoto {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.trainerPhoto img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.trainerBody h2 {
  margin-bottom: 6px;
}

.trainerRole {
  font-size: 1rem;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 20px;
}

.trainerBody > p {
  margin-bottom: 16px;
  font-size: 1.01rem;
}

.trainerCreds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.trainerCreds li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.trainerCreds li::before {
  content: '→';
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
}


/* ---- Placement ---- */

.placement {
  padding: 90px 0;
  background: var(--bg-warm);
}

.placementGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.placementCard {
  background: var(--bg);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.placementCard h3 {
  margin: 18px 0 10px;
  color: var(--navy);
}

.placementCard p {
  font-size: 0.92rem;
}

.placementIcon {
  color: var(--copper);
}

.placementIcon svg {
  width: 32px;
  height: 32px;
}

.partnerLogos {
  text-align: center;
}

.partnerLogos h4 {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-weight: 500;
}

.partnerRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.partnerRow span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}


/* ---- FAQ ---- */

.faq {
  padding: 90px 0;
}

.faqList {
  max-width: 740px;
  margin: 0 auto;
}

.faqItem {
  border-bottom: 1px solid var(--border);
}

.faqItem:first-child {
  border-top: 1px solid var(--border);
}

.faqQuestion {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faqQuestion:hover {
  color: var(--copper);
}

.faqArrow {
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.faqArrow svg {
  width: 16px;
  height: 16px;
}

.faqItem.open .faqArrow {
  transform: rotate(180deg);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faqAnswer p {
  padding: 0 0 22px;
  font-size: 0.94rem;
  line-height: 1.7;
}


/* ---- Contact ---- */

.contactArea {
  padding: 90px 0;
  background: var(--bg-warm);
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contactInfo h2 {
  margin-bottom: 18px;
}

.contactInfo > p {
  margin-bottom: 28px;
  font-size: 1.01rem;
}

.contactDetails li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text);
}

.contactDetails li strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.contactDetails li span {
  color: var(--text-muted);
}

.contactIcon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contactForm {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.formGroup {
  margin-bottom: 18px;
}

.formGroup label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
  border-color: var(--copper);
}

.formGroup textarea {
  resize: vertical;
  min-height: 110px;
}

.formGroup input.inputError,
.formGroup select.inputError,
.formGroup textarea.inputError {
  border-color: #c0392b;
}

.formMsg {
  font-size: 0.88rem;
  margin-top: 12px;
  display: none;
}

.formMsg.msgOk {
  color: #27ae60;
  display: block;
}

.formMsg.msgErr {
  color: #c0392b;
  display: block;
}

.contactForm .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}


/* ---- Map ---- */

.mapSection {
  background: var(--navy-dark);
}

.mapSection iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(1.05);
}


/* ---- Footer ---- */

.siteFooter {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footerAbout .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footerAbout p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.footerCol h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footerLinks li {
  margin-bottom: 10px;
}

.footerLinks a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footerLinks a:hover {
  color: var(--copper-light);
}

.footerBar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}

.footerBar a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footerBar a:hover {
  color: var(--copper-light);
}


/* ---- Privacy Page ---- */

.privacyPage {
  padding: 120px 0 80px;
}

.privacyPage h1 {
  margin-bottom: 12px;
}

.privacyPage > .wrap > p:first-of-type {
  margin-bottom: 40px;
  color: var(--text-light);
}

.privacyPage h2 {
  font-size: 1.35rem;
  margin: 36px 0 12px;
}

.privacyPage p,
.privacyPage li {
  font-size: 0.96rem;
  margin-bottom: 12px;
}

.privacyPage ul {
  padding-left: 20px;
  list-style: disc;
}


/* ---- Responsive ---- */

html, body {
  overflow-x: hidden;
}

@media (min-width: 769px) {
  .stepConnector {
    display: block;
  }
}

@media (max-width: 1024px) {
  .footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .trainerGrid {
    grid-template-columns: 260px 1fr;
    gap: 36px;
  }

  .whyGrid,
  .courseList,
  .projectCards,
  .storyGrid,
  .placementGrid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .toolsGrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .contactGrid {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  .sectionHead {
    margin-bottom: 32px;
  }

  .sectionHead p {
    font-size: 0.94rem;
  }

  /* Header */
  .topbarInner {
    height: 60px;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logoMark {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 40px 24px;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    z-index: 99;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
  }

  .menu.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), color var(--transition), padding-left var(--transition), opacity 0.35s ease, transform 0.35s ease;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: translateX(15px);
  }

  .menu.show a {
    opacity: 1;
    transform: translateX(0);
  }

  .menu.show a:nth-child(1) { transition-delay: 0.05s; }
  .menu.show a:nth-child(2) { transition-delay: 0.1s; }
  .menu.show a:nth-child(3) { transition-delay: 0.15s; }
  .menu.show a:nth-child(4) { transition-delay: 0.2s; }
  .menu.show a:nth-child(5) { transition-delay: 0.25s; }
  .menu.show a:nth-child(6) { transition-delay: 0.3s; }
  .menu.show a:nth-child(7) { transition-delay: 0.35s; }

  .menu a:hover,
  .menu a:active {
    color: var(--copper);
    background: rgba(184, 115, 51, 0.05);
    padding-left: 24px;
  }

  .menu a.menuCta {
    display: flex !important;
    justify-content: center;
    background: var(--copper);
    color: #fff;
    border-bottom: none;
    font-weight: 600;
    margin-top: 16px;
    padding: 14px 24px;
    box-shadow: 0 4px 14px rgba(184, 115, 51, 0.3);
  }

  .menu a.menuCta:hover,
  .menu a.menuCta:active {
    background: var(--copper-dark);
    color: #fff;
    padding-left: 16px;
  }

  .menuBtn {
    display: flex;
    margin-right: -12px;
  }

  .topCta {
    display: none;
  }

  /* Banner */
  .banner {
    min-height: 75vh;
    margin-top: 60px;
  }

  .bannerContent {
    padding: 48px 0;
  }

  .bannerContent h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .bannerContent p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .bannerBadge {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .bannerActions {
    flex-direction: column;
    gap: 10px;
  }

  .bannerActions .btn {
    text-align: center;
    width: 100%;
  }

  /* Stats */
  .stats {
    padding: 40px 0;
  }

  .statsGrid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .statBox h3 {
    font-size: 1.6rem;
  }

  .statBox p {
    font-size: 0.82rem;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

  .aboutGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aboutBody .sectionTag {
    text-align: center;
  }

  .aboutBody h2 {
    text-align: center;
  }

  .aboutHighlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Why Us */
  .whyUs {
    padding: 60px 0;
  }

  .whyGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .whyCard {
    padding: 28px 22px;
  }

  .whyCard:hover {
    transform: none;
  }

  /* Courses */
  .courses {
    padding: 60px 0;
  }

  .courseList {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .courseTop {
    padding: 24px 20px 18px;
  }

  .courseBottom {
    padding: 14px 20px;
  }

  .courseItem:hover {
    transform: none;
  }

  /* Learning Process */
  .process {
    padding: 60px 0;
  }

  .processSteps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .stepConnector {
    display: none !important;
  }

  .stepNum {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .processStep p {
    font-size: 0.85rem;
  }

  /* Tools */
  .tools {
    padding: 60px 0;
  }

  .toolsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .toolBox {
    padding: 20px 10px;
  }

  .toolBox img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .toolBox span {
    font-size: 0.75rem;
  }

  /* Live Projects */
  .liveProjects {
    padding: 60px 0;
  }

  .projectCards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projectInfo {
    padding: 18px;
  }

  .projectCard:hover {
    box-shadow: var(--shadow-sm);
  }

  /* Student Success */
  .success {
    padding: 60px 0;
  }

  .successGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .successBody .sectionTag {
    text-align: center;
  }

  .successBody h2 {
    text-align: center;
  }

  .successBody > p {
    text-align: center;
  }

  .successMetrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .metric {
    padding: 18px;
  }

  .metric strong {
    font-size: 1.35rem;
  }

  .metric span {
    font-size: 0.82rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 60px 0;
  }

  .storyGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .studentVoice {
    padding: 26px 22px;
  }

  .studentVoice blockquote {
    font-size: 0.9rem;
  }

  /* Trainer */
  .trainer {
    padding: 60px 0;
  }

  .trainerGrid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .trainerPhoto {
    max-width: 240px;
    margin: 0 auto;
  }

  .trainerBody .sectionTag {
    text-align: center;
  }

  .trainerRole {
    text-align: center;
  }

  .trainerCreds {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }

  /* Placement */
  .placement {
    padding: 60px 0;
  }

  .placementGrid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .placementCard {
    padding: 28px 22px;
  }

  .partnerRow {
    gap: 20px;
  }

  .partnerRow span {
    font-size: 0.92rem;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faqQuestion {
    font-size: 0.94rem;
    padding: 18px 0;
  }

  .faqAnswer p {
    font-size: 0.88rem;
    padding-bottom: 18px;
  }

  /* Contact */
  .contactArea {
    padding: 60px 0;
  }

  .contactGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contactInfo {
    text-align: center;
  }

  .contactDetails li {
    justify-content: center;
    text-align: left;
  }

  .contactForm {
    padding: 24px 18px;
  }

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

  .formGroup input,
  .formGroup select,
  .formGroup textarea {
    padding: 14px 14px;
    font-size: 1rem;
  }

  .contactForm .btn {
    padding: 16px;
    font-size: 1rem;
  }

  /* Map */
  .mapSection iframe {
    height: 260px;
  }

  /* Footer */
  .siteFooter {
    padding-top: 48px;
  }

  .footerGrid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footerAbout .logo {
    justify-content: center;
  }

  .footerLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
  }

  .footerLinks li {
    margin-bottom: 0;
  }

  .footerBar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Privacy */
  .privacyPage {
    padding: 80px 0 60px;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding: 0 14px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  .banner {
    min-height: 70vh;
  }

  .bannerContent {
    padding: 36px 0;
  }

  .bannerContent h1 {
    font-size: 1.5rem;
  }

  .bannerContent p {
    font-size: 0.88rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .statsGrid {
    gap: 14px;
  }

  .statBox h3 {
    font-size: 1.4rem;
  }

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

  .toolsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .toolBox {
    padding: 14px 6px;
  }

  .toolBox img {
    width: 30px;
    height: 30px;
  }

  .toolBox span {
    font-size: 0.7rem;
  }

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

  .contactForm {
    padding: 20px 14px;
  }

  .mapSection iframe {
    height: 220px;
  }
}
