:root {
  --primary: #8b3cf6;
  --secondary: #ff6a3d;
  --accent: #ffd84d;
  --pink: #e25bd8;
  --orange: #ff7a30;

  --dark: #0b0920;
  --dark-soft: #15112d;
  --text: #181426;
  --muted: #6b647a;
  --white: #ffffff;
  --light: #fbf7ff;

  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(15, 9, 32, 0.16);
  --radius: 26px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(139, 60, 246, 0.12), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(255, 106, 61, 0.10), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 216, 77, 0.08), transparent 30%),
    var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section-padding {
  padding: 90px 7%;
}

/* HEADER / NAVBAR */

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  position: relative;
  width: min(1220px, calc(100% - 40px));
  height: 82px;
  margin: 20px auto 0;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.35s ease;
}

.site-header.scrolled .navbar {
  height: 72px;
  margin-top: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(15, 9, 32, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 2;
}

.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  z-index: 2;
}

.nav-menu a {
  position: relative;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  color: #ffffff;
  transition: 0.3s ease;
}

.site-header.scrolled .nav-menu a {
  color: var(--dark);
}

.nav-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(139, 60, 246, 0.16), rgba(255, 106, 61, 0.13));
  opacity: 0;
  transition: 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  opacity: 1;
}

.nav-menu a:hover {
  transform: translateY(-2px);
}

.nav-menu a.active {
  color: #fff;
}

.site-header.scrolled .nav-menu a.active {
  color: var(--primary);
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, #8b3cf6, #e25bd8, #ff7a30) !important;
  border-radius: 14px !important;
  box-shadow: 0 14px 34px rgba(255, 106, 61, 0.28);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(139, 60, 246, 0.32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #8b3cf6, #ff6a3d);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(139, 60, 246, 0.28);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 5px auto;
  border-radius: 10px;
}

/* HERO */

.hero {
  position: relative;
  height: 90vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slider,
.hero-slide {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 9, 32, 0.92) 0%, rgba(11, 9, 32, 0.68) 42%, rgba(11, 9, 32, 0.22) 100%),
    radial-gradient(circle at 24% 50%, rgba(139, 60, 246, 0.42), transparent 36%),
    radial-gradient(circle at 65% 45%, rgba(255, 106, 61, 0.18), transparent 32%);
}

.hero-content {
  position: absolute;
  z-index: 5;
  top: 52%;
  left: 7%;
  transform: translateY(-50%);
  max-width: 760px;
  color: var(--white);
  perspective: 1000px;
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 700;
  color: #fff4cf;
}

.hero-content h1,
.hero-content h2 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.hero-content p {
  max-width: 640px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: var(--transition);
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, #8b3cf6, #e25bd8, #ff7a30);
  box-shadow: 0 18px 46px rgba(255, 106, 61, 0.28);
}

.secondary-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
}

.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover {
  transform: translateY(-4px);
}

.slider-controls {
  position: absolute;
  right: 7%;
  bottom: 84px;
  z-index: 20;
  display: flex;
  gap: 12px;
}

