/* Portfolio V2 - Complete Styles (Premium Dark + Strategic Green) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

/* Variables */
:root {
  /* Vibrant Purple/Indigo Accent - Modern Gradient */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #818cf8;
  --accent: #ec4899;
  
  /* Premium Gray Palette */
  --bg: #fafafa;
  --bg-secondary: #f5f5f5;
  --text: #18181b;
  --text-secondary: #52525b;
  --border: #e4e4e7;
  
  /* Sophisticated Shadows - No Color Tint */
  --shadow-sm: 0 1px 3px rgba(24, 24, 27, 0.08);
  --shadow-md: 0 4px 12px rgba(24, 24, 27, 0.10);
  --shadow-lg: 0 10px 30px rgba(24, 24, 27, 0.12);
  --shadow-xl: 0 20px 50px rgba(24, 24, 27, 0.15);
}

body.dark-mode {
  --primary: #818cf8;
  --secondary: #a5b4fc;
  --accent: #f472b6;
  --bg: #09090b;
  --bg-secondary: #18181b;
  --text: #fafafa;
  --text-secondary: #d4d4d8;
  --border: #27272a;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--text-secondary);
}

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

body.dark-mode .btn-white {
  background: var(--bg-secondary);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
}

body.dark-mode .header {
  background: rgba(9, 9, 11, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav__logo i {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.75rem;
}

.nav__logo:hover {
  transform: scale(1.05);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav__link i {
  font-size: 1.125rem;
  display: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav__toggle:hover,
.nav__close:hover {
  color: var(--primary);
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

#current-language {
  font-size: 0.875rem;
  font-weight: 600;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 250px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  max-height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-search {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.language-search input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--bg-secondary);
  color: var(--text);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.language-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.language-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 0.5rem;
}

.language-list::-webkit-scrollbar {
  width: 6px;
}

.language-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 50px;
}

.language-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.language-option {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.language-option:hover {
  background: var(--bg-secondary);
}

.language-option.active {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.language-option.hidden {
  display: none;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__subtitle {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hero Image */
.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__blob {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero__blob svg {
  width: 100%;
  height: 100%;
  fill: var(--bg-secondary);
  filter: drop-shadow(var(--shadow-lg));
}

.hero__blob img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--text-secondary);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--text-secondary);
  border-radius: 2px;
  animation: scroll-animation 2s ease-in-out infinite;
}

@keyframes scroll-animation {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Features Section */
.features {
  background: var(--bg-secondary);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 1rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.25);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta__title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer__logo i {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.25);
}

.footer__title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: var(--primary);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__copy {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg);
    padding: 4rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav__link i {
    display: block;
  }

  .nav__link::after {
    display: none;
  }

  .nav__toggle,
  .nav__close {
    display: block;
  }

  .nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

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

  .hero__blob svg {
    width: 300px;
    height: 300px;
  }

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

  .cta__title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}


/* Page Hero (for inner pages) */
.page-hero {
  padding: 7rem 0 3rem;
  background: var(--bg-secondary);
}

.page-hero .container {
  text-align: center;
}

.page-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Terms of Service layout */
.tos-content {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .tos-content {
    padding: 3rem 3rem;
  }
}

.tos-section {
  margin-bottom: 2.25rem;
}

.tos-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.tos-section h3 {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
}

.tos-section p,
.tos-section li {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.98rem;
}

.tos-section ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
}

.warning-box {
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  margin: 1rem 0 1.5rem;
  border-left: 4px solid #ef4444;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.highlight-box {
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  margin: 1rem 0 1.5rem;
  background: rgba(99, 102, 241, 0.05);
  border-left: 4px solid var(--primary);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.warning-box h3,
.highlight-box h3 {
  margin-top: 0;
}

.warning-box p,
.highlight-box p {
  margin: 0.35rem 0;
}

/* Universities & schools section */
.universities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.university-card {
  background: var(--bg);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.university-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.university-card span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}


/* ========================================
   PARTNER SHOWCASE STYLES
   Add this to your main styles.css file
   (Extracted from inline styles for better performance)
   ======================================== */

.partners-showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, 
        var(--bg) 0%, 
        var(--bg-alt) 50%, 
        var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.partners-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        transparent);
    opacity: 0.3;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.showcase-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.partners-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.showcase-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
}

.showcase-card:hover::before {
    transform: scaleX(1);
}

.showcase-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.showcase-card:hover .showcase-card-shine {
    left: 100%;
}

.showcase-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.partner-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-card:hover .partner-logo-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
}

.partner-initial {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.partner-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.partner-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding: 0.375rem 1rem;
    background: var(--bg-alt);
    border-radius: 50px;
}

.partner-location i {
    color: var(--primary);
}

.partner-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.partners-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.05), 
        rgba(59, 130, 246, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.impact-stat {
    text-align: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.impact-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.partners-cta {
    margin-top: 3rem;
}

.cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;  /* ← ADD THIS LINE */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-text {
    color: white;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    gap: 1rem;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .partners-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .cta-icon {
        order: -1;
    }
}

@media (max-width: 768px) {
    .partners-showcase {
        padding: 3rem 0;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .partners-showcase-grid {
        grid-template-columns: 1fr;
    }

    .partners-impact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .partners-impact {
        grid-template-columns: 1fr;
    }

    .partner-logo-circle {
        width: 80px;
        height: 80px;
    }

    .partner-initial {
        font-size: 1.5rem;
    }

    .showcase-card {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .showcase-card,
    .showcase-card-shine,
    .partner-logo-circle,
    .cta-button {
        transition: none !important;
    }
    
    .showcase-card:hover {
        transform: none !important;
    }
    
    @keyframes pulse {
        0%, 100% { transform: none; opacity: 0.5; }
    }
}

/* Dark mode support (if you have dark mode) */
@media (prefers-color-scheme: dark) {
    .showcase-card {
        background: var(--dark-bg, #1f2937);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .partner-location {
        background: var(--dark-bg-alt, #111827);
    }
}







//----------------------------


/* ==========================================
   PARTNERS SHOWCASE - Logo Style Design
   ========================================== */

.partners-showcase {
    padding: 6rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.partners-showcase::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.showcase-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.showcase-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.showcase-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Partners Grid */
.partners-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Showcase Card */
.showcase-card {
    position: relative;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

body.dark-mode .showcase-card {
    background: var(--bg-secondary);
}

.showcase-card-content {
    position: relative;
    z-index: 2;
}

/* Featured Card */
.showcase-card-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, 
        rgba(34, 197, 94, 0.05) 0%, 
        var(--bg-secondary) 100%
    );
}

.showcase-featured-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Card Shine Effect */
.showcase-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

/* Hover Effects */
.showcase-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.2);
}

.showcase-card:hover .showcase-card-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.showcase-card:hover .partner-logo-circle {
    transform: scale(1.08) rotate(5deg);
}

/* Logo Circle */
.partner-logo-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.15), 
        rgba(16, 185, 129, 0.15)
    );
    border: 3px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-premium {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.25), 
        rgba(16, 185, 129, 0.25)
    );
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.partner-logo-engineering {
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.15), 
        rgba(16, 185, 129, 0.15)
    );
    border-color: var(--accent);
}

