@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ================================
   BASE STYLES
   ================================ */

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #0f172a;
}

body {
  margin: 0;
  line-height: inherit;
  color: #e2e8f0;
  background-color: #0f172a;
  overflow-y: visible;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

main {
  display: block;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* ================================
   NAVIGATION BAR STYLES
   ================================ */

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  z-index: 1000;
  padding: 1rem 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .navbar {
    padding: 1rem 5rem;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 1rem 8rem;
  }
}

@media (min-width: 1280px) {
  .navbar {
    padding: 1rem 10rem;
  }
}

@media (min-width: 1536px) {
  .navbar {
    padding: 1rem 12rem;
  }
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #8b5cf6;
}

.nav-link:hover::after {
  width: 100%;
}

/* Login Button Special Style */
.nav-login {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-login::after {
  display: none;
}

.nav-login:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
  color: #ffffff;
}

/* Dropdown Container */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Content */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1rem;
  background: rgba(30, 41, 59, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  padding-left: 1.75rem;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(139, 92, 246, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  }

  .dropdown-content {
    position: static;
    transform: none;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: rgba(139, 92, 246, 0.05);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    box-shadow: none;
  }

  .nav-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }

  .dropdown-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.05);
  }

  .nav-login {
    margin-top: 1rem;
    text-align: center;
  }

  /* Hamburger Animation */
  .mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 0 1rem;
  }

  .logo-img {
    height: 32px;
  }

  .nav-menu {
    width: 100%;
    right: -100%;
  }
}

/* ================================
   HERO SECTION STYLES
   ================================ */

/* Hero Section - Full page height with modern dark design */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 6rem 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 5rem 6rem 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 8rem 6rem 8rem;
  }
}

@media (min-width: 1280px) {
  .hero-section {
    padding: 8rem 10rem 6rem 10rem;
  }
}

@media (min-width: 1536px) {
  .hero-section {
    padding: 8rem 12rem 6rem 12rem;
  }
}

/* Animated background pattern */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
  animation: backgroundPulse 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Hero Container */
