
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Base Colors - Use these to change the entire feel (Light/Dark) */
  --black: #000000;
  --white: #ffffff;
  --gray-dark: #333333;
  --gray-light: #e5e7eb;

  /* Theme Colors - Teal and Gold Combination */
  --primary: #006d5b; /* Teal */
  --secondary: var(--white); /* Main background */
  --accent: #ffd700; /* Gold */
  --muted: #666666; /* Gray text */
  --dark: #004d4d; /* Dark Teal (Footer/Hero) */
  --light: #f0fdfa; /* Light Teal (Section backgrounds) */
  --gold: #daa520; /* Goldenrod */
  --gold-soft: #ffecb3; /* Soft Gold */
  --teal-alt: #006d5b; /* Deep Teal */
  
  /* Semantic Variables - Manage everything from here */
  --bg-body: var(--secondary);
  --text-body: var(--black);
  --bg-topbar: var(--black);
  --text-topbar: var(--gray-light);
  --bg-nav: linear-gradient(135deg, var(--primary), var(--teal-alt));
  --text-nav: var(--gold);
  --bg-footer: var(--dark);
  --text-footer: var(--white);
  
  --bg-logo: conic-gradient(var(--primary), var(--teal-alt), var(--primary), var(--teal-alt));
  --text-logo: var(--white);
  --bg-cta: var(--white);
  --text-cta: var(--black);
  --border-cta: var(--black);
  --bg-mobile-menu: linear-gradient(135deg, var(--primary), var(--teal-alt));
  --border-mobile-menu: var(--black);

  /* Shadows and Overlays */
  --shadow-main: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  --shadow-light: rgba(0, 0, 0, 0.05);
  --bg-overlay: rgba(0, 0, 0, 0.3);
  --bg-overlay-dark: rgba(0, 0, 0, 0.5);
  --text-on-overlay: var(--white);
  --text-white-soft: rgba(255, 255, 255, 0.8);
  --text-white-muted: rgba(255, 255, 255, 0.6);
  --bg-white-soft: rgba(255, 255, 255, 0.1);
  --bg-hover: rgba(0, 0, 0, 0.05);
  --primary-soft: rgba(0, 128, 128, 0.1);
  --primary-transparent: rgba(0, 128, 128, 0.2);
  --teal-alt-soft: rgba(0, 102, 102, 0.1);
  --gray-medium: #475569;
  --gray-deep: #374151;
  --yellow: #fbbf24;

  /* Compatibility with existing classes */
  --primary-color: var(--primary);
  --accent-color: var(--gold);
  --text-color: var(--text-body);
  --border-color: rgba(0, 128, 128, 0.2);
  --background-color: var(--bg-body);
  --background-dark: var(--light);
  
  --radius: 999px;
  --speed: 260ms;
  --container-width: 1140px;
}

/* ==========================================================
                            Base Styles
   ==========================================================*/
html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg-body);
  color:var(--text-body);
}
a{text-decoration:none}

/* top bar */
.topbar{
  background:var(--bg-topbar);
  color:var(--text-topbar);
  font-size:.8rem;
  padding:.35rem 0;
  margin:0;
  margin-bottom:0;
}
.topbar a{color:inherit}
.icon-circle{
  width:1.4rem;height:1.4rem;border-radius:50%;
  background: var(--bg-white-soft);
  display:inline-flex;align-items:center;justify-content:center;
  margin-left:.35rem;
  transition:all var(--speed);
}
.icon-circle:hover{background:var(--primary);transform:translateY(-1px)}

/* navbar */
.main-nav-wrap{position:relative;z-index:1030}
.main-nav{
  width:100%;
  padding:.4rem 1.25rem;
  background:var(--bg-nav);
  border:1px solid var(--primary-transparent);
  border-left:none;border-right:none;
  transition:.25s;
}

.main-nav.sticky{
  position:fixed;top:0;left:0;right:0;
  animation:slideDown .3s ease-out;
}

@keyframes slideDown{
  from{transform:translateY(-100%)}
  to{transform:translateY(0)}
}

.brand{display:flex;gap:.6rem;align-items:center;color:var(--text-body)}
.logo{
  width:350px;height:65px;border-radius:16px;
   /* background:var(--bg-logo); */
  display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--text-logo);
}

.logo img{
  width: 78%;
  /* height: auto; */
  /* padding-top: 10px; */
}
.brand small{color:var(--muted);text-transform:uppercase;letter-spacing:.15em;font-size:.7rem}

