:root {
	--bg: #0b1020;
	--card: #121a35;
	--text: #e9ecf1;
	--muted: #9aa4b2;
	--accent: #4f8cff;
	--accent-2: #7b5cff;
	--success: #25d366;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: radial-gradient(1200px 800px at 80% -20%, rgba(79, 140, 255, 0.18), transparent),
		radial-gradient(1000px 800px at -10% 120%, rgba(123, 92, 255, 0.15), transparent),
		var(--bg);
	color: var(--text);
	overflow-x: hidden;
}

.container {
	width: min(100%, 1100px);
	margin: 0 auto;
	padding: 0 20px;
	overflow-x: hidden;
}

.site-header {
	padding: 28px 0 12px;
	position: sticky;
	top: 0;
	background: linear-gradient(180deg, rgba(11,16,32,0.95), rgba(11,16,32,0.7) 70%, transparent);
	backdrop-filter: saturate(140%) blur(6px);
	z-index: 10;
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	column-gap: 10px;
}

.brand-logo {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* Navigation */
.main-nav {
  position: relative;
  margin: 20px 0;
}

.nav-list {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease-in-out;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2000;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
    width: 46px;
    height: 46px;
    padding: 10px;
    z-index: 2000;
    position: fixed;
    top: 30px;
    right: 20px;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(123, 92, 255, 0.1));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
  
  .mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.2), rgba(123, 92, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .mobile-menu-toggle:hover::before {
    opacity: 0.6;
  }

  .mobile-menu-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(79, 140, 255, 0.2);
  }
  
  .mobile-menu-toggle.active {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.15), rgba(123, 92, 255, 0.15));
    box-shadow: 0 4px 25px rgba(79, 140, 255, 0.25);
  }
  
  .mobile-menu-toggle.active::before {
    opacity: 0.8;
  }

  .hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #4f8cff, #7b5cff);
    margin: 2.8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    position: relative;
    transform-origin: center;
  }
  
  .mobile-menu-toggle:hover .hamburger-line {
    background: linear-gradient(90deg, #5f9cff, #8b6cff);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #fff;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #fff;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 90px 25px 40px;
    box-shadow: -5px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-list.active {
    transform: translateX(0);
  }

  .nav-list li {
    width: 100%;
    margin: 6px 0;
    opacity: 0.9;
    transition: opacity 0.2s ease;
  }

  .nav-list li:hover {
    opacity: 1;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 16px 22px;
    color: #e9ecf1;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 6px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
  }

  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4f8cff, #7b5cff);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-link:hover, 
  .nav-link.active {
    background: rgba(79, 140, 255, 0.1);
    color: #fff;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 5px 15px rgba(79, 140, 255, 0.1);
    border-color: rgba(79, 140, 255, 0.1);
  }
  
  .nav-link:hover::before,
  .nav-link.active::before {
    transform: scaleY(1);
  }
  
  .nav-link i {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #4f8cff;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover i,
  .nav-link.active i {
    color: #fff;
    transform: scale(1.1);
  }

  .nav-link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
  }

  /* Hamburger animation */
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Place tagline on a new row spanning full width */
.header-inner .tagline {
  grid-column: 1 / -1;
}

.brand {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.tagline {
	margin: 6px 0 0;
	color: var(--muted);
}

.event-card {
	margin-top: 28px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	box-shadow: var(--shadow);
	padding: 22px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 18px;
}

.event-info h2 {
	margin: 0 0 10px;
}

.event-info p {
	margin: 6px 0;
}

.countdown {
	background: linear-gradient(180deg, rgba(79,140,255,0.12), rgba(123,92,255,0.12));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}

.countdown h3 {
	margin: 0 0 10px;
	font-weight: 600;
}

.timer {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.time-seg {
	background: rgba(255,255,255,0.06);
	border-radius: 10px;
	padding: 12px 6px;
}

.time-seg span {
	display: block;
	font-size: 28px;
	font-weight: 700;
}

.time-seg small {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 0.3px;
}

.live-note {
	margin-top: 10px;
	color: #8ff7c2;
	font-weight: 600;
}

.about {
	margin-top: 26px;
}

.cta {
	margin-top: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.primary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 10px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 6px 16px rgba(79,140,255,0.35);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.primary-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(79,140,255,0.45);
}

.note {
	color: var(--muted);
}

.socials {
	margin: 26px auto 0;
	text-align: center;
}

.social-grid {
	display: flex;
	justify-content: center;
	gap: 12px;
	max-width: 200px;
	margin: 0 auto;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 10px;
	padding: 10px 12px;
	color: var(--text);
	text-decoration: none;
	transition: background 0.12s ease, transform 0.12s ease;
}

.social-btn:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-1px);
}

.social-btn svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.linkedin { color: #0a66c2; }
.instagram { color: #e1306c; }
.whatsapp { color: var(--success); }

.site-footer {
	margin: 28px 0 20px;
	color: var(--muted);
	text-align: center;
}

/* Organizers section - enhanced cards */
.organizers {
	margin-top: 32px;
}

.org-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.org-list li {
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	box-shadow: var(--shadow);
	padding: 14px 16px;
	transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.org-list li:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0,0,0,0.45);
	border-color: rgba(79,140,255,0.35);
}

/* Role badge (the <strong> inside li) */
.org-list li > strong {
	display: inline-block;
	padding: 4px 8px;
	margin-right: 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	color: #fff;
}

/* Name that follows the role */
.org-list li {
	font-weight: 600;
}

/* Bio styling */
.org-bio {
	margin: 10px 0 0;
	padding-left: 12px;
	border-left: 3px solid rgba(123,92,255,0.6);
	color: var(--muted);
	line-height: 1.6;
}

/* Equal-height tweaks for organizers */
.org-list {
	grid-auto-rows: 1fr;
	align-items: stretch;
}

.org-list li {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.org-bio {
	margin-top: 10px;
	flex: 1 1 auto;
}

/* Tighten spacing below the organizers grid and above CTA */
.organizers + .cta {
	margin-top: 20px;
}

/* Navigation Styles */
.main-nav {
	margin: 20px 0 30px;
	position: relative;
}



.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.nav-link {
	color: var(--text);
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all 0.2s ease;
	font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	color: #fff;
}

/* Hero Section */
.hero {
	text-align: center;
	margin: 40px 0 60px;
	padding: 40px 20px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 30px;
	line-height: 1.2;
}

.hero-cta {
	margin-top: 30px;
}

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

.about h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 2.2rem;
}

.about-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.vision, .mission, .goal {
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vision:hover, .mission:hover, .goal:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0,0,0,0.45);
}

.vision h3, .mission h3, .goal h3 {
	margin: 0 0 16px;
	color: var(--accent);
	font-size: 1.3rem;
}

.vision p, .mission p, .goal p {
	margin: 0;
	line-height: 1.6;
	color: var(--muted);
}

.team {
    padding: 40px 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team h2 {
    font-size: 3rem;
    margin: 0 auto 10px;
    background: linear-gradient(90deg, #0078d4, #00bcf2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.team-subtitle {
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
    padding: 0 20px;
    display: block;
}

.team-wrapper {
    width: 100%;
    overflow-x: auto;
    position: relative;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.team-wrapper::-webkit-scrollbar {
    display: none;  /* Hide scrollbar for Chrome, Safari and Opera */
}

.team-wrapper:active {
    cursor: grabbing;
}

.team-grid {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 40px 20px;
    will-change: transform;
    transition: transform 0.1s linear;
    position: relative;
    left: 0;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Hide the duplicate grid */
#teamGridDuplicate {
    display: none;
}

/* Navigation buttons */
.team-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s, opacity 0.3s;
    opacity: 0.7;
}

.team-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.team-nav-btn.prev {
    left: 10px;
}

.team-nav-btn.next {
    right: 10px;
}

/* Hide buttons on mobile */
@media (max-width: 768px) {
    .team-nav-btn {
        display: none !important;
    }
}

.team-card {
    flex: 0 0 auto;
    width: 280px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-grid-inner {
    display: flex;
    gap: 30px;
    padding: 10px 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px)); /* Move left by 50% */
    }
    100% {
        transform: translateX(calc(-100% - 30px)); /* Account for gap */
    }
}

/* Animation for the carousel */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move left by 50% to show the duplicated items */
    }
}

