/* Nexcent Studios Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');

:root {
  --primary-green: #00D75F;
  --accent-green: #00A642;
  --gradient-accent: linear-gradient(135deg, #00D75F 0%, #00A642 100%);
  --background-dark: #0A0A0A;
  --text-main: #FFFFFF;
  --text-secondary: #A0FFA5;
  --text-muted: #7EDC7B;
  --input-bg: rgba(0, 215, 95, 0.05);
  --input-border: #00D75F;
  --shadow-glow: 0 0 20px rgba(0, 215, 95, 0.3);
  --container-width: min(1400px, 94%);
  --container-padding: clamp(0.75rem, 2vw, 1.5rem);
  --section-spacing: clamp(2rem, 4vw, 3.5rem);
  --text-scale-ratio: 1.2;
  --font-size-base: clamp(14px, 0.75vw + 0.4rem, 16px);
  --font-size-sm: clamp(12px, 0.7vw + 0.35rem, 14px);
  --font-size-lg: clamp(16px, 1vw + 0.5rem, 18px);
  --glass-bg: rgba(0, 215, 95, 0.1);
  --glass-border: rgba(0, 215, 95, 0.2);
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-border: rgba(0, 215, 95, 0.15);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: auto;
  min-height: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html, body {
  height: auto;
  margin: 0;
  padding: 0;
  background: var(--background-dark);
  color: var(--text-main);
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

@keyframes pageLoad {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  animation: pageLoad 0.6s ease-out forwards;
  position: relative;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Header Styles */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem var(--container-padding);
  position: relative;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 215, 95, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 215, 95, 0.2), 
    transparent
  );
  mask: linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-main);
  text-decoration: none;
  position: relative;
  padding: 0.3rem;
  transition: all 0.3s ease;
}

.navbar-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.navbar-logo:hover img {
  transform: rotate(-5deg) scale(1.05);
  border: 2px solid var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 215, 95, 0.3);
}

.navbar-links {
  display: flex;
  gap: 0.3rem;
  background: rgba(0, 215, 95, 0.05);
  padding: 0.3rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 215, 95, 0.1);
}

.navbar-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.2px;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--background-dark);
  background: var(--primary-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 215, 95, 0.25);
}

.navbar-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-links a span {
  position: relative;
  z-index: 1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  background: rgba(0, 215, 95, 0.1);
  border: 1px solid rgba(0, 215, 95, 0.2);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(0, 215, 95, 0.15);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary-green);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  position: absolute;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  width: 20px;
}

.menu-toggle.active span:nth-child(2) {
  transform: translateX(15px);
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  width: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -70px;
  padding-top: 70px;
  background: var(--background-dark);
  overflow: hidden;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 215, 95, 0.15) 0%, transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(0, 215, 95, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(0, 215, 95, 0.05) 0%, transparent 100%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0, 215, 95, 0.2);
}

.float-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  opacity: 0.3;
  background: radial-gradient(circle at center, var(--glass-bg), transparent);
  border: none;
}

.float-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 1s;
  opacity: 0.2;
  background: radial-gradient(circle at center, var(--glass-bg), transparent);
  border: none;
}

.float-3 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 20%;
  animation-delay: 2s;
  opacity: 0.25;
  background: radial-gradient(circle at center, var(--glass-bg), transparent);
  border: none;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-content {
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem var(--spacing-lg);
  margin-top: 2rem;
}

.hero-title {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  position: relative;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-title .line {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.15em;
  padding: 0.1em 0;
  animation: revealText 0.8s ease-out forwards;
}

.hero-title .highlight {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.3rem;
  position: relative;
  display: inline-block;
  transform: translateY(-0.05em);
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  filter: blur(30px);
  opacity: 0.5;
  z-index: -1;
}

@keyframes revealText {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  margin: 0 auto 2rem;
  max-width: 50ch;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.6s forwards;
  letter-spacing: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.8s forwards;
}

.hero-btn {
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary {
  background: var(--gradient-accent);
  color: var(--background-dark);
  border: none;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s;
}

.hero-btn-primary:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  box-shadow: inset 0 0 0 0 var(--primary-green);
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-secondary:hover {
  box-shadow: inset 200px 0 0 0 var(--primary-green);
  color: var(--text-main);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 215, 95, 0.2);
}

/* Services Section - Fixed positioning */
#services-overview {
  margin-top: 0;
  padding-top: 80px;
  position: relative;
  z-index: 3;
  background: var(--background-dark);
  min-height: 50vh;
}

/* Main Content */
main {
  flex: 1 0 auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  padding-bottom: 2rem;
}