.nav-links{display:flex;gap:.6rem;flex:1;justify-content:center}
.nav-links a{
  color:var(--text-nav);padding:.4rem .8rem;border-radius:var(--radius);
  transition:.25s;font-weight:500;
}
.nav-links a:hover{background:var(--bg-hover);color:var(--text-nav)}
.nav-links a.active{background:var(--white);color:var(--black)}

.cta{
  border:2px solid var(--border-cta);border-radius:var(--radius);
  padding:.45rem 1.2rem;font-size:.85rem;
  background:var(--bg-cta);
  color:var(--text-cta);font-weight:500;
}

.toggle{
  display:none;
  width:2.2rem;height:2.2rem;
  border-radius:50%;border:1px solid rgba(148,163,184,.4);
  background:var(--black);color:var(--white)
}

/* mobile menu */
.backdrop{
  position:fixed;inset:0;background:rgba(15,23,42,.6);
  opacity:0;visibility:hidden;transition:.25s;z-index:1031
}
.mobile-menu{
  position:fixed;left:-260px;top:0;height:100vh;width:260px;
  background:var(--bg-mobile-menu);
  border-right:2px solid var(--border-mobile-menu);
  transition:.25s;z-index:1032;padding:1.3rem
}
.mobile-menu a{display:block;padding:.55rem;color:var(--text-nav);font-weight:500}
.mobile-menu a:hover{color:var(--text-nav);background:var(--bg-hover)}

.mobile-menu h5{color:var(--text-nav);margin-bottom:1rem}
.mobile-menu.open{left:0}
.backdrop.show{opacity:1;visibility:visible}

body.menu-open{overflow:hidden}

/* scroll to top */
.scroll-top{
  position:fixed;bottom:2rem;right:2rem;
  width:3rem;height:3rem;border-radius:50%;
  background:var(--bg-nav);
  color:var(--text-nav);border:none;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:1040;
  opacity:0;visibility:hidden;
  transition:.25s;
}

.scroll-top.show{
  opacity:1;visibility:visible;
}

.scroll-top:hover{
  transform:translateY(-2px);
}

@media(max-width:992px){
  .nav-links{display:none}
  .cta{display:none}
  .toggle{display:inline-flex;align-items:center;justify-content:center}
}

.container {
  width: 100%;
  margin: auto;
  overflow: visible;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* HEADER */
.site-header {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#branding {
  font-weight: 700;
  font-size: 1.3rem;
}

#branding h1 {
  font-weight: 800;
  font-size: 1.6rem;
}

#branding h1 .highlight {
  color: var(--accent-color);
}

/* DESKTOP NAV */
.desktop-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
}

/* SIDEBAR SYSTEM */
.sidebar-checkbox {
  display: none;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -270px;
  width: 260px;
  height: 100vh;
  background: var(--white);
  box-shadow: 0 12px 30px var(--shadow-hover);
  padding: 20px;
  transition: 0.3s ease;
  z-index: 200;
}

.sidebar-checkbox:checked ~ .sidebar {
  right: 0;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
  display: block;
  text-align: right;
  margin-bottom: 20px;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-menu a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--text-color);
}

/* BACKDROP */
.backdrop {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay-dark);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 100;
}

.sidebar-checkbox:checked ~ .backdrop {
  opacity: 1;
  pointer-events: all;
}

/* HAMBURGER BUTTON */
.menu-btn {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  height: 3px;
  background: var(--text-color);
  border-radius: 5px;
  display: block;
}

/* ==========================================================
                            Main Content
   ==========================================================*/
main {
  padding: 20px 0;
}

main h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

main p {
  font-size: 1.1rem;
  line-height: var(--line-height);
  margin-bottom: 20px;
}

main nav {
  margin-top: 20px;
}

main nav a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
  transform: scale(1);
}

main nav a:hover {
  background: var(--accent-color);
  transform: scale(1.05);
}

/* HERO SECTION */
/* Background video overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  background: var(--bg-overlay);
  width: 100%;
  min-height: 85vh;
  padding-bottom: 45px;
  display: flex;
  align-items: center;
}

/* Hero badge */
.hero-badge {
  background: var(--gold);
  opacity: 0.9;
  color: var(--white);
}

/* Hero heading */
.hero-heading {
  color: var(--text-on-overlay);
  text-shadow: 2px 2px 4px var(--bg-overlay-dark);
}

.hero-heading span {
  color: var(--primary);
}

/* Hero paragraph */
.hero-para {
  color: var(--text-on-overlay);
  text-shadow: 1px 1px 2px var(--bg-overlay-dark);
  max-width: 520px;
}

