@charset "utf-8";

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

:root {
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(10, 61, 143, 0.2);
    --accent-blue: #0a3d8f;
    --accent-blue-dark: #0c2854;
    --accent-blue-light: #e8f1ff;
    --accent-glow: rgba(10, 61, 143, 0.3);
    --text-primary: #0A1929;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
	--nav-height: 80px;
}

html {
    scroll-behavior: smooth;     /* smooth anchor jumps */
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Transparent on dark hero */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 1000px) {
    .nav-container {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-links {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero {
        padding-top: 240px;
    }
}

@media (max-width: 880px) {
    .hero {
        padding-top: 160px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

/* Nav links - white on transparent hero background */
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

/* Special styling for Demo link - neon blue gradient */
.nav-links a[href="#demo"] {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #0066ff 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
    border: 2px solid #00d4ff;
}

.nav-links a[href="#demo"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.7), 0 0 50px rgba(0, 153, 255, 0.5);
    background: linear-gradient(135deg, #00e5ff 0%, #00aaff 50%, #0077ff 100%);
}

.nav-links a[href="#demo"]::before {
    display: none;
}

nav.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::before {
    width: 60%;
}

.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::before {
    width: 60%;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    display: block;
}

.mobile-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Special styling for Demo link in mobile nav */
.mobile-nav a[href="#demo"] {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #0066ff 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
    border: 2px solid #00d4ff;
}

.mobile-nav a[href="#demo"]:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #00aaff 50%, #0077ff 100%);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.7), 0 0 50px rgba(0, 153, 255, 0.5);
}

/* Section styling - Alternating backgrounds */
section {
    min-height: 100vh;           /* every section = 1 screen */
    padding: 6rem 0;             /* keep your original vertical spacing */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;     /* vertically centre content */
}

/* Hero section - dark navy */
section#home {
    background: #0A1929;
    color: #ffffff;
}

/* Accreditation section - always dark navy */
section#accreditation {
    background: #0A1929;
    color: #ffffff;
}

/* Alternating pattern: white, pale blue for other sections */
section:not(#home):not(#accreditation):nth-child(odd) {
    background: #ffffff;
    color: var(--text-primary);
}

section:not(#home):not(#accreditation):nth-child(even) {
    background: #e8f1ff;
    color: var(--text-primary);
}

/* Text color adjustments for navy sections */
section#home .section-title,
section#home h1,
section#home h2,
section#home h3,
section#home h4,
section#accreditation .section-title,
section#accreditation h1,
section#accreditation h2,
section#accreditation h3,
section#accreditation h4 {
    color: #ffffff;
}

section#home .section-subtitle,
section#home p,
section#home .subtitle,
section#accreditation .section-subtitle,
section#accreditation p {
    color: rgba(255, 255, 255, 0.9);
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero {
  background: #0A1929;
  color: #ffffff;
  height: 100vh; /* full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding-top: 0;
  overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 60%);
    animation: pulse-glow 8s ease-in-out infinite;
    z-index: 1;
}

.hero-bg-animation,
.floating-shape,
.geo-shape,
.particles {
  display: none !important; /* remove all animations / float shapes */
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

#home.hero {
    height: 100vh;               /* keep exact height */
    min-height: 100vh;
    padding-top: 0;              /* no extra padding – navbar is on top */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated background elements */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
    opacity: 0.6;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(0, 153, 255, 0.2) 30%, transparent 70%);
    animation: float 25s infinite ease-in-out, glow-pulse-1 6s infinite ease-in-out;
}

.shape-2 {
    width: 500px;
    height: 500px;
    top: 30%;
    right: -150px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.5) 0%, rgba(0, 102, 255, 0.3) 30%, transparent 70%);
    animation: float 30s infinite ease-in-out, glow-pulse-2 8s infinite ease-in-out;
    animation-delay: 3s;
}

.shape-3 {
    width: 450px;
    height: 450px;
    bottom: -100px;
    left: 25%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, rgba(0, 153, 255, 0.2) 30%, transparent 70%);
    animation: float 28s infinite ease-in-out, glow-pulse-3 7s infinite ease-in-out;
    animation-delay: 6s;
}