.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-container {
    max-width: 1400px;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* Hero Content */
.hero-content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

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

/* Hero Title */
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(139, 92, 246, 0.3);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 5.5rem;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

/* CTA Buttons Container */
.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta-buttons {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta-buttons {
    justify-content: flex-start;
  }
}

/* Hero Button Base Styles */
.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

/* Primary Button - Login */
.hero-btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

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

/* Secondary Button - About Us */
.hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(139, 92, 246, 0.5);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: #8b5cf6;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

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

/* Hero Image Container */
.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Image Placeholder */
.hero-image-placeholder {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  padding: 2rem;
}

.hero-image-placeholder:hover {
  border-color: rgba(139, 92, 246, 0.6);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
}

.placeholder-icon {
  width: 120px;
  height: 120px;
  color: rgba(139, 92, 246, 0.5);
  margin-bottom: 1.5rem;
}

.placeholder-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.placeholder-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* Actual Hero Image (when placeholder is replaced) */
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 640px) {  
  .hero-title {
    font-size: 2.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-subtitle {
    padding: 0 0.5rem;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-image-placeholder {
    aspect-ratio: 4 / 3;
    margin: 0 0.5rem;
  }
}

/* ================================
   AI TRANSFORMATION SECTION STYLES
   ================================ */

/* Transformation Section */
.transformation-section {
  padding: 6rem 3rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .transformation-section {
    padding: 7rem 5rem;
  }
}

@media (min-width: 1024px) {
  .transformation-section {
    padding: 7rem 8rem;
  }
}

@media (min-width: 1280px) {
  .transformation-section {
    padding: 7rem 10rem;
  }
}

@media (min-width: 1536px) {
  .transformation-section {
    padding: 7rem 12rem;
  }
}

.transformation-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.transformation-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #1e293b;
  margin-bottom: 4rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .transformation-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .transformation-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .transformation-title {
    font-size: 3.5rem;
  }
}

/* Simple Grid Layout */
.transformation-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .transformation-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

.transformation-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

/* Content */
.item-content {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.item-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #8b5cf6;
}

.item-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .hero-section {
    padding: 5rem 1.5rem 4rem 1.5rem;
  }

  .transformation-section {
    padding: 4rem 1.5rem;
  }

  .transformation-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .transformation-flow {
    gap: 1.75rem;
  }

  .item-title {
    font-size: 1.3rem;
  }

  .item-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* ================================
   OUR SOLUTION SECTION STYLES
   ================================ */

/* Solution Section */
.solution-section {
  padding: 5rem 3rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .solution-section {
    padding: 6rem 5rem;
  }
}

@media (min-width: 1024px) {
  .solution-section {
    padding: 7rem 8rem;
  }
}

@media (min-width: 1280px) {
  .solution-section {
    padding: 7rem 10rem;
  }
}

@media (min-width: 1536px) {
  .solution-section {
    padding: 7rem 12rem;
  }
}

.solution-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .solution-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Image Collage */
.solution-images {
  position: relative;
  height: 550px;
}

@media (min-width: 1024px) {
  .solution-images {
    height: 600px;
  }
}

.image-collage {
  position: relative;
  width: 100%;
  height: 100%;
}

.collage-item {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 4px solid #ffffff;
}

.collage-item:hover {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
  z-index: 10 !important;
}

/* Position and size each collage item */
.collage-1 {
  width: 45%;
  height: 55%;
  top: 5%;
  left: 5%;
  z-index: 3;
  transform: rotate(-3deg);
}

.collage-2 {
  width: 35%;
  height: 40%;
  top: 10%;
  right: 8%;
  z-index: 4;
  transform: rotate(5deg);
}

.collage-3 {
  width: 38%;
  height: 45%;
  bottom: 8%;
  left: 10%;
  z-index: 2;
  transform: rotate(2deg);
}

.collage-4 {
  width: 42%;
  height: 48%;
  bottom: 5%;
  right: 5%;
  z-index: 5;
  transform: rotate(-4deg);
}

.collage-5 {
  width: 28%;
  height: 32%;
  top: 50%;
  left: 35%;
  z-index: 6;
  transform: rotate(8deg);
}

.collage-6 {
  width: 25%;
  height: 28%;
  top: 25%;
  left: 25%;
  z-index: 1;
  transform: rotate(-6deg);
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collage-item:hover .collage-img {
  transform: scale(1.1);
}

/* Placeholder for images */
.collage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  z-index: -1;
}

/* Solution Content */
.solution-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1e293b;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .solution-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .solution-title {
    font-size: 3rem;
  }
}

/* Badge - REMOVED */

/* Solution Items */
.solution-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.25rem;
}

.solution-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(139, 92, 246, 0.03);
  border-radius: 12px;
  border-left: 3px solid #8b5cf6;
  transition: all 0.3s ease;
}

.solution-item:hover {
  background: rgba(139, 92, 246, 0.08);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.solution-number {
  font-size: 1.25rem;
  font-weight: 900;
  color: #8b5cf6;
  line-height: 1;
  min-width: 35px;
  opacity: 0.6;
}

.solution-details {
  flex: 1;
}

.solution-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.solution-list li {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.4;
  padding-left: 1.5rem;
  position: relative;
}

.solution-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .solution-section {
    padding: 4rem 1.5rem;
  }

  .solution-title {
    font-size: 2rem;
  }

  .solution-images {
    height: 350px;
  }

  .solution-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .solution-number {
    font-size: 1.25rem;
  }

  .solution-item-title {
    font-size: 1.125rem;
  }

  .solution-list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 1023px) {
  .solution-images {
    height: 400px;
  }
}

/* ================================
   PROVEN RESULTS SECTION STYLES
   ================================ */

.results-section {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .results-section {
    padding: 7rem 5rem;
  }
}

@media (min-width: 1024px) {
  .results-section {
    padding: 8rem 8rem;
  }
}

@media (min-width: 1280px) {
  .results-section {
    padding: 8rem 10rem;
  }
}

@media (min-width: 1536px) {
  .results-section {
    padding: 8rem 12rem;
  }
}

.results-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Title */
.results-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .results-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .results-title {
    font-size: 4rem;
  }
}

/* Impact Stats */
.impact-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 640px) {
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .impact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1280px) {
  .impact-stats {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
  }
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.4;
  font-weight: 500;
}

/* Featured Section */
.featured-section {
  margin-top: 5rem;
}

.featured-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.featured-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.featured-img-link {
  width: 100%;
  display: block;
  text-decoration: none;
}

