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

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #070b14;
  --bg-secondary: #0d1321;
  --bg-card: #111827;
  --bg-card-hover: #1a2236;
  --accent-blue: #2196F3;
  --accent-blue-light: #42A5F5;
  --accent-blue-dark: #1565C0;
  --accent-gradient: linear-gradient(135deg, #1565C0, #42A5F5);
  --text-primary: #FFFFFF;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: rgba(33, 150, 243, 0.15);
  --border-glow: rgba(33, 150, 243, 0.4);
  --shadow-blue: 0 0 30px rgba(33, 150, 243, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-blue); pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(33,150,243,0.5); pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-dot.hover { width: 14px; height: 14px; background: rgba(33,150,243,0.8); }
.cursor-ring.hover { width: 50px; height: 50px; border-color: var(--accent-blue); }
@media (max-width: 768px) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--accent-blue);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.section-label span { width: 30px; height: 2px; background: var(--accent-blue); }
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--accent-blue); }
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 600px;
  margin-bottom: 50px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(7, 11, 20, 0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  border-bottom-color: var(--border-color);
  background: rgba(7, 11, 20, 0.95);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800;
  background: var(--accent-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--accent-blue); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  font-size: 0.9rem; background: var(--accent-gradient);
  color: #fff; border: none; cursor: pointer; transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-primary);
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7, 11, 20, 0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--accent-blue); }
.mobile-close {
  position: absolute; top: 24px; right: 24px; background: none;
  border: none; color: #fff; font-size: 2rem; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 500; color: var(--accent-blue);
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.2);
  margin-bottom: 24px; animation: fadeInUp 0.6s ease;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 .highlight {
  background: var(--accent-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-description {
  font-size: 1.1rem; color: var(--text-secondary);
  margin-bottom: 36px; max-width: 500px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.25s both;
}
.hero-tags .tag {
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 500; background: rgba(33,150,243,0.08);
  border: 1px solid rgba(33,150,243,0.15); color: var(--accent-blue-light);
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.btn-primary {
  padding: 14px 32px; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; background: var(--accent-gradient);
  color: #fff; border: none; cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(33,150,243,0.3);
}
.btn-outline {
  padding: 14px 32px; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; background: transparent;
  color: var(--text-primary); border: 2px solid var(--border-color);
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  border-color: var(--accent-blue); color: var(--accent-blue);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-stat h3 {
  font-size: 2rem; font-weight: 800; color: var(--accent-blue);
}
.hero-stat p {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.hero-image {
  display: flex; justify-content: center; align-items: center;
  position: relative; animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-image-wrapper {
  width: 380px; height: 380px; border-radius: 50%;
  background: var(--accent-gradient); padding: 4px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.hero-image-wrapper img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.hero-image-wrapper::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px dashed rgba(33,150,243,0.3);
  animation: spin 20s linear infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== ABOUT ===== */
.about .container {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.about-image { position: relative; display: flex; justify-content: center; }
.about-img-wrapper {
  width: 320px; height: 320px; border-radius: 50%; overflow: hidden;
  background: var(--accent-gradient); padding: 4px;
  box-shadow: 0 0 40px rgba(33,150,243,0.2);
}
.about-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.about-image img:not(.about-profile-img) {
  border-radius: var(--radius-lg); width: 100%;
  border: 2px solid var(--border-color);
}
.about-experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 16px 24px;
  text-align: center; box-shadow: var(--shadow-card);
}
.about-experience-badge h3 {
  font-size: 2rem; font-weight: 800; color: var(--accent-blue);
}
.about-experience-badge p {
  font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
}
.about-text p { color: var(--text-secondary); margin-bottom: 20px; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.about-highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: rgba(33,150,243,0.05); border: 1px solid rgba(33,150,243,0.1);
}
.about-highlight-item .icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(33,150,243,0.15); display: flex;
  align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.about-highlight-item span {
  font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
}

/* ===== TOOLS & PLATFORMS ===== */
.tools-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}
.tools-header {
  display: flex; align-items: center; gap: 0;
}
.tools-title-block {
  flex-shrink: 0; padding-right: 32px;
}
.tools-title-block .section-title { font-size: clamp(1.4rem, 3vw, 2rem); }
.tools-divider {
  width: 2px; min-height: 60px; background: var(--border-color);
  flex-shrink: 0; margin-right: 32px;
}
.tools-marquee-wrapper {
  flex: 1; overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.tools-marquee { overflow: hidden; }
.tools-marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee-scroll 25s linear infinite;
}
.tools-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tool-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border-color);
  cursor: default; flex-shrink: 0;
  transition: var(--transition);
}
.tool-badge:hover {
  border-color: var(--border-glow); box-shadow: var(--shadow-blue);
}
.tool-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.tool-badge span {
  font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
  white-space: nowrap;
}

/* ===== SERVICES ===== */
.services { background: var(--bg-secondary); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent-gradient);
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px); border-color: var(--border-glow);
  box-shadow: var(--shadow-blue);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(33,150,243,0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
}

/* ===== RESULTS ===== */
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.results-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.results-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
.result-card img {
  width: 100%; height: 200px; object-fit: cover; object-position: top;
}
.result-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.result-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-blue);
  border-color: var(--border-glow);
}

.result-card-content { padding: 24px; }
.result-card-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.result-card-content p { font-size: 0.9rem; color: var(--text-secondary); }
.result-stats {
  display: flex; gap: 24px; margin-top: 16px;
}
.result-stat {
  text-align: center; padding: 8px 16px; background: rgba(33,150,243,0.08);
  border-radius: var(--radius-sm);
}
.result-stat h4 { font-size: 1.2rem; color: var(--accent-blue); font-weight: 700; }
.result-stat p { font-size: 0.75rem; color: var(--text-muted); }

/* ===== EXPERT LINKS ===== */
.expert-link {
  color: var(--accent-blue); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
  transition: var(--transition);
}
.expert-link:hover { color: var(--accent-blue-light); text-decoration-color: var(--accent-blue-light); }

/* ===== AWARDS ===== */
.awards { background: var(--bg-secondary); }
.awards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.award-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.award-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-blue);
  border-color: var(--border-glow);
}
.award-card img {
  width: 100%; height: 320px; object-fit: cover;
}
.award-card-content { padding: 24px; }
.award-card-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.award-card-content p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== MEETUPS ===== */
.meetups-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.meetup-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.meetup-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-blue);
  border-color: var(--border-glow);
}
.meetup-card img { width: 100%; height: 240px; object-fit: cover; }
.meetup-card-content { padding: 20px; }
.meetup-card-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.meetup-card-content p { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== SOCIAL / CONNECT ===== */
.connect { background: var(--bg-secondary); }
.social-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.social-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--bg-card);
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
  transition: var(--transition); cursor: pointer;
}
.social-card:hover {
  transform: translateY(-4px); border-color: var(--border-glow);
  box-shadow: var(--shadow-blue);
}
.social-card .social-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.social-card .social-info h4 { font-size: 0.95rem; font-weight: 600; }
.social-card .social-info p { font-size: 0.8rem; color: var(--text-muted); }
.social-card.linkedin .social-icon { background: rgba(10,102,194,0.15); color: #0a66c2; }
.social-card.facebook .social-icon { background: rgba(24,119,242,0.15); color: #1877f2; }
.social-card.instagram .social-icon { background: rgba(225,48,108,0.15); color: #e1306c; }
.social-card.twitter .social-icon { background: rgba(29,155,240,0.15); color: #1d9bf0; }
.social-card.github .social-icon { background: rgba(255,255,255,0.1); color: #fff; }
.social-card.medium .social-icon { background: rgba(255,255,255,0.1); color: #fff; }
.social-card.quora .social-icon { background: rgba(185,43,39,0.15); color: #b92b27; }
.social-card.google .social-icon { background: rgba(66,133,244,0.15); color: #4285f4; }
.social-card.featured .social-icon { background: rgba(33,150,243,0.15); color: #2196F3; }

/* ===== CONTACT ===== */
.contact-card {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); overflow: hidden;
}
.contact-card-left {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(21,101,192,0.08) 0%, rgba(33,150,243,0.04) 100%);
  border-right: 1px solid var(--border-color);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 32px;
}
.contact-card-title .highlight {
  background: var(--accent-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-highlights {
  list-style: none; display: flex; flex-direction: column; gap: 16px;
}
.contact-highlights li {
  display: flex; align-items: center; gap: 12px;
}
.contact-check {
  color: var(--accent-blue); font-size: 1.1rem; flex-shrink: 0;
}
.contact-highlights li span {
  font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
}
.contact-card-right { padding: 40px; }
.contact-form { background: none; border: none; padding: 0; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text-secondary);
}
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  color: var(--text-primary); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 14px; border-radius: var(--radius-sm);
  background: var(--accent-gradient); color: #fff; font-weight: 700;
  font-size: 0.95rem; border: none; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border-color);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800;
  background: var(--accent-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block; margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-info {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.footer-contact-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-secondary);
  transition: var(--transition);
}
.footer-contact-link i {
  color: var(--accent-blue); font-size: 0.9rem; width: 16px; text-align: center;
}
.footer-contact-link:hover { color: var(--accent-blue); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(33,150,243,0.08); border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.95rem; transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent-blue); color: #fff;
  border-color: var(--accent-blue); transform: translateY(-3px);
}
.footer-col {}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-col a {
  display: block; font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 12px; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent-blue); transform: translateX(4px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border-color);
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-credit { color: var(--text-muted); }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-tags { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrapper { width: 300px; height: 300px; }
  .about .container { grid-template-columns: 1fr; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card-left { border-right: none; border-bottom: 1px solid var(--border-color); }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid, .results-grid-3, .results-grid-4 { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .meetups-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-image-wrapper { width: 250px; height: 250px; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .tools-header { flex-direction: column; gap: 24px; text-align: center; }
  .tools-divider { width: 60px; min-height: 2px; margin-right: 0; }
  .tools-section { padding: 40px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-image-wrapper { width: 220px; height: 220px; }
  .contact-card-left { padding: 32px 24px; }
  .contact-card-right { padding: 32px 24px; }
}
