* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0c0c1e 0%, #1a0d3a 50%, #0f0f23 100%);
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* HEADER */

.logo img {
  height: 40px;
  /* adjust as needed */
  width: auto;
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(12, 12, 30, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

#header.scrolled {
  padding: 0.5rem 0;
  background: rgba(12, 12, 30, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffd700;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-header {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a0d3a;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
/* HERO SECTION */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"><animate attributeName="r" values="100;120;100" dur="3s" repeatCount="indefinite"/></circle><circle cx="800" cy="300" r="80" fill="url(%23a)"><animate attributeName="r" values="80;100;80" dur="4s" repeatCount="indefinite"/></circle></svg>');
  animation: floatBG 20s infinite linear;
}

@keyframes floatBG {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(360deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a0d3a;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #1a0d3a;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat p {
  color: #aaa;
  font-size: 0.9rem;
}
/* HERO VISUAL */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: float 10s ease-in-out infinite;
}

.card1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card2 {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.card3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(-10px) rotate(240deg);
  }
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1e1e2e, #2a2a3e);
  border-radius: 40px;
  padding: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 2px 10px rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  font-size: 12px !important;
  text-align: left !important; /* LEFT ALIGN */
  padding-left: 15px !important; /* LEFT PADDING */
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}

.notification {
  position: absolute;
  width: 80%;
  height: 60px;
  background: linear-gradient(90deg, #4c30ec, #7c3aed);
  border-radius: 15px;
  margin: 20px;
  opacity: 0;
  animation: notify 4s infinite;
  font-size: 12px !important;
  text-align: left !important;
  padding-top: 6px;
  padding-left: 15px !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}

.notification:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}

.notification:nth-child(2) {
  top: 45%;
  animation-delay: 1.5s;
}

.notification:nth-child(3) {
  top: 70%;
  animation-delay: 3s;
}

@keyframes notify {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  90% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
/* SECTION STYLES */

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.dark {
  background: rgba(15, 15, 15, 0.8);
}
/* CARDS GRID - CLEAN VERSION */

.cards-grid,
.pricing-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
/* FEATURES 3x2 PERFECT GRID */

#features .cards-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(2, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 1150px;
  margin: 3.5rem auto 0 !important;
  justify-items: center;
}

#features .feature-card {
  max-width: 330px !important;
  padding: 1.8rem 1.2rem !important;
  min-height: 165px !important;
}
/* POSITION 6 CARDS PERFECTLY */

#features .cards-grid > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}

#features .cards-grid > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

#features .cards-grid > *:nth-child(3) {
  grid-area: 1 / 3 / 2 / 4;
}

#features .cards-grid > *:nth-child(4) {
  grid-area: 2 / 1 / 3 / 2;
}

#features .cards-grid > *:nth-child(5) {
  grid-area: 2 / 2 / 3 / 3;
}

#features .cards-grid > *:nth-child(6) {
  grid-area: 2 / 3 / 3 / 4;
}
/* CARD STYLES - PERFECTED */

.card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 2rem 1.4rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.card-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  display: block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3,
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
  line-height: 1.3;
}

.card p {
  color: #c0cad8;
  font-size: 0.92rem;
  line-height: 1.5;
}
/* HOVER EFFECTS */

.card:hover .card-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.card:hover h3 {
  color: #ffd700;
}
/* SERVICES */

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  text-align: left;
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card ul {
  list-style: none;
  margin-top: 1.5rem;
}

.service-card li {
  padding: 0.5rem 0;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* TESTIMONIALS AUTO-SCROLL */

.testimonials {
  overflow: hidden;
  position: relative;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  animation: scrollLeft 30s linear infinite;
  gap: 1.2rem !important;
  padding: 0 3rem;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.2rem 1rem !important;
  min-width: 240px !important;
  max-width: 240px !important;
  flex-shrink: 0;
  transition: all 0.3s ease;
  text-align: left;
  margin: 0 0.5rem;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.testimonial-card p {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.3);
  object-fit: cover;
}

.author h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.author span {
  font-size: 0.85rem;
  color: #a0a8b6;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-btn:hover {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}
/* RESPONSIVE */

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 300px;
    padding: 1.5rem 1.2rem;
  }
  .slider-track {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}
/* FAQ */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
  font-size: 1.1rem;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: #ccc;
  line-height: 1.7;
}

/*featured With Section */