@keyframes scrollDuplicate {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 30px)); /* Match the distance of the first animation */
    }
}

.team-card {
    flex: 0 0 280px;
    width: 280px;
    perspective: 1000px;
    height: 400px;
    margin: 0;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-back {
    transform: rotateY(180deg);
    justify-content: flex-start;
    padding-top: 24px;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--accent);
    box-shadow: 0 8px 20px rgba(79, 140, 255, 0.3);
}

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

.team-role {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
}

.team-card h3 {
    margin: 0 0 16px;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-link {
    color: var(--text);
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover svg {
    transform: scale(1.15);
}

/* Social brand colors on hover */
.social-link.linkedin:hover {
    background: #0a66c2;
    color: white;
    border-color: #0a66c2;
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-color: transparent;
}

.social-link.github:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.social-link.twitter:hover {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.social-link.medium:hover {
    background: #00ab6c;
    color: white;
    border-color: #00ab6c;
}

/* Animation for social icons */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.team-card:hover .social-link {
    animation: float 2s ease-in-out infinite;
}

.team-card:hover .social-link:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:hover .social-link:nth-child(3) {
    animation-delay: 0.4s;
}

.team-card:hover .social-link:nth-child(4) {
    animation-delay: 0.6s;
}

/* Domains Section */
.domains {
	margin: 60px 0;
}

.domains h2 {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 16px;
}

.domains-subtitle {
	text-align: center;
	color: var(--muted);
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.domains-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.domain-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.domain-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0,0,0,0.45);
}

.domain-card h3 {
	margin: 0 0 8px;
	font-size: 1.4rem;
	color: var(--accent);
}

.domain-tagline {
	margin: 0 0 16px;
	font-weight: 600;
	color: var(--accent-2);
	font-style: italic;
}

.domain-card ul {
	margin: 0;
	padding-left: 20px;
	list-style: none;
}

.domain-card li {
	margin: 8px 0;
	color: var(--muted);
	position: relative;
}

.domain-card li::before {
	content: "•";
	color: var(--accent);
	font-weight: bold;
	position: absolute;
	left: -16px;
}

/* Join CTA Section */
.join-cta {
	text-align: center;
	margin: 60px 0;
	padding: 40px 20px;
	background: linear-gradient(180deg, rgba(79,140,255,0.12), rgba(123,92,255,0.12));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.join-cta h2 {
	font-size: 2rem;
	margin-bottom: 24px;
}

/* Contact Section */
.contact {
	margin: 60px 0;
}

.contact h2 {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 16px;
}

.contact-subtitle {
	text-align: center;
	color: var(--muted);
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.contact-info {
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 32px;
	box-shadow: var(--shadow);
}

.contact-methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
}

.contact-item strong {
	display: block;
	color: var(--accent);
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.contact-item p {
    margin: 4px 0;
    color: var(--muted);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.project-tags span {
	background: rgba(157, 164, 181, 0.1);
	color: var(--muted);
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 4px;
}

.cta-section {
	text-align: center;
	margin-top: 70px;
	padding: 50px 20px;
	background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(123, 92, 255, 0.1));
	border-radius: 12px;
}

.cta-section h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.cta-section p {
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto 25px;
}

.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	color: white;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(79, 140, 255, 0.3);
}

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

.btn-secondary:hover {
	background: rgba(79, 140, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
	.projects-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 25px;
	}
	
	.projects-hero h1 {
		font-size: 2.2rem;
	}
	
	.cta-section h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 520px) {
	.brand { font-size: 22px; }
	.time-seg span { font-size: 22px; }
	
	.hero-title {
		font-size: 1.6rem;
	}
	
	.about-content,
	.domains-grid {
		grid-template-columns: 1fr;
	}
	
	.team-grid {
		overflow-x: auto;
		animation: none;
		padding: 20px 20px;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        scroll-behavior: smooth;
    }
    
    .team-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }
	
	.team-card {
		height: 350px;
		flex: 0 0 250px;
		min-width: 250px;
	}
	
	.team-image {
		width: 120px;
		height: 120px;
	}
	
	.team-bio {
		font-size: 0.85rem;
	}
	
	.social-link {
		padding: 8px 12px;
		font-size: 0.85rem;
	}
}