.slider-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  font-size: 34px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-controls button:hover {
  background: linear-gradient(135deg, #8b3cf6, #ff7a30);
  color: var(--white);
}

.slider-dots {
  position: absolute;
  left: 7%;
  bottom: 98px;
  z-index: 20;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots button.active {
  width: 38px;
  background: linear-gradient(135deg, #ffd84d, #ff7a30);
}

/* SECTION HEAD */

.section-head {
  max-width: 1120px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head.compact {
  margin-bottom: 30px;
}

.section-subtitle {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(139, 60, 246, 0.10);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.4px;
  margin-bottom: 14px;
  color: var(--dark);
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* UPDATES */

.updates {
  position: relative;
  background:
  #ffffff;
    /* radial-gradient(circle at 12% 16%, rgba(139, 60, 246, 0.08), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255, 106, 61, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf7ff 100%); */
  overflow: hidden;
}

.updates-carousel {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 20px;
  background: #ffffff;
  box-shadow: none;
}

.updates-track {
  display: flex;
  gap: 26px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
   background: #ffffff;
}

.update-card {
  flex: 0 0 calc((100% - 52px) / 3);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
 box-shadow: 0 18px 55px rgba(15, 9, 32, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.update-card:hover {
  transform: translateY(-12px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 24px 60px rgba(15, 9, 32, 0.10);
}

.update-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.update-card:hover .update-image img {
  transform: scale(1.1);
}

.tag {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.tag.event {
  background: linear-gradient(135deg, #8b3cf6, #e25bd8);
}

.tag.project {
  background: linear-gradient(135deg, #ff6a3d, #ffd84d);
  color: #21130b;
}

.tag.news {
  background: linear-gradient(135deg, #e25bd8, #ff7a30);
}

.update-content {
  padding: 26px;
}

.update-content time {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.update-content h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--dark);
}

.update-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.update-content a {
  color: var(--primary);
  font-weight: 800;
}

.updates-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.updates-controls button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #8b3cf6, #ff6a3d);
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(255, 106, 61, 0.25);
  transition: var(--transition);
}

.updates-controls button:hover {
  transform: translateY(-4px) scale(1.05);
}

.section-action {
  margin-top: 32px;
  text-align: center;
}

.outline-btn {
  border: 1px solid rgba(139, 60, 246, 0.22);
  color: var(--primary);
  background: rgba(139, 60, 246, 0.06);
}

/* QUOTE

.quote-section {
  padding: 90px 7%;
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 60, 246, 0.28), transparent 30%),
    radial-gradient(circle at 80% 58%, rgba(255, 106, 61, 0.24), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 216, 77, 0.12), transparent 32%),
    linear-gradient(135deg, #0b0920, #15112d);
}

.quote-card {
  position: relative;
  max-width: 980px;
  margin: auto;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 36px;
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent, rgba(255, 216, 77, 0.28), transparent);
  opacity: 0.36;
  pointer-events: none;
}

.quote-mark {
  font-size: 120px;
  line-height: 0.6;
  color: var(--accent);
  font-family: Georgia, serif;
}

.quote-card p {
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.quote-card span {
  color: #ffd84d;
  font-weight: 800;
} */


/* QUOTE - MODERN LIGHT DESIGN */

.quote-section {
  position: relative;
  padding: 20px 7%;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(139, 60, 246, 0.10), transparent 28%),
    radial-gradient(circle at 88% 35%, rgba(255, 106, 61, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf7ff 100%);
    margin-top: 0; 
}

.quote-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.7;
  pointer-events: none;
}

.quote-shape-1 {
  width: 230px;
  height: 230px;
  left: -90px;
  top: 80px;
  background: rgba(139, 60, 246, 0.12);
}

.quote-shape-2 {
  width: 260px;
  height: 260px;
  right: -110px;
  bottom: 60px;
  background: rgba(255, 106, 61, 0.12);
}

.quote-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.quote-head h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  color: var(--dark);
  margin-bottom: 16px;
}

.quote-head h2 span,
.quote-head h2 strong {
  color: var(--primary);
}

.quote-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.quote-wrapper {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.quote-card {
  flex: 1;
  position: relative;
  min-height: 200px;
   padding: 44px 64px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 60, 246, 0.10);
  box-shadow: 0 28px 90px rgba(15, 9, 32, 0.10);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.quote-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 110px rgba(15, 9, 32, 0.16);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(139, 60, 246, 0.08), transparent 42%),
    radial-gradient(circle at 90% 18%, rgba(255, 216, 77, 0.20), transparent 24%);
  pointer-events: none;
}

.quote-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
  background: linear-gradient(135deg, #8b3cf6, #e25bd8, #ff7a30);
  box-shadow: 0 18px 44px rgba(139, 60, 246, 0.28);
}

.quote-card p {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -1px;
  color: var(--dark);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.quote-card p::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 0;
  color: var(--primary);
  margin-right: 8px;
  vertical-align: -10px;
}

.quote-card p::after {
  content: "”";
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 0;
  color: var(--secondary);
  margin-left: 8px;
  vertical-align: -10px;
}

.quote-author {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.quote-author span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #8b3cf6, #ff7a30);
}

.quote-author strong {
  display: block;
  color: var(--dark);
  font-size: 16px;
}

.quote-author small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.quote-nav {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: none;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8b3cf6, #ff6a3d);
  font-size: 34px;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(139, 60, 246, 0.24);
  transition: 0.35s ease;
}

.quote-nav:hover {
  transform: translateY(-4px) scale(1.06);
}

.quote-dots {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.quote-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(139, 60, 246, 0.22);
  cursor: pointer;
  transition: 0.35s ease;
}

.quote-dots button.active {
  width: 34px;
  background: linear-gradient(135deg, #8b3cf6, #ff7a30);
}

.quote-card.changing p,
.quote-card.changing .quote-author {
  opacity: 0;
  transform: translateY(12px);
}

/* PARTNERS */

.partners {
  background: var(--white);
  overflow: hidden;
}

.partners-marquee {
  border: 1px solid rgba(139, 60, 246, 0.10);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 70px rgba(15, 9, 32, 0.08);
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  padding: 30px 40px;
  animation: marquee 26s linear infinite;
}

.partners-track img {
  height: 58px;
  max-width: 160px;
  object-fit: contain;

  filter: none;
  opacity: 1;

  transition: var(--transition);
}

.partners-track img:hover {
  transform: scale(1.06);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PREMIUM FOOTER */

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 18%, rgba(139, 60, 246, 0.28), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(226, 91, 216, 0.22), transparent 30%),
    radial-gradient(circle at 76% 86%, rgba(255, 106, 61, 0.20), transparent 32%),
    linear-gradient(135deg, #080716 0%, #0d0a24 46%, #150d2c 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.65;
  pointer-events: none;
}

.footer-glow-1 {
  width: 340px;
  height: 340px;
  left: -130px;
  top: -90px;
  background: rgba(139, 60, 246, 0.34);
}

.footer-glow-2 {
  width: 380px;
  height: 380px;
  right: -160px;
  bottom: -150px;
  background: rgba(255, 106, 61, 0.26);
}

.footer-content {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 40px));
  margin: auto;
  padding: 72px 0 46px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
  gap: 42px;
}

.footer-brand {
  max-width: 390px;
}

.footer-logo {
  display: inline-flex;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.footer-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.footer-social a:nth-child(1):hover {
  background: linear-gradient(135deg, #8b3cf6, #e25bd8, #ff7a30);
}

.footer-social a:nth-child(2):hover {
  background: linear-gradient(135deg, #2563eb, #8b3cf6);
}

.footer-social a:nth-child(3):hover {
  background: linear-gradient(135deg, #ff0033, #ff7a30);
}

.footer-social a:nth-child(4):hover {
  background: linear-gradient(135deg, #0a66c2, #8b3cf6);
}

.footer-social a:hover {
  transform: translateY(-6px) rotate(4deg);
  box-shadow: 0 16px 38px rgba(255, 106, 61, 0.24);
  border-color: transparent;
}

.footer-links h3,
.footer-contact h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b3cf6, #ff7a30);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  position: relative;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  font-weight: 650;
  transition: 0.3s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd84d, #ff7a30);
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.footer-links a:hover {
  padding-left: 18px;
  color: #fff;
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact-item {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.095);
  transition: 0.35s ease;
}

.footer-contact-item i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #8b3cf6, #ff6a3d);
  box-shadow: 0 10px 24px rgba(139, 60, 246, 0.24);
}

.footer-contact-item span {
  font-size: 14px;
  line-height: 1.4;
}

.footer-contact-item:hover {
  transform: translateX(6px);
  color: #fff;
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 40px));
  margin: auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.60);
}

.footer-bottom p {
  font-size: 13px;
}

.footer-bottom a {
  color: #ffd84d;
  font-weight: 850;
}

.footer-bottom a:hover {
  color: #ff7a30;
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .navbar {
    height: 68px;
  }

  .menu-toggle {
    display: block;
    z-index: 3;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    left: 50%;
    width: min(92%, 420px);
    transform: translateX(-50%) translateY(-18px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-menu a {
    display: block;
    text-align: center;
    color: var(--dark);
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: none;
  }

  .update-card {
    flex: 0 0 calc((100% - 26px) / 2);
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 36px 0 24px;
  }
}

@media (max-width: 576px) {
    /* .quote-section */
  .section-padding
   {
    padding: 64px 20px;
  }

  .navbar {
    width: calc(100% - 22px);
    padding: 0 14px;
  }

  .logo img {
    height: 44px;
  }

  .hero {
    height: 92vh;
    min-height: 650px;
  }

  .hero-content h1,
  .hero-content h2 {
    letter-spacing: -1.4px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .outline-btn {
    width: 100%;
  }

  .slider-controls {
    right: 20px;
    bottom: 34px;
  }

  .slider-dots {
    left: 20px;
    bottom: 52px;
  }

  .slider-controls button {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .updates-track {
    gap: 18px;
  }

  .update-card {
    flex: 0 0 100%;
  }

  .update-image {
    height: 210px;
  }

  .quote-card {
    border-radius: 26px;
  }

  .quote-mark {
    font-size: 86px;
  }

  .partners-track {
    gap: 42px;
    padding: 24px;
  }

  .partners-track img {
    height: 46px;
  }

  .footer-bottom span {
    display: block;
    margin: 6px 0 0;
  }
}
@media (max-width: 576px) {
  .quote-section {
    padding: 54px 12px;
  }

  .quote-head {
    margin: 0 auto 24px;
  }

  .quote-head p {
    font-size: 14px;
    line-height: 1.5;
  }

  .quote-wrapper {
    width: 100%;
    gap: 8px;
    align-items: center;
  }

  .quote-card {
    min-height: auto;
    padding: 26px 20px;
    border-radius: 24px;
  }

  .quote-card p {
    max-width: 100%;
    margin: 0 auto 20px;
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -0.4px;
    text-align: center;
  }

  .quote-card p::before,
  .quote-card p::after {
    font-size: 28px;
    vertical-align: -6px;
    margin: 0 4px;
  }

  .quote-author {
    justify-content: center;
    gap: 10px;
  }

  .quote-author span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 13px;
  }

  .quote-author strong {
    font-size: 13px;
  }

  .quote-author small {
    font-size: 11px;
    line-height: 1.25;
  }

  .quote-nav {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 22px;
  }

  .quote-dots {
    margin-top: 18px;
  }

  .quote-icon {
    display: none;
  }
}

/* @media (max-width: 576px) {
  .quote-section {
    padding: 72px 20px;
  }

  .quote-wrapper {
    gap: 10px;
  }

  .quote-nav {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 28px;
  }

  .quote-card {
    min-height: 300px;
    border-radius: 26px;
  }

  .quote-icon {
    width: 58px;
    height: 58px;
    font-size: 58px;
  }
} */

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-content {
    width: calc(100% - 36px);
    padding: 56px 0 34px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    width: calc(100% - 36px);
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}