/* Partner Initial/Logo Text */
.partner-initial {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

/* Card Title */
.showcase-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Location */
.showcase-card-location {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.showcase-card-location i {
    color: var(--primary);
}

/* Type Badge */
.showcase-card-type {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.partner-type-engineering {
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent);
}

/* Impact Stats */
.partners-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.impact-stat {
    text-align: center;
}

.impact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.impact-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.impact-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Box */
.partners-join-cta {
    position: relative;
    z-index: 1;
}

.cta-content {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 1.75rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    color: white;
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.25);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-text p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-content .btn {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    font-weight: 700;
    white-space: nowrap;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .partners-showcase {
        padding: 4rem 0;
    }

    .showcase-title {
        font-size: 2.25rem;
    }

    .partners-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .cta-icon {
        order: -1;
    }
}

@media (max-width: 768px) {
    .partners-showcase {
        padding: 3rem 0;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .partners-showcase-grid {
        grid-template-columns: 1fr;
    }

    .partners-impact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .partners-impact {
        grid-template-columns: 1fr;
    }

    .partner-logo-circle {
        width: 80px;
        height: 80px;
    }

    .partner-initial {
        font-size: 1.5rem;
    }

    .showcase-card {
        padding: 2rem 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .showcase-card,
    .showcase-card-shine,
    .partner-logo-circle {
        transition: none !important;
    }
    
    .showcase-card:hover {
        transform: none !important;
    }
}



.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    margin-bottom: 1rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(16,185,129,0.06));
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(148,163,184,0.35);
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(15,23,42,0.16);
    background: linear-gradient(135deg, rgba(59,130,246,0.10), rgba(16,185,129,0.10));
}


.faq-answer {
    margin-top: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* large enough for the content */
    opacity: 1;
}



.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 1rem;
}

.faq-question span {
    flex: 1;
}

.faq-question .fa-chevron-down {
    font-size: 0.9rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-question .fa-chevron-down {
    transform: rotate(180deg);
    background: rgba(59, 130, 246, 0.16);
}

.faq-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(15,23,42,0.04);
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.faq-pill i {
    font-size: 0.7rem;
}