.featured-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.featured-img:hover {
  transform: scale(1.05);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.featured-caption {
  font-size: 1rem;
  color: #e2e8f0;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  padding: 0 1rem;
  min-height: 3rem;
}

.featured-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: #8b5cf6;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 2px solid #8b5cf6;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-link:hover {
  background: #8b5cf6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .results-section {
    padding: 4rem 1.5rem;
  }

  .results-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }

  .impact-stats {
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .featured-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .featured-img {
    height: 200px;
  }
}

/* ================================
   GET STARTED SECTION STYLES
   ================================ */

.get-started-section {
  padding: 6rem 3rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .get-started-section {
    padding: 7rem 5rem;
  }
}

@media (min-width: 1024px) {
  .get-started-section {
    padding: 8rem 8rem;
  }
}

@media (min-width: 1280px) {
  .get-started-section {
    padding: 8rem 10rem;
  }
}

@media (min-width: 1536px) {
  .get-started-section {
    padding: 8rem 12rem;
  }
}

.get-started-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Title */
.get-started-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #1e293b;
  margin-bottom: 4rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .get-started-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .get-started-title {
    font-size: 3.5rem;
  }
}

/* Pathways Grid */
.pathways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .pathways-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Pathway Card */
.pathway-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pathway-card:hover {
  transform: translateY(-8px);
  border-color: #8b5cf6;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

/* Pathway Icon */
.pathway-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 50%;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.pathway-card:hover .pathway-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.pathway-icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

/* Pathway Title */
.pathway-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

/* Pathway Description */
.pathway-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Pathway Link */
.pathway-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: #8b5cf6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.pathway-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b5cf6;
  transition: width 0.3s ease;
}

.pathway-link:hover {
  color: #7c3aed;
  transform: translateX(5px);
}

.pathway-link:hover::after {
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .get-started-section {
    padding: 4rem 1.5rem;
  }

  .get-started-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .pathways-grid {
    gap: 2.5rem;
  }

  .pathway-card {
    padding: 2.5rem 1.5rem;
  }

  .pathway-icon {
    width: 70px;
    height: 70px;
  }

  .pathway-icon svg {
    width: 35px;
    height: 35px;
  }

  .pathway-title {
    font-size: 1.5rem;
  }

  .pathway-description {
    font-size: 0.95rem;
  }

  .pathway-link {
    font-size: 1rem;
  }
}

/* ================================
   FOOTER STYLES
   ================================ */

.footer {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding: 4rem 3rem 2rem 3rem;
  color: #e2e8f0;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 5rem 2rem 5rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 8rem 2rem 8rem;
  }
}

@media (min-width: 1280px) {
  .footer {
    padding: 5rem 10rem 2rem 10rem;
  }
}

@media (min-width: 1536px) {
  .footer {
    padding: 5rem 12rem 2rem 12rem;
  }
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
}

/* Footer Column */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Footer Description */
.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  color: #8b5cf6;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #8b5cf6;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Heading */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #8b5cf6;
  transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  padding: 0.75rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(30, 41, 59, 0.7);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-button:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Footer Contact */
.footer-contact {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: #8b5cf6;
  flex-shrink: 0;
}

.contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #8b5cf6;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }

  .footer-grid {
    gap: 2.5rem;
  }

  .footer-logo-text {
    font-size: 1.25rem;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .footer-newsletter-form {
    width: 100%;
  }
}

/* ================================
   CUSTOM NOTIFICATION STYLES
   ================================ */

.custom-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10000;
  transform: translateX(450px);
  opacity: 0;
  transition: all 0.3s ease;
}

.custom-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.custom-notification.success {
  border-left: 4px solid #10b981;
}

.custom-notification.error {
  border-left: 4px solid #ef4444;
}

.notification-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-icon svg {
  width: 32px;
  height: 32px;
}

.custom-notification.success .notification-icon {
  color: #10b981;
}

.custom-notification.error .notification-icon {
  color: #ef4444;
}

.notification-message {
  flex: 1;
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.5;
  font-weight: 500;
}

.notification-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  transition: color 0.3s ease;
  padding: 0;
}

.notification-close:hover {
  color: #64748b;
}

.notification-close svg {
  width: 20px;
  height: 20px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .custom-notification {
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 1rem 1.25rem;
  }
  
  .notification-message {
    font-size: 0.9rem;
  }
}
