:root {
  --bg-dark: #0b0c2a;
  --bg-darker: #07081c;
  --bg-navy: #131347;
  --primary: #3b82f6;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --radius-lg: 24px;
  --radius-md: 16px;
  --gradient-main: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}


#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: var(--bg-dark);
  pointer-events: none;
}


/* HERO SECTION */
.hero-section {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.hero-content {
  max-width: 900px;
}

.hero-section h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease backwards;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}



.hero-description {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease backwards 0.2s;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease backwards 0.4s;
}


.cta-button {
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
}

.cta-button.primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.cta-button.secondary {
  background: var(--glass);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* SECTIONS */
section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 0;
}


.about-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* LEGACY ABOUT BOXES REMOVED */

/* BENTO FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.5rem;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--glass-shadow);
}

.feature-card:hover h3 {
  color: white !important;
}

/* Bento Sizing */
.card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.card-wide {
  grid-column: span 2;
}

.card-tall {
  grid-row: span 2;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.feature-card i {
  font-size: 2.5rem;
  margin-bottom: auto;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.success-stories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.success-stories img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  border: 2px solid #233554;
  transition: transform 0.3s;
}

.success-stories img:hover {
  transform: scale(1.05);
}

/* CONTACT SECTION */
.contact-section {
  padding: 8rem 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.contact-container {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.contact-form button {
  padding: 1.2rem;
  background: var(--gradient-main);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}


/* FOOTER */
.pre-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-darker);
  padding: 4rem 2rem;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 2rem;
}

.pre-footer-left h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pre-footer-right h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.pre-footer-icons {
  display: flex;
  gap: 1.5rem;
}

.pre-footer-icons i {
  font-size: 1.8rem;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.pre-footer-icons i:hover {
  color: white;
  transform: scale(1.2);
}

footer {
  text-align: center;
  padding: 2rem;
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}



.header-about-us {
  font-size: 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  width: auto;
  height: 45px;
  margin-right: 15px;
  margin-left: -15px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

/* RESPONSIVNESS */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section {
    padding: 6rem 1.5rem;
  }

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

  .card-large,
  .card-wide,
  .card-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .pre-footer {
    flex-direction: column;
    text-align: center;
  }

  .pre-footer-icons {
    justify-content: center;
  }

  .cursor {
    display: none;
  }
}


/* Custom Cursor System */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  z-index: 10001;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.15s ease-out;
}

.cursor-ring.hovered {
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--accent);
}

@media (max-width: 768px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

.intro-video-section {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  z-index: 10;
  position: relative;
}

.video-container {
  max-width: 800px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(79, 172, 254, 0.7);
  border: 2px solid #4facfe;
  background: rgba(10, 10, 35, 0.85);
  backdrop-filter: blur(10px);
  position: relative;
  /* Add this for iframe positioning */
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  /* height controlled by padding */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}

.video-caption {
  color: #4facfe;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.4);
}



.faq {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  z-index: 10;
  position: relative;
}

.faq summary {
  cursor: pointer;
  font-weight: bold;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq summary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq p {
  padding: 1rem;
  color: #ccc;
}



.star {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 60%);
  border-radius: 50%;
  opacity: 0.8;
  animation-name: twinkle, drift;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, linear;
  animation-direction: alternate;
  filter: drop-shadow(0 0 6px #4facfe) drop-shadow(0 0 10px #00f2fe);
}


/* Custom Pointer */
.custom-pointer {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #4facfe;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background-color 0.3s;
  z-index: 9999;
  mix-blend-mode: difference;
}