/* Hero buttons */
.hero-btn-primary, .hero-btn-outline {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 50rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-btn-primary {
  background: var(--gold);
  opacity: 0.9;
  color: var(--white);
  border: none;
}

.hero-btn-primary:hover {
  background: var(--primary);
  color: var(--text-on-overlay);
}

.hero-btn-outline {
  background: transparent;
  color: var(--text-on-overlay);
  box-shadow: inset 0 0 0 2px var(--text-on-overlay);
}

.hero-btn-outline:hover {
  background: var(--text-on-overlay);
  color: var(--dark);
  box-shadow: inset 0 0 0 2px var(--text-on-overlay);
}

/* Hero image container */
.hero-image-container {
  background: var(--bg-white-soft);
  border-radius: 24px;
  padding: 30px;
  border: 2px solid rgba(0, 128, 128, 0.7);
}

/* Hero image */
.hero-image {
  max-height: 360px;
}

/* WHAT WE DO SECTION */
.what-we-do-section {
  padding: 40px 0;
  background: var(--secondary);
}

.wwd-heading-tag {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-alt);
  font-weight: 600;
}

.wwd-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-alt);
  margin-top: 0.5rem;
}

.wwd-subtitle {
  color: var(--muted-alt);
  max-width: 540px;
  margin-top: 0.5rem;
}

.wwd-card {
  background: var(--secondary);
  color: var(--dark);
  border-radius: 22px;
  padding: 24px 22px 26px;
  border: 1px solid var(--primary-transparent);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.wwd-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.wwd-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 102, 102, 0.12);
  color: var(--teal-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.wwd-card h5 {
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--dark-alt);
}

.wwd-card p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 0.6rem;
}

.wwd-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  color: var(--gray-deep);
}

.wwd-chip-row {
  margin-top: 12px;
}

.wwd-chip {
  font-size: 0.7rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--muted-alt);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* COURSES & INTERNSHIP HIGHLIGHTS */
.ci-section {
  padding: 40px 0;
  background: var(--secondary);
}

.ci-tag {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.ci-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 0.5rem;
}

.ci-subtitle {
  color: var(--muted);
  max-width: 560px;
  margin-top: 0.5rem;
}

.ci-highlight-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.ci-highlight-stat strong {
  font-size: 1.6rem;
  color: var(--gold);
}

.ci-highlight-stat span {
  color: var(--dark);
}

.ci-card {
  background: var(--secondary);
  border-radius: 22px;
  border: 1px solid var(--primary-transparent);
  padding: 24px 22px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.ci-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-alt);
}

.ci-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-alt);
}

.ci-card p {
  color: var(--muted);
}


.ci-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--dark);
  margin-right: 0.35rem;
  margin-bottom: 0.3rem;
  background: var(--text-white-soft);
}

.ci-pill i {
  font-size: 0.65rem;
  color: var(--gold-soft);
}

.ci-timeline {
  border-left: 1px dashed rgba(148, 163, 184, 0.6);
  padding-left: 1rem;
  margin-top: 0.75rem;
}

.ci-step {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 0.35rem;
}

.ci-step::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.3rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(0, 102, 102, 0.25);
}

.ci-step-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.ci-step-text {
  font-size: 0.8rem;
  color: var(--gray-deep);
}

.ci-bottom-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--teal-alt-soft);
  border: 1px solid rgba(0, 102, 102, 0.3);
}

/* WHAT OUR STUDENTS SAY */
.students-say-section {
  padding: 40px 0;
  background: var(--secondary);
}

.ss-tag {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.ss-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 0.5rem;
}

.ss-subtitle {
  color: var(--muted);
  max-width: 560px;
  margin-top: 0.5rem;
}