/* Section Styles */
.section {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  width: 100%;
  position: relative;
}

.section h2::after {
  content: '';
  width: 60%;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section h2:hover::after {
  width: 100%;
  background: var(--gradient-accent);
}

.section::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  opacity: 1;
}

/* Services Grid */
#services-overview {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(4rem, 8vw, 6rem) 0;
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(3rem, 5vw, 4rem);
  margin: clamp(4rem, 6vw, 5rem) 0 clamp(5rem, 8vw, 7rem) 0;
  width: 100%;
  justify-content: center;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  height: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-green);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 215, 95, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 215, 95, 0.1),
    transparent
  );
  transform: skewX(-15deg);
  transition: 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.card-icon {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text-main);
  margin: 0;
}

.service-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Card Styles */
.card {
  background: linear-gradient(145deg, #0c0c0c, #141414);
  border-radius: 14px;
  box-shadow: 0 2px 16px #00D75F11;
  padding: clamp(1.2rem, 3vw, 2rem);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 215, 95, 0.1),
    transparent
  );
  transition: 0.5s;
}

.card:hover {
  border: 1.5px solid var(--primary-green);
  box-shadow: 
    0 0 20px 5px #00D75F22,
    inset 0 0 15px 2px #00D75F11;
  transform: translateY(-5px);
}

.card:hover::before {
  left: 100%;
}

.card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  text-align: left;
}

.card p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: clamp(0.8rem, 1.5vw, 1.2rem) 0;
  line-height: 1.6;
}

/* Internship Section */
#internship-teaser {
  margin: var(--section-spacing) auto;
  max-width: 1000px;
  padding: 0 var(--container-padding);
}

#internship-teaser .card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(0, 215, 95, 0.05));
  border: 1px solid rgba(0, 215, 95, 0.2);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px -5px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 215, 95, 0.1);
}

#internship-teaser .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 0% 0%, rgba(0, 215, 95, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0, 215, 95, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.internship-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.internship-info {
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}

.internship-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--text-main);
  margin-bottom: 1rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.internship-info p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  padding: 0 1rem;
  justify-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-main);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  padding: 1rem;
  background: rgba(0, 215, 95, 0.05);
  border: 1px solid rgba(0, 215, 95, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.feature-item:hover {
  background: rgba(0, 215, 95, 0.1);
  border-color: rgba(0, 215, 95, 0.2);
  transform: translateY(-2px);
}

.feature-item svg {
  flex-shrink: 0;
  color: var(--primary-green);
}

.cta-wrapper {
  text-align: center;
  margin-top: 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* CTA Button */
.cta-btn {
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 180px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 215, 95, 0.3);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: 0.6s;
  z-index: -1;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-accent);
  z-index: -2;
  border-radius: 10px;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 5px 15px rgba(0, 215, 95, 0.3),
    0 0 20px rgba(0, 215, 95, 0.2);
}

.cta-btn:hover::before {
  transform: translateX(100%);
}

.cta-btn:hover::after {
  opacity: 1;
}

.cta-btn:active {
  transform: translateY(1px);
}

#internship-teaser .cta-btn {
  background: var(--gradient-accent);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  padding: 0.8rem 2.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(0, 215, 95, 0.2),
    0 0 0 2px rgba(0, 215, 95, 0.1);
  display: inline-block;
  text-align: center;
}

#internship-teaser .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(0, 215, 95, 0.3),
    0 0 0 2px var(--primary-green);
}

.section-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(3rem, 5vw, 4rem);
  padding-bottom: 1rem;
}

#services-overview .section-cta {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: 2rem;
}

/* About Page Styles */
.about-intro {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.7;
  color: var(--text-main);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.about-intro p {
  margin: 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.founder-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 215, 95, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(0, 215, 95, 0.1);
  transition: all 0.3s ease;
}

.founder-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 215, 95, 0.05);
  border-color: var(--primary-green);
}

.founder-item h3 {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
}

.founder-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}

/* Contact Styles */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: min(1000px, 100%);
  margin: 0 auto;
}

.contact-form {
  max-width: 100%;
}

.contact-info {
  padding: 2rem;
  background: rgba(0, 215, 95, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 215, 95, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 1rem 0;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--text-main);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  color: var(--primary-green);
  transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
  color: var(--text-main);
  transform: scale(1.1);
}

