/* =========================
   HEADER SECTION
========================= */

.header-section {
  position: fixed;
  width: 100%;
  z-index: 50;
}

/* Gradient overlay behind header */
.header-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;                                                    
}                                                                                                                                                                                                                      

/* MULTI-COLOR LOGO GLOW */
.header-logo {
  position: relative;
}

.header-logo-glow {
  position: absolute;
  inset: -28px;
  z-index: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 157, 0.45), transparent 65%),
    radial-gradient(circle at 100% 0%, rgba(0, 200, 255, 0.4), transparent 65%),
    radial-gradient(circle at 50% 100%, rgba(160, 100, 255, 0.35), transparent 65%);
  filter: blur(28px);
  animation: logoGlowShift 10s ease-in-out infinite alternate;
}

@keyframes logoGlowShift {
  0% {
    transform: translate(-10px, -8px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(5px, 0px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate(10px, 10px) scale(1);
    opacity: 0.9;
  }
}

/* NAV MENU (DESKTOP) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* <<< CONTROL MENU SPACING HERE */
}

.header-nav-item {
  position: relative;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header-nav-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  height: 2px;
  width: 0%;
   transform: translateX(-50%);
  background: #00ff9d;
  transition: width 0.35s ease;
}

.header-nav-item:hover {
  color: #00ff9d;
}

.header-nav-item:hover::after {
  width: 100%;
}

.header-nav-item.active {
  color: #00ff9d;
  font-weight: 600;
}

.header-nav-item.active::after {
  width: 100%;
}

/* SOCIAL ICONS */
.header-social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1); /* force white */
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-social-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* MOBILE NAV */
#mobileMenu{
	background-color:rgba(0,0,0,0.1);
}
.header-mobile-nav {
  width: 100%;
}

.header-mobile-item {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.header-mobile-item.active {
  color: #00ff9d;
}


/* =========================
   ABOUT HERO SECTION
========================= */

.about-hero-section {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  background-color: #05080a;
}

/* Background image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* Overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.85) 100%
    );
}

/* Content */
.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 0 1.5rem;
  height: 100%;
  margin-Left:35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Small label */
.about-hero-label {
  color: #00ff9d;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

/* Main title */
.about-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.1s;
}

.about-hero-title span {
  color: #00ff9d;
  text-shadow: 0 0 30px rgba(0, 255, 157, 0.35);
}

/* Description */
.about-hero-desc {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.25s;
  text-align:justify;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
	.about-hero-content {

  margin-Left:0px;
  
}
	
  .about-hero-section {
    height: 85vh;
  }

  .about-hero-desc {
    font-size: 14px;
  }
}
/* =========================
   ABOUT – OUR STORY
========================= */

.about-story-section {
  background-color: #05080a;
  padding: 5rem 0;
}

.about-story-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-story-container {
    grid-template-columns: 1fr;
  }
}

/* Left content */
.about-story-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff9d;
  margin-bottom: 1.5rem;
}

.about-story-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.2rem;
  max-width: 560px;
  text-align:justify;
}

/* Right mascot visual */
.about-story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-mascot-wrapper {
  position: relative;
  width: 320px;
  max-width: 100%;
  transition: transform 0.4s ease;
}

.about-mascot-wrapper::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 157, 0.25),
    transparent 70%
  );
  opacity: 0.6;
  filter: blur(25px);
  z-index: 0;
}

.about-mascot-image {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

/* Subtle hover life */
@media (hover: hover) {
  .about-mascot-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
  }
}


/* ========================================= */
/* ABOUT FOUNDER & TEAM SECTION STYLES */
/* ========================================= */

.about-founder-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px 1.5rem;
  display: grid;
  align-items: center;
  color: #ffffff;
}

/* Main Layout */
.about-founder-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.about-founder-content {
  flex: 1.2;
}

/* Section Title */
.about-founder-title {
 font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff9d;
  margin-bottom: 1.5rem;
}

/* Green Underline */
.title-underline {
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #00ff9c, transparent);
  margin-top: 12px;
}

/* Paragraph Styling */
.about-founder-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 22px;
  text-align:justify;
}

/* Highlighted Text */
.about-founder-content strong {
  color: #ffffff;
  font-weight: 600;
}

/* RIGHT IMAGE */
.about-founder-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.about-founder-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 6px;
  border: 3px solid rgba(0, 255, 156, 0.6);
  box-shadow: 0 0 25px rgba(0, 255, 156, 0.25);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {
  .about-founder-container {
    flex-direction: column;
    text-align: center;
  }

  .about-founder-image img {
    max-width: 280px;
  }

  .title-underline {
    margin: 12px auto 0;
  }
}




/* =========================
   ABOUT – VISION / MISSION / VALUES
========================= */

.about-values-section {
  background-color: #05080a;
  padding-bottom:6rem;
}

.about-values-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-values-container-headline{
	font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff9d;
  margin-bottom: 1.5rem;
  text-align:center;
}

/* Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

@media (max-width: 900px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Card */
.about-values-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.0)
  );
  border: 1px solid rgba(255,255,255,0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-values-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,157,0.4);
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
}

/* Icon */
.about-values-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.2rem;
  position: relative;
  
}

.about-values-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Title */
.about-values-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

/* Text */
.about-values-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* ===== Scroll Animation ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   WHAT MAKES US DIFFERENT
========================= */

.difference-section {
  background-color: #05080a;
  padding: 5rem 0;
}