.ss-card {
  background: var(--secondary);
  border-radius: 22px;
  border: 1px solid var(--primary-transparent);
  padding: 24px 22px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.ss-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.ss-rating {
  color: var(--yellow);
}

.ss-text {
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

.ss-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ss-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.ss-name {
  font-weight: 600;
  color: var(--dark);
}

.ss-role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* READY TO START YOUR IT JOURNEY */
.ready-start-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
}

.rs-content {
  max-width: 600px;
}

.rs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.rs-subtitle {
  font-size: 1.1rem;
  color: var(--text-white-soft);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.rs-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.rs-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
}

.rs-feature i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.rs-cta-card {
  background: var(--secondary);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 20px 40px var(--shadow-main);
}

.rs-cta-card h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rs-cta-card p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.rs-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.rs-btn-primary {
  background: var(--primary);
  color: var(--secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.25s ease;
  border: none;
}

.rs-btn-primary:hover {
  transform: translateY(-2px);
}

.rs-btn-secondary {
  background: transparent;
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--primary);
  transition: all 0.25s ease;
}

.rs-btn-secondary:hover {
  background: var(--primary);
  color: var(--secondary);
}

.rs-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rs-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.rs-contact-item i {
  color: var(--primary);
}

/* IT SERVICES FOR CLIENTS */
.it-services-section {
  padding: 40px 0;
  background: var(--secondary);
}

.is-tag {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.is-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 0.5rem;
}

.is-subtitle {
  color: var(--muted);
  max-width: 600px;
  margin-top: 0.5rem;
}

.is-card {
  background: var(--secondary);
  border-radius: 20px;
  border: 1px solid rgba(0, 102, 102, 0.15);
  padding: 30px 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 12px var(--shadow-light);
}

.is-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 32px rgba(0, 102, 102, 0.15);
}

.is-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.is-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.is-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.is-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.is-features li {
  padding: 0.25rem 0;
  color: var(--dark);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}

.is-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.is-price {
  margin-top: auto;
}

.is-price-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.is-cta {
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  /* border-radius: 24px; */
  padding: 40px 30px;
  text-align: center;
  color: var(--secondary);
}

.is-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.is-cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.is-btn-primary {
  background: var(--secondary);
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.25s ease;
}

.is-btn-primary:hover {
  transform: translateY(-2px);
}

/* ABOUT PAGE */
.about-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--text-white-soft);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-white-soft);
}

.about-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.our-story-section {
  padding: 20px 0;
  background: var(--secondary);
}

.story-header {
  margin-bottom: 60px;
}

.story-content-wrapper {
  margin-bottom: 80px;
}

.story-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-highlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--secondary);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--teal-alt-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--teal-alt-soft);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.story-highlight h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.story-highlight p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-white-soft);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 15px;
}

.stat-info .stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-info .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.story-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-image img {
  max-width: 90%;
  height: auto;
  border-radius: 20px;
}

.story-quote {
  background: linear-gradient(135deg, var(--teal-alt), var(--primary));
  color: var(--secondary);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px var(--primary-transparent);
}

.story-quote blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  position: relative;
}

.story-quote blockquote::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: -20px;
  opacity: 0.3;
}

.story-quote cite {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 600;
}

.story-timeline {
  margin-top: 60px;
  text-align: center;
}

.timeline-title {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--teal-alt));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-marker {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--secondary);
  margin-bottom: 20px;
  z-index: 1;
  box-shadow: 0 4px 12px var(--primary-transparent);
}

.timeline-content {
  background: var(--secondary);
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px var(--shadow-main);
  border: 1px solid var(--teal-alt-soft);
  max-width: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--teal-alt-soft);
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.timeline-content p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.mission-vision-section {
  padding: 80px 0;
  background: var(--light);
}

.mission-card, .vision-card {
  background: var(--secondary);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-main);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.mission-card h3, .vision-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
  color: var(--muted);
  line-height: 1.6;
}

.values-section {
  padding: 80px 0;
  background: var(--secondary);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
}

.value-card {
  background: var(--secondary);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--teal-alt-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--teal-alt-soft);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.value-card h4 {
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--muted);
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
  background: var(--light);
}

.team-card {
  background: var(--secondary);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px var(--shadow-main);
  transition: transform 0.25s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  height: 200px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 25px;
}

.team-content h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.contact-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
}

.contact-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  padding: 50px 0;
  text-align: center;
  background: radial-gradient(circle at top, var(--background-dark) 0, var(--background-color) 60%);
  border-bottom: 1px solid var(--border-color);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-inner p {
  max-width: 500px;
  margin: 8px auto 24px;
  color: var(--text-color);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--primary-color);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
}

/* CARDS SECTION */
.cards-section {
  padding: 32px 0 40px;
  background: var(--background-color);
  border-bottom: 1px solid var(--border-color);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--background-dark);
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 24px var(--shadow-light);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px var(--shadow-main);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-color);
}


/* ==========================================================
                           Contact Page
    ==========================================================*/
.contact-section {
  padding: 20px 0;
  background: var(--secondary);
  overflow-x: hidden;
}

.contact-form-card {
  background: var(--secondary);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px var(--shadow-main);
  border: 1px solid var(--teal-alt-soft);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 600;
}