/* Form Styles */
form {
  max-width: min(600px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(0, 215, 95, 0.1);
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.form-group {
  position: relative;
  margin: 0;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 0;
  padding: 0 5px;
  margin: 0;
  transform: translateY(-50%);
  background: var(--background-dark);
  color: var(--primary-green);
  font-size: 0.9em;
  pointer-events: none;
  transition: all 0.3s;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
  color: var(--text-secondary);
  transform: translateY(-50%) scale(1.05);
}

input, select, textarea {
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  border: 1.5px solid var(--input-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  backdrop-filter: blur(5px);
  position: relative;
  margin: 0;
}

input:focus, select:focus, textarea:focus {
  border: 1.5px solid var(--primary-green);
  box-shadow: 
    0 0 15px rgba(0, 215, 95, 0.3),
    0 0 30px rgba(0, 215, 95, 0.1);
  background: rgba(0, 215, 95, 0.05);
  transform: translateY(-1px);
}

input[disabled], select[disabled], textarea[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

form .tooltip {
  display: inline-block;
  position: relative;
}

form .tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background: #222;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 0.5rem;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.95rem;
}

form .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Footer */
footer {
  background: #000000;
  color: var(--text-secondary);
  padding: 2rem 0 1.5rem 0;
  margin-top: auto;
  box-shadow: 0 -8px 32px rgba(0, 215, 95, 0.15);
  border-top: 2px solid rgba(0, 215, 95, 0.3);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: block;
  width: 100%;
  clear: both;
}

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

.footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

/* Footer Header */
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  margin-bottom: 0;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.footer-logo-link:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: none;
}

.footer-logo-link:hover .footer-logo-img {
  transform: rotate(360deg);
  box-shadow: 0 4px 12px rgba(0, 215, 95, 0.3);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  transition: all 0.6s ease;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-text {
  text-shadow: 0 0 10px rgba(0, 215, 95, 0.5);
}

/* Quick Navigation in Header */
.footer-header-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-header-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-header-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 215, 95, 0.2), transparent);
  transition: left 0.5s ease;
}

.footer-header-nav a:hover::before {
  left: 100%;
}

.footer-header-nav a:hover {
  color: var(--text-main);
  background: rgba(0, 215, 95, 0.1);
  border-color: rgba(0, 215, 95, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 215, 95, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section {
  background: transparent;
  padding: 1rem 0.5rem;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
}

.footer-section:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.footer-section h4 {
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.footer-section h4 svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* Contact Items */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 215, 95, 0.1);
  transform: translateX(4px);
}

.contact-item svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.contact-item a,
.contact-item span {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--primary-green);
}

/* Newsletter Styles */
.footer-newsletter p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.newsletter-form {
  margin-top: 1rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-input-group input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(0, 215, 95, 0.05);
  border: 2px solid rgba(0, 215, 95, 0.2);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 215, 95, 0.1);
  background: rgba(0, 215, 95, 0.08);
}

.newsletter-input-group input::placeholder {
  color: var(--text-muted);
}

.newsletter-input-group button {
  padding: 1rem 1.25rem;
  background: var(--gradient-accent);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.newsletter-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 215, 95, 0.3);
  background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
}

.newsletter-status {
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 8px;
  opacity: 0;
  transition: all 0.3s ease;
}

.newsletter-status.show {
  opacity: 1;
}

.newsletter-status.success {
  color: var(--primary-green);
  background: rgba(0, 215, 95, 0.1);
}

.newsletter-status.error {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

/* Social Media Styles */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: 1px solid rgba(0, 215, 95, 0.1);
}

.social-link:hover {
  color: var(--text-main);
  background: rgba(0, 215, 95, 0.1);
  border-color: var(--primary-green);
  transform: translateX(8px);
}