@keyframes glow-pulse-1 {
    0%, 100% {
        opacity: 0.4;
        filter: blur(40px);
    }
    50% {
        opacity: 0.8;
        filter: blur(60px);
    }
}

@keyframes glow-pulse-2 {
    0%, 100% {
        opacity: 0.5;
        filter: blur(45px);
    }
    50% {
        opacity: 0.9;
        filter: blur(70px);
    }
}

@keyframes glow-pulse-3 {
    0%, 100% {
        opacity: 0.3;
        filter: blur(50px);
    }
    50% {
        opacity: 0.7;
        filter: blur(80px);
    }
}

.shape-3 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: 20%;
    animation-delay: 16s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -40px) scale(1.05);
    }
    66% {
        transform: translate(-30px, 50px) scale(0.95);
    }
}

.geo-shape {
    position: absolute;
    animation: rotate-gentle 40s infinite linear, neon-pulse 4s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 40px rgba(0, 153, 255, 0.4));
}

.geo-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 255, 0.3) 100%);
    animation: rotate-gentle 40s infinite linear, neon-pulse 3s infinite ease-in-out;
}

.geo-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 8%;
    border-radius: 50% 0 50% 0;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(0, 102, 255, 0.3) 100%);
    animation: rotate-gentle 35s infinite linear reverse, neon-pulse 4s infinite ease-in-out;
    animation-delay: 2s;
}

@keyframes neon-pulse {
    0%, 100% {
        opacity: 0.3;
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 40px rgba(0, 153, 255, 0.4));
    }
    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 153, 255, 0.6));
    }
}

@keyframes rotate-gentle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    animation: particle-rise 12s infinite ease-out;
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 153, 255, 0.6),
        0 0 30px rgba(0, 102, 255, 0.4);
}

@keyframes particle-rise {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 1),
            0 0 40px rgba(0, 153, 255, 0.8),
            0 0 60px rgba(0, 102, 255, 0.6);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5) rotate(360deg);
    }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1.5s; animation-duration: 13s; }
.particle:nth-child(3) { left: 30%; animation-delay: 3s; animation-duration: 11s; }
.particle:nth-child(4) { left: 40%; animation-delay: 0.5s; animation-duration: 14s; }
.particle:nth-child(5) { left: 50%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(6) { left: 60%; animation-delay: 4s; animation-duration: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(8) { left: 80%; animation-delay: 3.5s; animation-duration: 11s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.5s; animation-duration: 14s; }
.particle:nth-child(10) { left: 95%; animation-delay: 4.5s; animation-duration: 12s; }

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 150px; /* ADD THIS LINE */
    animation: fadeInUp 1s ease;
}

.hero-text-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.hero-image-container {
    flex: 1;
    max-width: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #0066ff 100%);
    color: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 153, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.4);
    border: 2px solid #00d4ff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer-cta 3s infinite;
}

@keyframes shimmer-cta {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 153, 255, 0.6), 0 0 100px rgba(0, 102, 255, 0.4);
    background: linear-gradient(135deg, #00e5ff 0%, #00aaff 50%, #0077ff 100%);
    border-color: #00e5ff;
}

.cta-secondary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 255, 0.3) 100%);
    color: #ffffff;
    border: 2px solid #00d4ff;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3), 0 0 30px rgba(0, 153, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 212, 255, 0.2) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer-cta 3s infinite;
}

.cta-secondary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5), 0 0 50px rgba(0, 153, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 153, 255, 0.4) 100%);
    border-color: #00e5ff;
}

/* Hero Main Image - MASSIVE and EXCITING */
.hero-main-image {
  width: 100%;
  max-width: 1400px; /* HUGE size */
  height: 800px; /* TALL */
  position: relative;
  perspective: 1500px;
  animation: heroEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: scale(0.7) rotateY(-20deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

.hero-main-image .hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dashboard-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 80px rgba(0, 212, 255, 0.5))
          drop-shadow(0 0 40px rgba(0, 153, 255, 0.3));
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: imageGlow 3s ease-in-out infinite;
}