.difference-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.difference-header {
  max-width: 1280px;
  margin-bottom: 3.5rem;
}

.difference-title {
  font-size: 28px;
  font-weight: 700;
  color: #00ff9d;
  margin-bottom: 0.75rem;
}

.difference-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Grid */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 2.5rem;
}

@media (max-width: 768px) {
  .difference-grid {
    grid-template-columns: 1fr;
  }
}

/* Item */
.difference-item {
  position: relative;
  padding-left: 5rem;
  transition: transform 0.25s ease;
}

.difference-item:hover {
  transform: translateY(-6px);
}

/* Icon */
.difference-icon {
  position: absolute;
  left: 0;

  width: 80px;
  height: 80px;
}

.difference-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%)
          invert(62%) sepia(96%) saturate(650%)
          hue-rotate(90deg) brightness(110%);
  transition: transform 0.3s ease;
}

.difference-item:hover .difference-icon img {
  transform: rotate(-6deg) scale(1.08);
}

/* Text */
.difference-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.difference-item-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}


/* =========================
   OUR JOURNEY – TIMELINE
========================= */

.journey-section {
  background-color: #05080a;
  padding: 5rem 0;
}

.journey-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.journey-header {
  max-width: 520px;
  margin-bottom: 3.5rem;
}

.journey-title {
  font-size: 32px;
  font-weight: 700;
  color: #00ff9d;
  margin-bottom: 0.75rem;
}

.journey-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Timeline base */
.journey-timeline {
  position: relative;
  padding-left: 30px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0, 255, 157, 0.1),
    rgba(0, 255, 157, 0.6),
    rgba(0, 255, 157, 0.1)
  );
}

/* Items */
.journey-item {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.journey-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot */
.journey-dot {
  width: 14px;
  height: 14px;
  background-color: #00ff9d;
  border-radius: 50%;
  position: absolute;
  left: -1px;
  top: 6px;
  box-shadow: 0 0 0 6px rgba(0, 255, 157, 0.12);
}

/* Content */
.journey-content {
  padding-left: 20px;
}

.journey-year {
  font-size: 13px;
  font-weight: 600;
  color: #00ff9d;
  display: inline-block;
  margin-bottom: 6px;
}

.journey-heading {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.journey-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Mobile */
@media (max-width: 640px) {
  .journey-title {
    font-size: 26px;
  }
}

/* ================= WHAT WE ACTUALLY DO ================= */

.about-whatwedo-section {
  background-color: #05080a;
  padding: 6rem 0;
}

.about-whatwedo-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-whatwedo-header {
  max-width: 620px;
  margin-bottom: 3.5rem;
}

.about-whatwedo-title {
  font-size: 32px;
  font-weight: 700;
  color: #00ff9d;
  margin-bottom: 0.75rem;
}

.about-whatwedo-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Grid */
.about-whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .about-whatwedo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-whatwedo-grid {
    grid-template-columns: 1fr;
  }
}

/* Items */
.about-whatwedo-item {
  position: relative;
  padding-left: 1.2rem;
}

.about-whatwedo-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #00ff9d;
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.8);
}

.about-whatwedo-tag {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #00ff9d;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.about-whatwedo-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ================= OUR PHILOSOPHY ================= */

.philosophy-section {
  background-color: #05080a;
  padding: 6rem 0;
}

.philosophy-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.philosophy-header {
  max-width: 800px;
  margin-bottom: 3.5rem;
}

.philosophy-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00ff9d;
  margin-bottom: 0.75rem;
}

.philosophy-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.philosophy-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 18px;
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 255, 157, 0.5);
}

/* Icon */
.philosophy-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.2rem;
}

.philosophy-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%)
    invert(67%) sepia(91%) saturate(678%)
    hue-rotate(90deg) brightness(110%);
}

/* Text */
.philosophy-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.philosophy-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-align:justify;
}


/* =========================
   CTA – LET’S BUILD SOMETHING
========================= */

.cta-section {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 10, 1) 0%,
    rgba(8, 18, 20, 1) 100%
  );
  padding: 6rem 0;
  overflow: hidden;
}

/* Soft animated glow */
.cta-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 157, 0.08) 0%,
    rgba(0, 255, 157, 0.03) 25%,
    transparent 60%
  );
  animation: ctaGlowPulse 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.cta-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cta-title span {
  color: #00ff9d;
}

.cta-description {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.cta-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.cta-button-primary,
.cta-button-secondary {
  padding: 0.9rem 1.8rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Primary */
.cta-button-primary {
  background-color: #00ff9d;
  color: #05080a;
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.35);
}

/* Secondary */
.cta-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: transparent;
}

.cta-button-secondary:hover {
  border-color: #00ff9d;
  color: #00ff9d;
  transform: translateY(-2px);
}



/* ================= FOOTER ================= */

.footer-section {
  background: radial-gradient(
    ellipse at top,
    rgba(0, 255, 157, 0.06),
    rgba(0, 0, 0, 0.9)
  );
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand */
.footer-logo span img {
	width:150px;
}

 

.footer-desc {
  margin-top: 0.8rem;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

/* Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00ff9d;
}

.footer-contact span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: #000;
  background: #00ff9d;
  border-color: #00ff9d;
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 6px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 0.6rem 0.8rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
  background: #00ff9d;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  transition: transform 0.2s ease;
}

.footer-newsletter-form button:hover {
  transform: translateX(2px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #00ff9d;
}