.social-link.instagram:hover { border-color: #E4405F; }
.social-link.linkedin:hover { border-color: #0077B5; }
.social-link.facebook:hover { border-color: #1877F2; }

.social-link svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

/* Quick Links */
.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-quick-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(0, 215, 95, 0.05);
  border: 1px solid rgba(0, 215, 95, 0.1);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-quick-links a:hover {
  color: var(--text-main);
  background: rgba(0, 215, 95, 0.1);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 215, 95, 0.2);
  padding: 1rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  gap: 2rem;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
  flex: 1;
  text-align: center;
}

.footer-bottom-left {
  text-align: left;
}

.footer-bottom-right {
  text-align: right;
}

.footer-social-bottom {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.social-link-bottom {
  color: var(--primary-green);
  text-decoration: none;
  padding: 0.3rem;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link-bottom:hover {
  color: var(--text-main);
  background: transparent;
  border: none;
  transform: translateY(-2px);
}

.designer-link {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.designer-link:hover {
  color: var(--text-main);
  text-shadow: 0 0 8px rgba(0, 215, 95, 0.4);
}

.footer-bottom-left p,
.footer-bottom-right p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom-right strong {
  color: var(--primary-green);
  font-weight: 600;
}

/* Desktop Scrollbar */
@media (min-width: 1024px) {
  html, body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) #111;
  }
  
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 12px;
    display: block !important;
  }
  
  html::-webkit-scrollbar-track,
  body::-webkit-scrollbar-track {
    background: #111;
    border-radius: 6px;
  }
  
  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 6px;
    border: 2px solid #111;
  }
  
  html::-webkit-scrollbar-thumb:hover,
  body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    box-shadow: 0 0 8px rgba(0, 215, 95, 0.4);
  }
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer {
    padding: 1.5rem 0 1rem 0;
  }
  
  .footer-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    gap: 1rem;
  }
  
  .footer-header-nav {
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .footer-header-nav a {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: none;
  }
  
  .footer-section {
    padding: 0.8rem 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    text-align: center;
  }
  
  .footer-social-bottom {
    gap: 1.2rem;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .newsletter-input-group button {
    align-self: stretch;
  }
  
  .social-link:hover {
    transform: translateX(0) translateY(-2px);
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 1rem;
  }
  
  .footer-grid {
    gap: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .footer-quick-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 8px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  :root {
    --container-width: 95%;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .footer-grid {
    gap: 2.5rem;
  }
  
  .footer-header {
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .footer-header-nav {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  header {
    padding: 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .navbar {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 0.4rem 1rem;
    background: transparent;
    backdrop-filter: blur(10px);
    position: relative;
  }

  .navbar::before {
    display: none;
  }

  .navbar-logo {
    font-size: 1rem;
  }

  .navbar-logo img {
    width: 32px;
    height: 32px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .navbar-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: auto;
    max-height: calc(100vh - 70px);
    overflow-y: hidden;
    background: rgba(10, 10, 10, 0.98);
    padding: 0.5rem;
    border-radius: 0;
    flex-direction: column;
    gap: 0.3rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 215, 95, 0.1);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .navbar-links::-webkit-scrollbar {
    display: none;
  }

  .navbar-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-links a {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    margin: 0.1rem 0;
    border-radius: 6px;
    background: rgba(0, 215, 95, 0.03);
    font-size: 0.95rem;
  }

  .navbar-links a.active {
    background: var(--primary-green);
  }

  /* Hero Mobile Adjustments */
  .hero {
    height: 100vh;
    min-height: 100vh;
    margin-top: 0;
    padding-top: calc(70px + 2rem);
    align-items: center;
    box-sizing: border-box;
  }
  
  .hero-content {
    padding: 1rem;
    margin-top: 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.5;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  /* Services Section Mobile Fix */
  #services-overview {
    margin-top: 0;
    padding-top: 80px; /* Reduced padding for better mobile spacing */
  }

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

  .section {
    padding: var(--section-spacing) var(--container-padding);
    margin: clamp(2rem, 4vw, 3rem) 0;
  }

  .section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .card {
    padding: var(--spacing-md);
    margin: 0.8rem 0;
    border-radius: 12px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: -1;
  }

  /* Internship Section Mobile */
  #internship-teaser .card {
    padding: 2rem 1.5rem;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-item {
    padding: 0.7rem 1rem;
  }

  .internship-info {
    margin-bottom: 2rem;
  }

  .cta-wrapper {
    margin-top: 2rem;
  }

  /* Form Mobile Improvements */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: var(--font-size-base) !important;
  }

  /* Smooth scrolling only on non-touch devices */
  @media (hover: none) {
    html {
      scroll-behavior: auto;
    }
  }
}

@media (max-width: 600px) {
  :root {
    --container-padding: 1rem;
    --section-spacing: 3rem;
  }

  body {
    font-size: 15px;
  }

  .container {
    padding: 0 var(--container-padding);
  }

  .navbar {
    padding: 0.5rem var(--container-padding);
  }

  .hero {
    min-height: 100vh;
    margin-top: 0;
    padding-top: calc(70px + 1rem);
    align-items: center;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  /* Services Section - Extra Mobile Spacing */
  #services-overview {
    margin-top: 0;
    padding-top: 100px; /* Increased padding for smaller screens */
  }

  .section {
    padding: var(--section-spacing) 0;
  }

  .section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .card {
    padding: 1.2rem;
    margin: 0.8rem 0;
    border-radius: 12px;
  }

  .cta-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  img.logo-img {
    width: 32px;
    height: 32px;
  }

  /* Modal Improvements for Mobile */
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .form-section {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .radio-label {
    padding: 0.4rem;
  }
}

/* Desktop Hero Enhancement */
@media (min-width: 769px) {
  .hero {
    height: 110vh;
  }
}