@keyframes imageGlow {
  0%, 100% {
    filter: drop-shadow(0 30px 80px rgba(0, 212, 255, 0.5))
            drop-shadow(0 0 40px rgba(0, 153, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 35px 100px rgba(0, 212, 255, 0.7))
            drop-shadow(0 0 60px rgba(0, 153, 255, 0.5));
  }
}

/* HOVER - Lift and glow */
.hero-main-image:hover .hero-image-placeholder {
  transform: translateY(-30px) translateZ(50px) scale(1.05);
}

.hero-main-image:hover .dashboard-screenshot {
  filter: drop-shadow(0 40px 120px rgba(0, 212, 255, 0.8))
          drop-shadow(0 0 80px rgba(0, 153, 255, 0.6))
          brightness(1.1);
}

/* Animated GLOW RINGS */
.glow-ring,
.glow-ring-2 {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(0, 212, 255, 0.4);
  pointer-events: none;
  z-index: 1;
}

.glow-ring {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  animation: ringPulse 4s ease-in-out infinite;
}

.glow-ring-2 {
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  border-color: rgba(0, 153, 255, 0.3);
  animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* SPARKLES */
.sparkle {
  position: absolute;
  font-size: 2rem;
  z-index: 10;
  pointer-events: none;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 70%;
  left: 8%;
  animation-delay: 1s;
}

.sparkle-3 {
  top: 30%;
  left: -3%;
  animation-delay: 2s;
}

.sparkle-4 {
  top: 50%;
  right: -2%;
  animation-delay: 1.5s;
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
}

@keyframes sparkleFloat {
  0%, 100% {
    transform: translateY(0px) scale(1) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) scale(1.3) rotate(180deg);
    opacity: 1;
  }
  75% {
    opacity: 0.8;
  }
}



/* Animated gradient background */
.hero-main-image::after {
  content: '';
  position: absolute;
  inset: -50px;
  background: radial-gradient(
    circle at center,
    rgba(0, 212, 255, 0.15),
    rgba(0, 153, 255, 0.1),
    transparent 70%
  );
  z-index: 0;
  animation: bgPulse 4s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes bgPulse {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Text animations - BOUNCY */
.hero-text-content h1 {
  animation: bounceIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.hero-text-content .subtitle {
  animation: bounceIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s backwards;
}

.hero-text-content .cta-buttons {
  animation: bounceIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s backwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  60% {
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CTA Button - SUPER EXCITING */
.cta-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(0, 212, 255, 0.5),
      0 0 40px rgba(0, 212, 255, 0.3),
      0 5px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(0, 212, 255, 0.8),
      0 0 60px rgba(0, 212, 255, 0.5),
      0 8px 25px rgba(0, 0, 0, 0.4);
  }
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-primary:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 
    0 0 40px rgba(0, 212, 255, 1),
    0 0 80px rgba(0, 212, 255, 0.6),
    0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-main-image {
    max-width: 1100px;
    height: 650px;
  }
}

@media (max-width: 968px) {
  .hero-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .hero-text-content {
    max-width: 100%;
  }
  
  .hero h1 {
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-main-image {
    max-width: 750px;
    height: 550px;
  }
}

@media (max-width: 768px) {
  .hero-main-image {
    max-width: 350px;
    height: 280px;
  }
  
  .sparkle {
    font-size: 1.5rem;
  }
	.dashboard-screenshot {
    margin: -60px 0; /* Reduce even more on mobile */
  }
}

@media (max-width: 480px) {
  .hero-main-image {
    height: 350px;
  }
  
  .sparkle {
    display: none;
  }
  
  .glow-ring,
  .glow-ring-2 {
    display: none;
  }
}

/* Accreditation section - Dark sexy background */
#accreditation {
    background: linear-gradient(135deg, #0A1929 0%, #0d2440 50%, #0A1929 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

#accreditation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 153, 255, 0.15) 0%, transparent 50%);
    animation: pulse-glow 8s ease-in-out infinite;
    z-index: 0;
}

#accreditation .container {
    position: relative;
    z-index: 1;
}

#accreditation .section-title {
    color: #ffffff;
}

#accreditation .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

#accreditation .about-text h3 {
    color: #ffffff;
}

#accreditation .about-text p {
    color: rgba(255, 255, 255, 0.85);
}

#accreditation .timeline-skill {
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

#accreditation .about-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
}