.featured-section {
  padding: 120px 0;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.98) 50%,
    rgba(240, 244, 248, 1) 100%
  );
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(99, 102, 241, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.featured-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-text {
  text-align: left;
}

.featured-text .section-title {
  font-size: clamp(2.5rem, 5vw, 1.7rem);
  align-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.featured-desc {
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 320px;
}

.featured-logos {
  position: relative;
  height: 150px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: marquee 28s linear infinite;
  padding: 0 4rem;
  white-space: nowrap;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

.featured-logos .logo {
  height: 90px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;

  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 14px 22px;
  margin: 0 12px;

  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  opacity: 1;
  transform: translateY(-6px) scale(1.1);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow:
    0 25px 50px rgba(15, 23, 42, 0.3),
    0 12px 32px rgba(59, 130, 246, 0.2);
  filter: drop-shadow(0 16px 40px rgba(59, 130, 246, 0.15));
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .featured-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .featured-text {
    text-align: center;
  }
  .featured-desc {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .featured-logos {
    height: 100px;
    padding: 2rem 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  }
  .logos-track {
    gap: 2.5rem;
    padding: 0 2rem;
  }
  .logo {
    height: 38px;
    max-width: 120px;
    padding: 12px 18px;
    margin: 0 8px;
    border-radius: 12px;
  }
  @keyframes marquee {
    0% {
      transform: translateX(50%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

.featured-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation: floatShape 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
/* FOOTER */

.footer {
  background: linear-gradient(180deg, #050505 0%, #0a0a0f 100%);
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute; /* Fixed */
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  z-index: 1;
}

/* DESKTOP */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* Brand | 3 Sections | Email/Contact */
  gap: 3rem;
  align-items: start;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Product|Company|Support ek line */
  gap: 2rem;
}

.email-address {
  display: flex;
  flex-direction: row; /* Stay Updated + Contact ek line */
  gap: 10rem;
}


.footer-brand {
  text-align: left;
}

.footer-brand .logo {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #aaa;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

/* BASE STYLES */
.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.footer-section h3,
.newsletter-section h3,
.contact h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
}

.footer-section h3::after,
.newsletter-section h3::after,
.contact h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.footer-section a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffd700;
  padding-left: 10px;
}

.newsletter-section p {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-family: inherit;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}


.contact-info p {
  margin: 0.1rem;
  color: #aaa;
  width: 400px;
}

.address {
  line-height: 1.6;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #777;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffd700;
}


/* footer responsive */

@media (max-width: 1023px) {
  .footer {
    padding: 60px 0 40px;
  }
  
  .footer-top {
    grid-template-columns: 1fr !important; /* 1 Column */
    gap: 2.5rem !important;
  }
  
  .email-address {
    flex-direction: column !important; /* Newsletter UPAR, Contact NICHE */
    gap: 2.5rem !important;
  }
  
  .footer-brand {
    text-align: center !important;
  }
  
  .footer-brand .logo {
    font-size: 1.8rem;
  }
  
  .footer-brand p {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .footer-section h3,
  .newsletter-section h3,
  .contact h3 {
    text-align: center !important;
  }
  
  .footer-section h3::after,
  .newsletter-section h3::after,
  .contact h3::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .footer-section {
    text-align: center !important;
  }
  
  .newsletter-section p {
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column !important;
  }
  
  .newsletter-form input {
    min-width: auto !important;
    width: 100% !important;
  }

  .newsletter-form button {
    width: 100% !important;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  
  .contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .contact-info p {
    width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: 0.95rem;
  }
}


/* SCROLL ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.8s ease forwards;
}
/* SMOOTH SCROLL */

html {
  scroll-behavior: smooth;
}
/* CUSTOM SCROLLBAR */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* WhatsApp and Teams Logo  */
.logos-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  pointer-events: auto;
}

.whatsapp-card,
.teams-card {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-logo,
.teams-logo,
.extra-logo {
  width: 65px;
  height: 65px;
  top: 5px;
  left: 5px;
}

.whatsapp-card:hover,
.teams-card:hover {
  transform: translateY(-12px) rotate(5deg) scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp */
.whatsapp-card {
  background: transparent;
}

.whatsapp-logo {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 70;
  height: 70;
  object-fit: contain;
  animation: whatsappBounce 1.8s ease-in-out infinite;
}

/* c */
.teams-card {
  background: transparent;
}

.teams-logo {
  position: absolute;
  top: 4px;
  left: 4px; /* LEFT CORNER */
  width: 52px;
  height: 52px;
  object-fit: contain;
  animation: teamsPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes whatsappBounce {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

@keyframes teamsPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logos-container {
    gap: 12px;
  }
  .whatsapp-card,
  .teams-card,
  .extra-card {
    width: 52px;
    height: 52px;
  }
  .whatsapp-logo,
  .teams-logo,
  .extra-logo {
    width: 44px;
    height: 44px;
    top: 3px;
    left: 3px;
  }
}

/* ========================================
   COMPLETE MOBILE RESPONSIVE - ALL SECTIONS
   ======================================== */



@media (max-width: 768px) {
  /* Hide desktop nav on mobile */
  #header nav {
    display: none !important;
  }
  
  /* Show hamburger menu on mobile */
  .mobile-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    color: #ffd700 !important;
    backdrop-filter: blur(10px) !important;
    cursor: pointer !important;
    min-width: 50px !important;
    transition: all 0.3s ease !important;
  }
  
  .mobile-menu:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    transform: scale(1.05) !important;
  }
  
  /* MAIN HEADER CONTAINER - FLEX ROW */
  #header {
    position: relative !important;
  }
  
  .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 20px !important;
    width: 100% !important;
  }
  
  /* LOGO takes left space */
  .helixlogo {
    flex: 1 !important;
  }
  
  /* Position hamburger absolutely on right */
  .mobile-menu {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

/* 3. DESKTOP - Hide mobile menu */

.mobile-nav {
  position: fixed;
  top: 100px; /* Below fixed header */
  left: 0;
  width: 100%;
  background: rgba(12, 12, 30, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 2rem 0;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding-left: 30px;
}

.mobile-btn {
  margin: 1.5rem 20px 0 !important;
  width: calc(100% - 40px) !important;
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

.card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 2rem 1.4rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ========================================
   MOBILE HERO - PERFECT LAYOUT
   ======================================== */
@media (max-width: 991px) {
  .hero {
    margin-top: -50px;
    min-height: 95vh !important;
    padding: 80px 10px 20px !important;
    text-align: center !important;
  }
  
  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 10px !important;
  }  
  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.2rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 1.2rem !important;
    text-align: center;
  }
  
  .hero-desc {
    font-size: 1.15rem !important;
    max-width: 100% !important;
    margin: 0 auto 2rem !important;
  }
  
  .hero-buttons {
    justify-content: center !important;
    gap: 1rem !important;
    margin-bottom: 2.5rem !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .btn {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }
  
  .hero-stats {
    gap: 1.2rem !important;
    flex-wrap: wrap !important;
  }
  
  .hero-visual {
    order: 1 !important; /* Phone ABOVE text */
  }
  
  .phone-mockup {
    width: 280px !important;
    height: 560px !important;
    margin: 0 auto !important;
  }
  
  .floating-cards {
    display: none !important; /* Clean mobile */
  }
}

@media (max-width: 767px) {
  #features .cards-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;     /* 2 COLUMNS */
    grid-template-rows: repeat(3, auto) !important;       /* 3 ROWS */
    gap: 1.2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 2.5rem auto 0 !important;
    padding: 0 15px !important;
  }
  
  /* FORCE ALL 6 CARDS TO FIT PERFECTLY */
  #features .cards-grid > *:nth-child(1) { grid-column: 1; grid-row: 1; }
  #features .cards-grid > *:nth-child(2) { grid-column: 2; grid-row: 1; }
  #features .cards-grid > *:nth-child(3) { grid-column: 1; grid-row: 2; }
  #features .cards-grid > *:nth-child(4) { grid-column: 2; grid-row: 2; }
  #features .cards-grid > *:nth-child(5) { grid-column: 1; grid-row: 3; }
  #features .cards-grid > *:nth-child(6) { grid-column: 2; grid-row: 3; }
  
  /* PERFECT CARD SIZING */
  #features .feature-card,
  #features .cards-grid .card {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding: 1.3rem 1rem !important;
    min-height: 130px !important;
    margin: 0 !important;
  }
  
  /* MOBILE TEXT */
  #features .card-icon { font-size: 2.1rem !important; margin-bottom: 0.7rem !important; }
  #features .feature-card h3 { font-size: 1.08rem !important; margin-bottom: 0.5rem !important; }
  #features .feature-card p { font-size: 0.86rem !important; line-height: 1.4 !important; }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  #features .cards-grid { gap: 1rem !important; padding: 0 10px !important; }
  #features .feature-card { padding: 1.1rem 0.9rem !important; min-height: 120px !important; }
}

/* 5. PERFECT RESPONSIVE TYPOGRAPHY */
@media (max-width: 992px) {
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
    text-align: left !important;
    line-height: 1.2 !important;
  }
  .section-title {
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }
  
}

@media (max-width: 767px) {
  .featured-logos {
    height: 100px !important;  /* MOBILE: Compact */
    padding: 1.5rem 1.5rem !important;
  }
  .logos-track {
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }
  .featured-logos .logo {
    height: 60px !important;
    max-width: 100px !important;
    padding: 16px 20px !important;
  }
}



/* 7. HOVER EFFECTS DISABLE ON MOBILE */
@media (hover: none) and (pointer: coarse) {
  .card:hover, .btn:hover, .nav-link:hover {
    transform: none !important;
  }
}

/* 8. LOGO MOBILE PERFECT */
@media (max-width: 768px) {
  .logo {
    font-size: 1.6rem !important;
    gap: 8px !important;
  }
}