.contact-form .form-control,
.support-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--primary-transparent);
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.25s ease;
  background-color: var(--white);
  color: var(--text-body);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23daa520' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 3rem;
  cursor: pointer;
}

select.form-control:hover {
  border-color: var(--primary);
}

select.form-control option {
  padding: 12px;
  background-color: var(--white);
  color: var(--text-body);
}

.contact-form .form-control:focus,
.support-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 102, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--secondary);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px var(--shadow-main);
  border: 1px solid var(--teal-alt-soft);
  transition: transform 0.25s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content h4 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-content p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.map-section {
  padding: 40px 0;
  background: var(--secondary);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: var(--secondary);
  box-shadow: 0 20px 40px var(--primary-transparent);
}

.map-content i {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.map-content h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.map-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 5px 0;
}

.faq-section {
  padding: 0px 0;
  background: var(--secondary);
}

.faq-item {
  background: var(--secondary);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px var(--shadow-main);
  border: 1px solid var(--teal-alt-soft);
}

.faq-item h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.support-section {
  padding: 80px 0;
  background: var(--secondary);
  overflow-x: hidden;
}

.support-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--secondary);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px var(--shadow-main);
  border: 1px solid var(--teal-alt-soft);
  transition: transform 0.25s ease;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.support-content h4 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.support-content p {
  color: var(--muted);
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.support-btn {
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.support-btn:hover {
  transform: translateY(-2px);
}

.support-form-card {
  background: var(--secondary);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px var(--shadow-main);
  border: 1px solid var(--teal-alt-soft);
}

.support-form-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.support-form-card > p {
  color: var(--muted);
  margin-bottom: 30px;
}

.support-form .form-group {
  margin-bottom: 20px;
}

.support-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 600;
}

.support-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--primary-transparent);
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.25s ease;
}

.support-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.support-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ==========================================================
                          Courses Page
    ==========================================================*/
.courses-section {
  padding: 80px 0;
  background: var(--secondary);
}

.course-card {
  background: var(--secondary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-main);
  border: 1px solid var(--teal-alt-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--primary-transparent);
}

.course-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.course-content {
  padding: 25px;
}

.course-content h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.course-content p {
  color: var(--muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.course-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.course-meta span {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-features {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.feature {
  background: var(--teal-alt-soft);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.course-price {
  margin-bottom: 20px;
}

.original-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.9rem;
  margin-right: 10px;
}

.discounted-price {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.course-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease;
  width: 100%;
  text-align: center;
}

.course-btn:hover {
  transform: translateY(-2px);
}

.features-section {
  padding: 80px 0;
  background: var(--secondary);
}

.feature-card {
  background: var(--secondary);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-main);
  border: 1px solid var(--teal-alt-soft);
  transition: transform 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.feature-card h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.course-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  color: var(--secondary);
}

.course-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.course-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.course-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* ==========================================================
                           Page Hero Section
    ==========================================================*/
.page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), #0f172a; /* Very dark navy/black */
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.breadcrumb-nav li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-nav a {
  color: var(--white);
  opacity: 0.8;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.breadcrumb-nav li.active {
  color: var(--white);
  font-weight: 500;
  opacity: 1;
}

.breadcrumb-nav .separator {
  font-size: 0.7rem;
  opacity: 0.5;
  color: var(--white);
}

/* ==========================================================
                           Hero Section
    ==========================================================*/
.hero-section {
  position: relative;
  min-height: 85vh;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background: var(--bg-overlay);
  width: 100%;
  min-height: 85vh;
  padding-bottom: 45px;
  display: flex;
  align-items: center;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--teal-alt));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px var(--bg-overlay);
}

.spinner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  animation: zoom 1.5s ease-in-out infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.5s;
}

.dot:nth-child(3) {
  animation-delay: 1s;
}

@keyframes zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

/* ==========================================================
                             Footer
    ==========================================================*/
footer {
  background: var(--dark);
  color: var(--secondary);
  padding: 40px 0 20px;
  
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: left;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo {
  width: 350px;
  height: 60px;
}
.footer-logo .logo img{ 
  width: 100%;
  height: auto;
}

.footer-logo .brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
}

.footer-logo small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.footer-description {
  color: var(--text-white-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-white-soft);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-white-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-white-soft);
}

.contact-item i {
  color: var(--primary);
  margin-top: 0.1rem;
  font-size: 1rem;
}

.footer-divider {
  border-color: var(--bg-white-soft);
  margin: 40px 0 30px;
}

.footer-bottom {
  padding-top: 20px;
}

.copyright {
  color: var(--text-white-muted);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: var(--text-white-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}