/* About section / How It Works */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.about-intro {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background-color: #F1F5F9;
    box-shadow: 0 10px 30px rgba(10, 25, 41, 0.12);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 61, 143, 0.8) 0%, rgba(12, 40, 84, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-large {
    font-size: 6rem;
    font-weight: 900;
    color: white;
}

/* -------------------------------------------------
   3-COLUMN STEPS – FULL HEIGHT & RESPONSIVE
   ------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.step-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(10, 25, 41, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(10, 25, 41, 0.18);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.step-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #00d4ff;
}

.step-text {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
}

.step-text h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #00d4ff;
  border-radius: 2px;
}

.step-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.steps-cta {
  text-align: center;
  margin-top: 3rem;
}

.step-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #00d4ff;
  background-color: #1a2332; /* ADD: Placeholder color while loading */
  opacity: 0; /* ADD: Start invisible */
  animation: fadeInImage 0.6s ease forwards; /* ADD: Fade in animation */
}

@keyframes fadeInImage {
  to {
    opacity: 1;
  }
}

/* -------------------------------------------------
   RESPONSIVE: Tablet & Mobile
   ------------------------------------------------- */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .step-image {
    height: 180px;
  }
  
  .step-text {
    padding: 1.5rem;
  }
  
  .step-text h3 {
    font-size: 1.4rem;
  }
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(10, 25, 41, 0.08);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(10, 25, 41, 0.15);
    border-color: var(--accent-blue);
}

.about-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Timeline skills styling */
.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-skill {
    padding: 0.5rem 1rem;
    background: var(--accent-blue-light);
    border: 1px solid var(--accent-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.timeline-achievements {
    margin-top: 1rem;
}

.timeline-achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-achievement::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: 900;
    font-size: 1.1rem;
}

/* Portfolio grid (demo cards) */
/* Portfolio grid (demo cards) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: #ffffff;
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(10, 25, 41, 0.08);
    position: relative;
}

/* Dark card styling */
.portfolio-card.dark-card {
    background: linear-gradient(135deg, #0d1620 0%, #1a2332 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.1);
}

.portfolio-card.dark-card .portfolio-title {
    color: #ffffff;
}

.portfolio-card.dark-card .portfolio-description {
    color: rgba(255, 255, 255, 0.85);
}

.portfolio-card.dark-card .timeline-achievement {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-card.dark-card .timeline-achievement::before {
    color: #00d4ff;
}

/* Featured card (most popular) */
.portfolio-card.featured-card {
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5), 
        0 0 60px rgba(0, 212, 255, 0.3),
        0 0 100px rgba(0, 153, 255, 0.2);
}

.portfolio-card.featured-card:hover {
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.6), 
        0 0 80px rgba(0, 212, 255, 0.5),
        0 0 120px rgba(0, 153, 255, 0.3);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 25, 41, 0.15);
}

.portfolio-card.dark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
}

.portfolio-image {
    height: 120px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.portfolio-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Contact section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: #ffffff;
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(10, 25, 41, 0.08);
}

.contact-form-container {
    background: #F8FAFB;
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(10, 25, 41, 0.08);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-details h4 {
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-details p {
    padding-left: 0;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.form-input, .form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: #ffffff;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(10, 61, 143, 0.1);
    background: #ffffff;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--text-tertiary);
}

.form-textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #0066ff 100%);
    border: 2px solid #00d4ff;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(0, 153, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer-cta 3s infinite;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #00aaff 50%, #0077ff 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 153, 255, 0.6);
    border-color: #00e5ff;
}

/* Footer */
footer {
    background: var(--text-primary);
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Responsive design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
     .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    
    .mobile-menu-btn {
        order: 2;
    }
    
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .hero {
        padding-top: 120px; /* ADD THIS */
        min-height: 100vh; /* ADD THIS - keeps full screen */
    }

   section {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }
	
	 .hero-main-image {
        max-width: 600px;
        height: 350px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

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

    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }

    .about-image {
        width: 250px;
        height: 250px;
    }

    .step-number-large {
        font-size: 4rem;
    }
}

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

    .nav-container {
        padding: 0 1rem;
    }

    .hero-badges {
        flex-direction: column;
    }

    .badge-item {
        width: 100%;
        text-align: center;
    }

    .about-image {
        width: 200px;
        height: 200px;
    }
}

/* Scroll animations */
/* Scroll animations - FASTER & SMOOTHER */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}