@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* ============================================
   BALAJI COMPUTER ACADEMY - DRAFT REPLICA CSS
   Exact gradients, animations, and styling
   ============================================ */

:root {
   /* Core Colors - Exact from reference */
   --bg: #ffffff;
   --surface: #ffffff;
   --violet: #6c5ce7;
   --violet-light: #a29bfe;
   --violet-dark: #4834d4;
   --violet-soft: #ede9ff;
   --violet-muted: rgba(108, 92, 231, 0.08);

   /* Dark Theme */
   --dark: #0f0f1a;
   --dark-2: #1a1a2e;
   --dark-card: rgba(255, 255, 255, 0.03);

   /* Text Colors */
   --text: #1a1325;
   --text-light: #2d2540;
   --subtext: #6b6589;
   --subtext-light: #9b95b0;

   /* Gradients - Exact from reference */
   --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, #ddd6ff 0%, #f8f7ff 60%);
   --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #4834d4 100%);
   --gradient-violet-glow: radial-gradient(circle 600px at 50% 50%, rgba(108, 92, 231, 0.08), transparent);
   --gradient-card-pink: linear-gradient(135deg, #ffeef8 0%, #fff0f5 100%);
   --gradient-card-yellow: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
   --gradient-card-blue: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
   --gradient-dark-card: linear-gradient(145deg, rgba(108, 92, 231, 0.15) 0%, rgba(72, 52, 212, 0.1) 100%);
   --gradient-dark-bg: linear-gradient(180deg, #0f0f1a 0%, #16162a 100%);

   /* Spacing */
   --radius-sm: 12px;
   --radius: 18px;
   --radius-lg: 24px;
   --radius-xl: 32px;
   --radius-full: 100px;

   /* Shadows */
   --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.06);
   --shadow-md: 0 8px 30px rgba(108, 92, 231, 0.12);
   --shadow-lg: 0 20px 60px rgba(108, 92, 231, 0.18);
   --shadow-xl: 0 25px 80px rgba(108, 92, 231, 0.22);
   --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.4);

   /* Transitions */
   --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
   --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   font-family: "Poppins", sans-serif;
   background: var(--bg);
   color: var(--text);
   overflow-x: hidden;
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

.container {
   width: 100%;
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 15px;
}

/* Custom Cursor */
.cursor {
   width: 8px;
   height: 8px;
   background: #4c6ef5;
   border-radius: 50%;
   position: fixed;
   top: 0;
   left: 0;
   pointer-events: none;
   z-index: 10000;
   transform: translate(-50%, -50%);
   transition: transform 0.08s ease-out;
}

.cursor-ring {
   width: 40px;
   height: 40px;
   border: 1.5px solid #4c6ef5;
   border-radius: 50%;
   position: fixed;
   top: 0;
   left: 0;
   pointer-events: none;
   z-index: 9999;
   transform: translate(-50%, -50%);
   transition: all 0.18s var(--ease-out);
}

.cursor-ring.expand {
   width: 60px;
   height: 60px;
   background: rgba(108, 92, 231, 0.06);
   border-color: var(--violet);
   border-width: 2px;
}

/* ============================================
   LOADER
   ============================================ */
#loader {
   position: fixed;
   inset: 0;
   background: #101011;
   z-index: 10001;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}

.loader-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 24px;
}

.loader-logo {
   display: flex;
   align-items: center;
   gap: 12px;
   font-family: "Poppins", sans-serif;
   font-size: 1.5rem;
   font-weight: 700;
   color: #fff;
   letter-spacing: -0.02em;
   opacity: 0;
   transform: translateY(10px);
   animation: fadeUp 0.5s var(--ease-out) 0.2s forwards;
}

.loader-bar-wrap {
   width: 200px;
   height: 3px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 99px;
   overflow: hidden;
}

.loader-bar {
   height: 100%;
   width: 0%;
   background: var(--gradient-primary);
   border-radius: 99px;
   transition: width 0.05s linear;
}

.loader-num {
   font-family: "Poppins", sans-serif;
   font-size: 0.85rem;
   color: var(--violet-light);
   letter-spacing: 0.15em;
   font-weight: 500;
   font-variant-numeric: tabular-nums;
}

@keyframes fadeUp {
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 20px 48px;
   transition: all 0.4s var(--ease-out);
}

nav .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

nav.scrolled {
   background: rgba(248, 247, 255, 0.85);
   backdrop-filter: blur(24px) saturate(1.8);
   -webkit-backdrop-filter: blur(24px) saturate(1.8);
   border-bottom: 1px solid rgba(108, 92, 231, 0.1);
   padding: 14px 26px;
}

.nav-logo {
   display: flex;
   align-items: center;
   gap: 10px;
   font-family: "Poppins", sans-serif;
   font-weight: 700;
   font-size: 1.25rem;
   color: var(--text);
   text-decoration: none;
   letter-spacing: -0.03em;
}

.nav-logo svg {
   width: 28px;
   height: 28px;
}

.nav-links {
   display: flex;
   align-items: center;
   gap: 36px;
   list-style: none;
}

.nav-links a {
   font-size: 0.92rem;
   font-weight: 500;
   color: var(--subtext);
   text-decoration: none;
   transition: color 0.25s ease;
   position: relative;
   padding: 4px 0;
}

.nav-links a::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 100%;
   height: 2px;
   background: var(--violet);
   border-radius: 2px;
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover {
   color: var(--violet);
}

.nav-links a:hover::after {
   transform: scaleX(1);
}

.nav-cta {
   background: var(--dark);
   color: #fff;
   padding: 10px 24px;
   border-radius: var(--radius-full);
   font-size: 0.9rem;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s var(--ease-out);
   letter-spacing: -0.01em;
}

.nav-cta:hover {
   background: var(--violet);
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
   min-height: 100vh;
   background: var(--bg);
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   position: relative;
   overflow: hidden;
   position: relative;
}

.hero-gradient {
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   height: 100%;
   width: 100%;
   background: linear-gradient(to bottom, transparent, #d2caff, transparent);
}

.hero-bg-gradient {
   position: absolute;
   inset: 0;
   background: var(--gradient-violet-glow);
   pointer-events: none;
}

/* Floating Shapes */
.hero-shape {
   position: absolute;
   border-radius: 50%;
   pointer-events: none;
   filter: blur(60px);
}

.shape-1 {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(162, 155, 254, 0.25) 0%, transparent 70%);
   top: -150px;
   right: -100px;
   animation: floatShape 10s ease-in-out infinite;
}

.shape-2 {
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
   bottom: 200px;
   left: -100px;
   animation: floatShape 12s ease-in-out infinite reverse;
}

.shape-3 {
   width: 300px;
   height: 300px;
   background: radial-gradient(circle, rgba(221, 214, 255, 0.3) 0%, transparent 70%);
   top: 50%;
   right: 10%;
   animation: floatShape 8s ease-in-out infinite 2s;
}

@keyframes floatShape {

   0%,
   100% {
      transform: translate(0, 0) scale(1);
   }

   33% {
      transform: translate(30px, -30px) scale(1.05);
   }

   66% {
      transform: translate(-20px, 20px) scale(0.95);
   }
}

.hero-content {
   position: relative;
   z-index: 2;
   max-width: 800px;
}

/* Hero Badge */
.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: rgba(255, 255, 255, 0.9);
   border: 1px solid rgba(108, 92, 231, 0.216);
   border-radius: var(--radius-full);
   padding: 6px 16px 6px 6px;
   font-size: 0.88rem;
   color: var(--subtext);
   margin-bottom: 32px;
   backdrop-filter: blur(10px);
   box-shadow: var(--shadow-sm);
   opacity: 0;
   transform: translateY(20px);
}

.badge-pill {
   background: var(--dark);
   color: #fff;
   border-radius: var(--radius-full);
   padding: 3px 12px;
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.04em;
}

.badge-text {
   font-weight: 500;
}

/* Hero Title */
.hero h1 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2.8rem, 6vw, 5.5rem);
   font-weight: 500;
   line-height: 1.05;
   letter-spacing: -0.04em;
   color: var(--text);
   margin-bottom: 24px;
   opacity: 0;
   transform: translateY(40px);
}

/* Hero Subtitle */
.hero-sub {
   max-width: 800px;
   margin: 0 auto 36px;
   font-size: 1.1rem;
   color: var(--subtext);
   line-height: 1.7;
   font-weight: 400;
   opacity: 0;
   transform: translateY(30px);
}

/* Hero Buttons */
.hero-btns {
   display: flex;
   gap: 16px;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   opacity: 0;
   transform: translateY(30px);
}

.btn-primary {
   background: linear-gradient(to bottom, #5B3FF1, #826CFE);
   color: #fff;
   padding: 14px 28px;
   border-radius: var(--radius-full);
   font-size: 1rem;
   font-weight: 600;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 12px;
   transition: all 0.3s var(--ease-out);
   box-shadow: 0 8px 32px rgba(108, 92, 231, 0.4);
   letter-spacing: -0.01em;
   border: 2px solid #6850f0;
   cursor: pointer;
}

.btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 40px rgba(108, 92, 231, 0.5);
}

.hero-btn {
   display: flex;
   align-items: center;
   padding: 10px;
   padding-left: 20px;
   box-shadow: 0px 10px 30px 0px #5a3ff19c;
}

.btn-arrow {
   width: 38px;
   height: 38px;
   background: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.25s var(--ease-out);
}

.btn-arrow svg {
   fill: #000;
   height: 17px;
   width: 17px;
}

.btn-primary:hover .btn-arrow {
   transform: translateX(3px);
}

.btn-secondary {
   color: var(--subtext);
   font-weight: 500;
   font-size: 0.95rem;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   transition: color 0.25s ease;
   padding: 14px 24px;
}

.btn-secondary:hover {
   color: var(--violet);
}

.hero-images {
   height: 550px;
   margin-top: 100px;
   width: 100%;
   z-index: 100;
   display: flex;
   align-items: center;
   gap: 40px;
}

.hero-right,
.hero-left {
   background-color: #fff;
   height: 100%;
   border-radius: 30px;
   box-shadow: var(--shadow-lg);
}

.hero-right {
   width: 30%;
   padding: 10px;
}

.hero-left {
   width: 70%;
   display: flex;
   gap: 10px;
   align-items: center;
   padding: 10px;
}

.hero-left .balaji-logo {
   width: 50%;
   background: #101011;
   height: 100%;
   border-radius: 27px;
   display: flex;
   padding: 30px;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   gap: 15px;
}

.balaji-logo svg {
   height: 150px;
   width: 150px;
   animation: float 3s ease-in-out infinite;
}
.balaji-logo p{
   font-size: 1.8rem;
   color: white;
   font-weight: 600;
}

.hero-left .languages{
   height: 100%;
   border-radius: 27px;
   width: 50%;
   padding: 30px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
   justify-content: center;
}
.languages p{
   font-size: 2rem;
   font-weight: 500;
}
.languages .icons{
   width: 100%;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   place-items: center;
   gap: 20px;
   padding: 0 10px;
}
.languages .icons .icon{
   display: inline-block;
   height: 60px;
   width: 60px;
   overflow: hidden;
   border-radius: 15px;
   transition: 200ms ease-in;
}
.languages .icons .icon:hover{
   transform: scale(1.1);
}

.icons .icon img{
   height: 100%;
   width: 100%;
   object-fit: cover;
}
@keyframes float {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-20px);
   }

   100% {
      transform: translateY(0);
   }
}

.hero-right .right-image{
   height: 80%;
   background: #101011;
   width: 100%;
   border-radius: 27px;
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
}
.right-image img{
   width: 80%;
   height: 80%;
   object-fit: contain;
}
.hero-right .right-desc{
   margin: 20px;
   font-weight: 500;
   font-size: 1.1rem;
}

/* ============================================
   HERO DASHBOARD MOCKUPS
   ============================================ */
.hero-dashboard {
   display: flex;
   gap: 24px;
   margin-top: 72px;
   width: 100%;
   max-width: 1100px;
   position: relative;
   z-index: 2;
   opacity: 0;
   transform: translateY(60px);
}

.dashboard-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   border: 1px solid rgba(108, 92, 231, 0.1);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   transition: transform 0.4s var(--ease-out);
}

.card-main {
   flex: 1.6;
}

.card-side {
   flex: 0.9;
   display: flex;
   flex-direction: column;
}

.dashboard-header {
   background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
   padding: 16px 20px;
   display: flex;
   align-items: center;
   gap: 16px;
}

.dashboard-dots {
   display: flex;
   gap: 6px;
}

.dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
}

.dot.red {
   background: #ff5f57;
}

.dot.yellow {
   background: #febc2e;
}

.dot.green {
   background: #28c840;
}

.dashboard-tabs {
   display: flex;
   gap: 4px;
   margin-left: 12px;
}

.tab {
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.8rem;
   padding: 4px 12px;
   border-radius: 6px;
   cursor: pointer;
   transition: all 0.2s;
}

.tab.active {
   color: #fff;
   background: rgba(255, 255, 255, 0.1);
}

.dashboard-avatars {
   display: flex;
   margin-left: auto;
   margin-right: 12px;
}

.dashboard-avatars .avatar {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   border: 2px solid #1a1a2e;
   margin-left: -8px;
   object-fit: cover;
}

.avatar-more {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.15);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.75rem;
   margin-left: -8px;
   border: 2px solid #1a1a2e;
}

.btn-share {
   background: #4c6ef5;
   color: #fff;
   border: none;
   padding: 6px 16px;
   border-radius: 8px;
   font-size: 0.8rem;
   font-weight: 600;
   cursor: pointer;
}

/* Dashboard Body */
.dashboard-body {
   display: flex;
   padding: 0;
   background: #f5f5f7;
   min-height: 320px;
   position: relative;
}

.sidebar-mock {
   width: 60px;
   background: #fff;
   border-right: 1px solid rgba(0, 0, 0, 0.05);
   padding: 16px 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 16px;
}

.sidebar-icon {
   width: 36px;
   height: 36px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--subtext);
   cursor: pointer;
   transition: all 0.2s;
}

.sidebar-icon.active {
   background: var(--violet-soft);
   color: var(--violet);
}

.sidebar-icon:hover {
   background: var(--violet-soft);
   color: var(--violet);
}

.main-content-mock {
   flex: 1;
   padding: 20px;
}

.mock-breadcrumb {
   font-size: 0.8rem;
   color: var(--subtext);
   margin-bottom: 12px;
   font-weight: 500;
}

.mock-website-preview {
   background: #fff;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mock-nav {
   display: flex;
   align-items: center;
   padding: 12px 20px;
   gap: 24px;
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mock-logo {
   font-weight: 700;
   color: var(--text);
   font-size: 0.9rem;
}

.mock-nav-links {
   display: flex;
   gap: 20px;
   font-size: 0.8rem;
   color: var(--subtext);
}

.mock-nav-links span {
   cursor: pointer;
}

.mock-cta {
   margin-left: auto;
   background: #ffa94d;
   color: #fff;
   padding: 6px 14px;
   border-radius: 6px;
   font-size: 0.75rem;
   font-weight: 600;
}

.mock-hero-preview {
   display: flex;
   padding: 24px;
   gap: 24px;
   align-items: center;
}

.mock-hero-text h3 {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 8px;
   line-height: 1.3;
}

.mock-hero-text p {
   font-size: 0.8rem;
   color: var(--subtext);
   margin-bottom: 16px;
}

.mock-btns {
   display: flex;
   gap: 12px;
}

.mock-btn-primary {
   background: #ffa94d;
   color: #fff;
   padding: 8px 16px;
   border-radius: 6px;
   font-size: 0.8rem;
   font-weight: 600;
}

.mock-btn-secondary {
   color: var(--subtext);
   font-size: 0.8rem;
   font-weight: 500;
}

.mock-hero-image {
   width: 180px;
   height: 120px;
   border-radius: var(--radius-sm);
   overflow: hidden;
   flex-shrink: 0;
}

.mock-hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Floating Comment */
.floating-comment {
   position: absolute;
   bottom: 40px;
   right: 40px;
   display: flex;
   align-items: center;
   gap: 8px;
   animation: floatComment 4s ease-in-out infinite;
}

@keyframes floatComment {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-8px);
   }
}

.comment-avatar {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: 2px solid #fff;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comment-bubble {
   background: var(--violet);
   color: #fff;
   padding: 8px 14px;
   border-radius: 12px;
   border-bottom-left-radius: 4px;
   font-size: 0.8rem;
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.comment-name {
   font-weight: 600;
   font-size: 0.75rem;
}

.comment-text {
   font-size: 0.75rem;
   opacity: 0.9;
}

.comment-arrow {
   position: absolute;
   bottom: -8px;
   left: 50px;
   color: var(--violet);
}

/* Side Card */
.side-card-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 20px;
   background: #fff;
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.side-logo {
   font-family: "Poppins", sans-serif;
   font-weight: 700;
   font-size: 1rem;
   color: var(--text);
}

.side-card-body {
   flex: 1;
   background: #f5f5f7;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.side-image-container {
   position: relative;
   border-radius: var(--radius);
   overflow: hidden;
   background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 50%, #e17055 100%);
   aspect-ratio: 3/4;
}

.side-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   mix-blend-mode: overlay;
   opacity: 0.8;
}

.image-overlay {
   position: absolute;
   inset: 0;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: 16px;
}

.floating-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: #fff;
   padding: 8px 14px;
   border-radius: var(--radius-full);
   font-size: 0.8rem;
   font-weight: 600;
   color: var(--text);
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
   width: fit-content;
}

.badge-framer {
   align-self: flex-end;
   gap: 6px;
}

.side-toolbar {
   display: flex;
   align-items: center;
   gap: 8px;
   background: #fff;
   padding: 10px;
   border-radius: var(--radius);
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.toolbar-btn {
   width: 32px;
   height: 32px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--subtext);
   cursor: pointer;
   transition: all 0.2s;
}

.toolbar-btn:hover {
   background: var(--violet-soft);
   color: var(--violet);
}

.toolbar-divider {
   width: 1px;
   height: 20px;
   background: rgba(0, 0, 0, 0.1);
   margin: 0 4px;
}

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip {
   padding: 48px 0;
   overflow: hidden;
   position: relative;
   background: var(--bg);
}

.logo-strip::before,
.logo-strip::after {
   content: '';
   position: absolute;
   top: 0;
   bottom: 0;
   width: 150px;
   z-index: 2;
   pointer-events: none;
}

.logo-strip::before {
   left: 0;
   background: linear-gradient(to right, var(--bg), transparent);
}

.logo-strip::after {
   right: 0;
   background: linear-gradient(to left, var(--bg), transparent);
}

.logo-track {
   display: flex;
   gap: 64px;
   align-items: center;
   width: max-content;
   animation: scrollLogos 25s linear infinite;
}

@keyframes scrollLogos {
   from {
      transform: translateX(0);
   }

   to {
      transform: translateX(-50%);
   }
}

.logo-item {
   flex-shrink: 0;
   font-size: 1.6rem;
   font-weight: 600;
   opacity: 0.4;
   transition: opacity 0.3s;
   filter: grayscale(100%);
}

.logo-item:hover {
   opacity: 0.9;
   cursor: pointer;
}


/* ============================================
   SECTION COMMON
   ============================================ */
section {
   padding: 100px 48px;
   position: relative;
}

.section-header {
   text-align: center;
   margin-bottom: 64px;
}

.section-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--violet-soft);
   color: var(--violet-dark);
   padding: 6px 16px;
   border-radius: var(--radius-full);
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin-bottom: 20px;
}

.section-title {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2rem, 4vw, 3.2rem);
   font-weight: 600;
   letter-spacing: -0.04em;
   line-height: 1.1;
   color: var(--text);
}

.section-title.light {
   color: #fff;
}

.section-title.left {
   text-align: left;
}

.section-sub {
   font-size: 1.08rem;
   color: var(--subtext);
   line-height: 1.7;
   max-width: 520px;
   margin: 16px auto 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
   background: transparent;
   margin-top: 100px;
}

.features-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 1300px;
   margin: 0 auto;
}

.feature-card {
   background: var(--surface);
   box-shadow: var(--shadow-lg);
   border-radius: var(--radius-xl);
   padding: 10px;
   transition: all 0.4s var(--ease-out);
   position: relative;
   border: 1px solid white;
   overflow: hidden;
}

/* .feature-card::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, var(--violet-soft), transparent);
   opacity: 0;
   transition: opacity 0.4s;
   border-radius: var(--radius-xl);
} */

.feature-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-lg);
   border-color: var(--violet-light);
}

/* .feature-card:hover::before {
   opacity: 1;
} */

.feature-visual {
   height: 300px;
   border-radius: var(--radius-lg);
   margin-bottom: 24px;
   overflow: hidden;
   position: relative;
}

.visual-bg {
   width: 100%;
   height: 100%;
   border-radius: var(--radius-lg);
   position: relative;
   overflow: hidden;
}

.visual-bg.pink {
   background: var(--gradient-card-pink);
}

.visual-bg.yellow {
   background: var(--gradient-card-yellow);
}

.visual-bg.blue {
   background: var(--gradient-card-blue);
}

/* Feature Visual Elements */
.floating-ui {
   position: absolute;
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow-md);
   padding: 12px;
}

.ui-1 {
   top: 20px;
   left: 20px;
   display: flex;
   gap: 8px;
   align-items: center;
}

.ui-bar {
   width: 60px;
   height: 8px;
   background: var(--violet-soft);
   border-radius: 4px;
}

.ui-circle {
   width: 24px;
   height: 24px;
   background: var(--gradient-primary);
   border-radius: 50%;
}

.ui-2 {
   bottom: 20px;
   right: 20px;
   width: 80px;
   height: 80px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.ui-image-placeholder {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(255, 107, 157, 0.1);
   border-radius: var(--radius);
}

.prototype-mock {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 16px;
   height: 100%;
   padding: 20px;
}

.mock-screen {
   width: 80px;
   height: 120px;
   background: #fff;
   border-radius: var(--radius-sm);
   box-shadow: var(--shadow-md);
   border: 2px solid var(--violet);
}

.mock-arrow {
   width: 40px;
   height: 2px;
   background: var(--violet);
   position: relative;
}

.mock-arrow::after {
   content: '';
   position: absolute;
   right: 0;
   top: -4px;
   width: 10px;
   height: 10px;
   border-top: 2px solid var(--violet);
   border-right: 2px solid var(--violet);
   transform: rotate(45deg);
}

.mock-screen-2 {
   width: 80px;
   height: 120px;
   background: #fff;
   border-radius: var(--radius-sm);
   box-shadow: var(--shadow-md);
}

.collab-avatars {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: -8px;
   height: 100%;
   padding: 20px;
}

.c-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 700;
   font-size: 0.9rem;
   border: 3px solid #fff;
   margin-left: -12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.c-avatar:first-child {
   margin-left: 0;
}

.c-avatar.more {
   background: var(--violet);
   font-size: 0.75rem;
}

.chat-bubble {
   position: absolute;
   bottom: 20px;
   right: 20px;
   background: #fff;
   padding: 12px 16px;
   border-radius: var(--radius);
   border-bottom-right-radius: 4px;
   box-shadow: var(--shadow-md);
   display: flex;
   gap: 4px;
}

.bubble-dot {
   width: 8px;
   height: 8px;
   background: var(--violet);
   border-radius: 50%;
   animation: bubbleBounce 1.4s ease-in-out infinite;
}

.bubble-dot:nth-child(2) {
   animation-delay: 0.2s;
}

.bubble-dot:nth-child(3) {
   animation-delay: 0.4s;
}

@keyframes bubbleBounce {

   0%,
   80%,
   100% {
      transform: scale(0.6);
      opacity: 0.5;
   }

   40% {
      transform: scale(1);
      opacity: 1;
   }
}

.feature-card h3 {
   font-family: "Poppins", sans-serif;
   font-size: 1.4rem;
   font-weight: 600;
   letter-spacing: -0.02em;
   margin: 20px;
   margin-bottom: 10px;
   color: var(--text);
   position: relative;
   z-index: 1;
}

.feature-card p {
   font-size: 0.92rem;
   color: var(--subtext);
   margin: 20px;
   margin-top: 0;
   line-height: 1.7;
   position: relative;
   z-index: 1;
}

.feature-card .view-link{
   text-decoration: none;
   display: flex;
   color: var(--violet);
   align-items: center;
   gap: 5px;
   transition: all 200ms ease;
   margin: 20px;
   cursor: pointer;
   z-index: 200;
}

.feature-card .view-link svg{
   height: 18px;
   width: 18px;
   fill: var(--violet);
}
.feature-card .view-link:hover{
   gap: 8px;
}
/* ============================================
   WORKFLOW SECTION
   ============================================ */
.workflow-section {
   margin-top: 100px;
   display: flex;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
   
   padding: 80px 48px;
}

.workflow-content h2 {
   margin-bottom: 48px;
}

.workflow-steps {
   display: flex;
   flex-direction: column;
   gap: 32px;
}

.step {
   display: flex;
   gap: 20px;
   align-items: flex-start;
   padding: 20px;
   border-radius: var(--radius);
   transition: all 0.3s var(--ease-out);
   cursor: pointer;
}

.step:hover {
   background: var(--surface);
   box-shadow: var(--shadow-sm);
   transform: translateX(4px);
}

.step-num {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: var(--violet-soft);
   color: var(--violet);
   font-family: "Poppins", sans-serif;
   font-weight: 800;
   font-size: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: all 0.3s;
}

.step:hover .step-num {
   background: var(--violet);
   color: #fff;
}

.step-info h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.05rem;
   font-weight: 700;
   margin-bottom: 6px;
   color: var(--text);
}

.step-info p {
   font-size: 0.9rem;
   color: var(--subtext);
   line-height: 1.6;
}

/* Workflow Visual Card */
.workflow-visual {
   height: 600px;
   border-radius: var(--radius-xl);
   width: 100%;
   background: #F0F2F6;
   display: flex;
   align-items: center;
   justify-content: center;
}

.workflow-visual .work-image{
   height: 70%;
   width: 80%;
   background: #101011;
   display: flex;
   border-radius: var(--radius-lg);
   align-items: center;
   justify-content: center;
}
.work-image img{
   width: 80%;
   height: 80%;
   object-fit: contain;
}
.visual-card {
   width: 100%;
}

.v-header {
   background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
   padding: 16px 20px;
   display: flex;
   align-items: center;
   gap: 16px;
}

.v-dots {
   display: flex;
   gap: 6px;
}

.v-dots span {
   width: 10px;
   height: 10px;
   border-radius: 50%;
}

.v-dots span:nth-child(1) {
   background: #ff5f57;
}

.v-dots span:nth-child(2) {
   background: #febc2e;
}

.v-dots span:nth-child(3) {
   background: #28c840;
}

.v-tabs {
   display: flex;
   gap: 4px;
   margin-left: 12px;
}

.v-tabs span {
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.8rem;
   padding: 4px 12px;
   border-radius: 6px;
   cursor: pointer;
}

.v-tabs span.active {
   color: #fff;
   background: rgba(255, 255, 255, 0.1);
}

.v-avatars {
   display: flex;
   margin-left: auto;
   margin-right: 12px;
}

.v-avatars img {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   border: 2px solid #1a1a2e;
   margin-left: -8px;
   object-fit: cover;
}

.v-more {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.15);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.75rem;
   margin-left: -8px;
   border: 2px solid #1a1a2e;
}

.v-share {
   background: #4c6ef5;
   color: #fff;
   border: none;
   padding: 6px 16px;
   border-radius: 8px;
   font-size: 0.8rem;
   font-weight: 600;
   cursor: pointer;
}

.v-body {
   display: flex;
   min-height: 280px;
   background: #f5f5f7;
}

.v-sidebar {
   width: 60px;
   background: #fff;
   border-right: 1px solid rgba(0, 0, 0, 0.05);
   padding: 16px 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 16px;
}

.v-icon {
   width: 36px;
   height: 36px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--subtext);
   cursor: pointer;
   transition: all 0.2s;
}

.v-icon.active {
   background: var(--violet-soft);
   color: var(--violet);
}

.v-main {
   flex: 1;
   padding: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.welcome-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 20px;
   width: 100%;
   max-width: 280px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.welcome-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 16px;
}

.w-logo {
   font-weight: 700;
   color: var(--text);
}

.welcome-content h4 {
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--text);
   line-height: 1.3;
   margin-bottom: 16px;
}

.w-illustration {
   width: 100%;
   height: 140px;
   border-radius: var(--radius);
   overflow: hidden;
   background: linear-gradient(135deg, #ddd6ff, #a29bfe);
}

.w-illustration img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.v-panel {
   width: 180px;
   background: #fff;
   border-left: 1px solid rgba(0, 0, 0, 0.05);
   padding: 16px;
}

.panel-row {
   margin-bottom: 12px;
}

.panel-label {
   font-size: 0.75rem;
   font-weight: 600;
   color: var(--subtext);
   text-transform: uppercase;
   letter-spacing: 0.05em;
}

.panel-item {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 6px 0;
   font-size: 0.85rem;
   color: var(--text);
}

.panel-item svg {
   color: var(--subtext);
}

.panel-sub {
   padding-left: 20px;
}

.ps-item {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 4px 0;
   font-size: 0.8rem;
   color: var(--subtext);
}

.ps-dot {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--violet-light);
}

.v-footer {
   background: #fff;
   padding: 12px 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.os-badge {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.8rem;
   color: var(--subtext);
}

.os-icons {
   display: flex;
   gap: 12px;
   color: var(--subtext);
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.integrations-section {
   max-width: 1200px;
   margin: 0 auto;
   padding: 80px 48px;
}

.integrations-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
}

.integrations-visual {
   display: flex;
   justify-content: center;
}

.int-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 40px;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(108, 92, 231, 0.1);
   position: relative;
}

.int-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
}

.int-icon {
   width: 56px;
   height: 56px;
   border-radius: var(--radius);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s var(--ease-out);
   cursor: pointer;
}

.int-icon:hover {
   transform: scale(1.1) translateY(-4px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.int-connector {
   position: absolute;
   bottom: -30px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   flex-direction: column;
   align-items: center;
}

.int-logo {
   width: 48px;
   height: 48px;
   background: var(--surface);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: var(--shadow-md);
   margin-top: -16px;
   border: 2px solid var(--violet-soft);
}

.integrations-text h2 {
   margin-bottom: 24px;
}

.btn-outline {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--dark);
   color: #fff;
   padding: 12px 24px;
   border-radius: var(--radius-full);
   font-size: 0.9rem;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s var(--ease-out);
   margin-bottom: 32px;
}

.btn-outline:hover {
   background: var(--violet);
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}

.testimonial-mini {
   background: var(--surface);
   border-radius: var(--radius-lg);
   padding: 24px;
   border: 1px solid rgba(108, 92, 231, 0.1);
}

.testimonial-mini p {
   font-size: 0.95rem;
   color: var(--text);
   line-height: 1.7;
   font-style: italic;
   margin-bottom: 16px;
}

.tm-author {
   display: flex;
   align-items: center;
   gap: 12px;
}

.tm-author img {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   object-fit: cover;
}

.tm-name {
   display: block;
   font-weight: 600;
   font-size: 0.9rem;
   color: var(--text);
}

.tm-role {
   display: block;
   font-size: 0.8rem;
   color: var(--subtext);
}

/* ============================================
   DARK FEATURES SECTION
   ============================================ */
.dark-section {
   background: var(--gradient-dark-bg);
   border-radius: 40px;
   margin: 0 auto 100px;
   padding: 80px 64px;
   position: relative;
   overflow: hidden;
}

.dark-section::before {
   content: '';
   position: absolute;
   top: -200px;
   right: -200px;
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.25) 0%, transparent 70%);
   pointer-events: none;
}

.dark-header {
   text-align: center;
   margin-bottom: 56px;
   position: relative;
   z-index: 1;
}

.dark-features-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
   position: relative;
   z-index: 1;
}

.dark-feature-card {
   background: var(--dark-card);
   border: 1px solid rgba(255, 255, 255, 0.06);
   border-radius: var(--radius-xl);
   padding: 32px;
   transition: all 0.35s var(--ease-out);
}

.dark-feature-card:hover {
   background: rgba(108, 92, 231, 0.12);
   border-color: rgba(108, 92, 231, 0.3);
   transform: translateY(-4px);
}

.df-visual {
   height: 180px;
   border-radius: var(--radius-lg);
   margin-bottom: 24px;
   overflow: hidden;
   position: relative;
}

.df-bg {
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(72, 52, 212, 0.1));
   border-radius: var(--radius-lg);
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
}

.df-bg.dark-gradient {
   background: linear-gradient(135deg, rgba(15, 15, 26, 0.8), rgba(26, 26, 46, 0.9));
}

.cloud-icon {
   animation: floatCloud 3s ease-in-out infinite;
}

@keyframes floatCloud {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-10px);
   }
}

.df-badges {
   position: absolute;
   bottom: 16px;
   left: 16px;
   right: 16px;
   display: flex;
   gap: 8px;
}

.df-badge {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   color: #fff;
   padding: 6px 12px;
   border-radius: 8px;
   font-size: 0.75rem;
   font-weight: 500;
}

.df-badge.blue {
   background: #4c6ef5;
   margin-left: auto;
}

.security-icons {
   display: flex;
   align-items: center;
   gap: 24px;
}

.sec-icon {
   animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

   0%,
   100% {
      transform: scale(1);
      opacity: 1;
   }

   50% {
      transform: scale(1.1);
      opacity: 0.8;
   }
}

.sec-arrows {
   animation: slideArrows 2s ease-in-out infinite;
}

@keyframes slideArrows {

   0%,
   100% {
      transform: translateX(0);
      opacity: 1;
   }

   50% {
      transform: translateX(10px);
      opacity: 0.6;
   }
}

.sec-shield {
   animation: shieldPulse 2s ease-in-out infinite 0.5s;
}

@keyframes shieldPulse {

   0%,
   100% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.05);
   }
}

.dark-feature-card h3 {
   font-family: "Poppins", sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 10px;
}

.dark-feature-card p {
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.55);
   line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
   max-width: 1200px;
   margin: 0 auto;
   padding: 80px 48px;
}

.testimonials-header {
   margin-bottom: 48px;
}

.testimonials-content {
   display: grid;
   grid-template-columns: auto 1fr;
   gap: 48px;
   align-items: center;
}

.testimonial-avatars {
   display: flex;
   align-items: center;
}

.testimonial-avatars img {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   border: 3px solid var(--bg);
   margin-left: -16px;
   object-fit: cover;
   transition: all 0.3s var(--ease-out);
}

.testimonial-avatars img:first-child {
   margin-left: 0;
}

.testimonial-avatars img:hover {
   transform: scale(1.1);
   z-index: 2;
}

.avatar-more-large {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: var(--violet);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 0.9rem;
   margin-left: -16px;
   border: 3px solid var(--bg);
}

.testimonial-quote {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 36px;
   border: 1px solid rgba(108, 92, 231, 0.1);
   box-shadow: var(--shadow-sm);
}

.testimonial-quote p {
   font-size: 1.15rem;
   color: var(--text);
   line-height: 1.8;
   margin-bottom: 24px;
}

.quote-author {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.qa-name {
   font-weight: 700;
   color: var(--text);
   font-size: 1rem;
}

.qa-role {
   color: var(--subtext);
   font-size: 0.9rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
   text-align: center;
   max-width: 1200px;
   margin: 0 auto;
   padding: 100px 48px;
}

.pricing-header {
   margin-bottom: 56px;
}

.billing-toggle {
   display: inline-flex;
   align-items: center;
   gap: 16px;
   margin-top: 24px;
   background: var(--surface);
   padding: 8px;
   border-radius: var(--radius-full);
   border: 1px solid rgba(108, 92, 231, 0.1);
}

.toggle-label {
   font-size: 0.9rem;
   font-weight: 500;
   color: var(--subtext);
   padding: 6px 12px;
   cursor: pointer;
   transition: color 0.2s;
}

.toggle-label.active {
   color: var(--text);
   font-weight: 600;
}

.save-badge {
   background: var(--violet-soft);
   color: var(--violet);
   padding: 2px 8px;
   border-radius: 6px;
   font-size: 0.75rem;
   font-weight: 700;
   margin-left: 4px;
}

.toggle-switch {
   position: relative;
   width: 48px;
   height: 26px;
   cursor: pointer;
}

.toggle-switch input {
   opacity: 0;
   width: 0;
   height: 0;
}

.toggle-slider {
   position: absolute;
   inset: 0;
   background: var(--violet-soft);
   border-radius: var(--radius-full);
   transition: background 0.3s;
}

.toggle-slider::before {
   content: '';
   position: absolute;
   width: 20px;
   height: 20px;
   left: 3px;
   bottom: 3px;
   background: var(--violet);
   border-radius: 50%;
   transition: transform 0.3s var(--ease-spring);
}

.toggle-switch input:checked+.toggle-slider {
   background: var(--violet);
}

.toggle-switch input:checked+.toggle-slider::before {
   transform: translateX(22px);
   background: #fff;
}

.pricing-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 1000px;
   margin: 0 auto;
}

.pricing-card {
   background: var(--surface);
   border: 1px solid rgba(108, 92, 231, 0.12);
   border-radius: var(--radius-xl);
   padding: 36px;
   transition: all 0.4s var(--ease-out);
   text-align: left;
   position: relative;
}

.pricing-card.featured {
   background: var(--gradient-primary);
   border-color: transparent;
   box-shadow: var(--shadow-xl);
   transform: scale(1.05);
   z-index: 2;
}

.pricing-card:not(.featured):hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-lg);
   border-color: var(--violet-light);
}

.plan-header {
   margin-bottom: 20px;
}

.plan-name {
   display: block;
   font-family: "Poppins", sans-serif;
   font-size: 0.85rem;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   color: var(--violet);
   margin-bottom: 4px;
}

.pricing-card.featured .plan-name {
   color: rgba(255, 255, 255, 0.8);
}

.plan-desc {
   font-size: 0.85rem;
   color: var(--subtext);
}

.pricing-card.featured .plan-desc {
   color: rgba(255, 255, 255, 0.7);
}

.plan-price {
   display: flex;
   align-items: flex-start;
   gap: 2px;
   margin-bottom: 24px;
}

.currency {
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--text);
   margin-top: 4px;
}

.pricing-card.featured .currency {
   color: #fff;
}

.amount {
   font-family: "Poppins", sans-serif;
   font-size: 3rem;
   font-weight: 800;
   color: var(--text);
   letter-spacing: -0.05em;
   line-height: 1;
}

.pricing-card.featured .amount {
   color: #fff;
}

.period {
   font-size: 1rem;
   color: var(--subtext);
   margin-top: 8px;
   margin-left: 2px;
}

.pricing-card.featured .period {
   color: rgba(255, 255, 255, 0.7);
}

.pricing-btn {
   display: block;
   width: 100%;
   padding: 14px;
   border-radius: var(--radius-full);
   font-size: 0.95rem;
   font-weight: 600;
   text-align: center;
   text-decoration: none;
   background: var(--dark);
   color: #fff;
   transition: all 0.3s var(--ease-out);
   margin-bottom: 28px;
   border: none;
   cursor: pointer;
}

.pricing-btn:hover {
   background: var(--violet);
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}

.pricing-btn.featured {
   background: #fff;
   color: var(--violet-dark);
}

.pricing-btn.featured:hover {
   background: rgba(255, 255, 255, 0.9);
}

.plan-features {
   border-top: 1px solid rgba(108, 92, 231, 0.1);
   padding-top: 20px;
}

.pricing-card.featured .plan-features {
   border-color: rgba(255, 255, 255, 0.15);
}

.features-title {
   display: block;
   font-size: 0.8rem;
   font-weight: 600;
   color: var(--subtext);
   margin-bottom: 12px;
   text-transform: uppercase;
   letter-spacing: 0.05em;
}

.pricing-card.featured .features-title {
   color: rgba(255, 255, 255, 0.7);
}

.plan-features ul {
   list-style: none;
}

.plan-features li {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.88rem;
   color: var(--subtext);
   padding: 7px 0;
}

.pricing-card.featured .plan-features li {
   color: rgba(255, 255, 255, 0.8);
}

.plan-features li::before {
   content: '✓';
   width: 20px;
   height: 20px;
   background: var(--violet-soft);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.7rem;
   color: var(--violet);
   font-weight: 900;
   flex-shrink: 0;
}

.pricing-card.featured .plan-features li::before {
   background: rgba(255, 255, 255, 0.2);
   color: #fff;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
   padding: 80px 48px;
}

.solution-visual {
   display: flex;
   justify-content: center;
}

.sol-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 24px;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(108, 92, 231, 0.1);
   width: 100%;
   max-width: 320px;
   position: relative;
}

.sol-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
}

.sol-logo {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--text);
}

.sol-body {
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.food-card {
   display: flex;
   align-items: center;
   gap: 12px;
   background: #f8f7ff;
   padding: 12px;
   border-radius: var(--radius);
   transition: all 0.3s;
}

.food-card:hover {
   background: var(--violet-soft);
   transform: translateX(4px);
}

.food-card img {
   width: 48px;
   height: 48px;
   border-radius: 10px;
   object-fit: cover;
}

.food-info h5 {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--text);
   margin-bottom: 2px;
}

.food-info span {
   font-size: 0.85rem;
   color: var(--subtext);
   font-weight: 500;
}

.sol-floating {
   position: absolute;
   top: -20px;
   right: -30px;
}

.color-picker {
   background: #fff;
   padding: 12px;
   border-radius: var(--radius);
   box-shadow: var(--shadow-md);
   display: flex;
   gap: 8px;
}

.cp-dot {
   width: 24px;
   height: 24px;
   border-radius: 50%;
   cursor: pointer;
   transition: transform 0.2s;
   border: 2px solid #fff;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cp-dot:hover {
   transform: scale(1.2);
}

.solution-text h2 {
   margin-bottom: 20px;
}

.solution-links {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px;
   margin-top: 32px;
}

.link-col {
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.sol-link {
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--subtext);
   text-decoration: none;
   font-size: 0.95rem;
   font-weight: 500;
   padding: 8px 0;
   transition: all 0.25s;
}

.sol-link:hover {
   color: var(--violet);
   transform: translateX(4px);
}

.sol-link svg {
   color: var(--violet);
   transition: transform 0.25s;
}

.sol-link:hover svg {
   transform: translateX(4px);
}

/* ============================================
   BOTTOM PREVIEW
   ============================================ */
.bottom-preview {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 48px 100px;
}

.preview-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   overflow: hidden;
   box-shadow: var(--shadow-xl);
   border: 1px solid rgba(108, 92, 231, 0.1);
}

.bp-header {
   background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
   padding: 16px 24px;
   display: flex;
   align-items: center;
   gap: 16px;
}

.bp-dots {
   display: flex;
   gap: 6px;
}

.bp-dots span {
   width: 10px;
   height: 10px;
   border-radius: 50%;
}

.bp-dots span:nth-child(1) {
   background: #ff5f57;
}

.bp-dots span:nth-child(2) {
   background: #febc2e;
}

.bp-dots span:nth-child(3) {
   background: #28c840;
}

.bp-tabs {
   display: flex;
   gap: 4px;
   margin-left: 12px;
}

.bp-tabs span {
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.8rem;
   padding: 4px 12px;
   border-radius: 6px;
   cursor: pointer;
}

.bp-tabs span.active {
   color: #fff;
   background: rgba(255, 255, 255, 0.1);
}

.bp-avatars {
   display: flex;
   margin-left: auto;
   margin-right: 12px;
}

.bp-avatars img {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   border: 2px solid #1a1a2e;
   margin-left: -8px;
   object-fit: cover;
}

.bp-more {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.15);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.75rem;
   margin-left: -8px;
   border: 2px solid #1a1a2e;
}

.bp-share {
   background: #4c6ef5;
   color: #fff;
   border: none;
   padding: 6px 16px;
   border-radius: 8px;
   font-size: 0.8rem;
   font-weight: 600;
   cursor: pointer;
}

.bp-body {
   display: flex;
   min-height: 400px;
   background: #f5f5f7;
}

.bp-sidebar {
   width: 200px;
   background: #fff;
   border-right: 1px solid rgba(0, 0, 0, 0.05);
   padding: 20px;
}

.bp-layer-title {
   font-size: 0.75rem;
   font-weight: 600;
   color: var(--subtext);
   text-transform: uppercase;
   letter-spacing: 0.05em;
   margin-bottom: 16px;
}

.bp-layer-group {
   margin-bottom: 12px;
}

.bp-lg-header {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 8px 0;
   font-size: 0.9rem;
   color: var(--text);
   font-weight: 500;
   cursor: pointer;
}

.bp-lg-header svg {
   color: var(--subtext);
   transition: transform 0.2s;
}

.bp-lg-header:hover svg {
   transform: rotate(180deg);
}

.bp-lg-items {
   padding-left: 20px;
}

.bp-item {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 6px 0;
   font-size: 0.85rem;
   color: var(--subtext);
}

.bp-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--violet-light);
}

.bp-main {
   flex: 1;
   padding: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.bp-canvas {
   width: 100%;
   height: 100%;
   background: #fff;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bp-canvas-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.bp-panel {
   width: 240px;
   background: #fff;
   border-left: 1px solid rgba(0, 0, 0, 0.05);
   padding: 20px;
}

.bp-panel-title {
   font-size: 0.85rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 16px;
}

.bp-panel-section {
   margin-bottom: 16px;
   padding: 12px;
   background: #f8f7ff;
   border-radius: var(--radius-sm);
}

.bp-ps-header {
   font-size: 0.8rem;
   font-weight: 600;
   color: var(--subtext);
   margin-bottom: 8px;
}

.bp-color-row {
   display: flex;
   align-items: center;
   gap: 8px;
}

.bp-color {
   width: 20px;
   height: 20px;
   border-radius: 6px;
}

.bp-color-val {
   font-size: 0.8rem;
   color: var(--subtext);
   font-family: monospace;
}

.bp-ps-img {
   width: 100%;
   height: 60px;
   border-radius: var(--radius-sm);
   overflow: hidden;
}

.bp-ps-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.bp-panel-divider {
   height: 1px;
   background: rgba(0, 0, 0, 0.05);
   margin: 12px 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
   max-width: 1100px;
   margin: 0 auto 100px;
   padding: 0 48px;
}

.cta-content {
   background: var(--gradient-primary);
   border-radius: 40px;
   padding: 80px 64px;
   text-align: center;
   position: relative;
   overflow: hidden;
}

.cta-content::before {
   content: '';
   position: absolute;
   top: -100px;
   left: -100px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
   pointer-events: none;
}

.cta-content h2 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 800;
   letter-spacing: -0.04em;
   color: #fff;
   margin-bottom: 16px;
   position: relative;
   z-index: 1;
}

.cta-content p {
   color: rgba(255, 255, 255, 0.75);
   font-size: 1.1rem;
   max-width: 500px;
   margin: 0 auto 32px;
   position: relative;
   z-index: 1;
}

.btn-white {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: #fff;
   color: var(--violet-dark);
   padding: 14px 32px;
   border-radius: var(--radius-full);
   font-size: 1rem;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.3s var(--ease-out);
   position: relative;
   z-index: 1;
}

.btn-white:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
   background: var(--dark);
   color: rgba(255, 255, 255, 0.65);
   padding: 64px 48px 32px;
   font-size: 0.9rem;
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.6fr 1fr 1fr 1fr;
   gap: 48px;
   margin-bottom: 48px;
   max-width: 1200px;
   margin: 0 auto 48px;
}

.footer-brand {
   max-width: 320px;
}

.f-logo {
   display: flex;
   align-items: center;
   gap: 12px;
   font-family: "Poppins", sans-serif;
   font-size: 1.3rem;
   font-weight: 800;
   color: #fff;
   margin-bottom: 16px;
}

.f-logo svg {
   width: 32px;
   height: 32px;
}

.footer-brand p {
   line-height: 1.8;
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.5);
   margin-bottom: 24px;
}

.social-links {
   display: flex;
   gap: 12px;
}

.social-btn {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.08);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   text-decoration: none;
   font-size: 0.9rem;
   font-weight: 600;
   transition: all 0.3s var(--ease-out);
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
   background: var(--violet);
   transform: translateY(-3px);
   border-color: var(--violet);
   box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}

.footer-col h4 {
   font-family: "Poppins", sans-serif;
   font-weight: 700;
   color: #fff;
   margin-bottom: 20px;
   font-size: 0.95rem;
   letter-spacing: -0.01em;
}

.footer-col ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.footer-col ul a {
   color: rgba(255, 255, 255, 0.45);
   text-decoration: none;
   font-size: 0.88rem;
   transition: all 0.25s ease;
   display: inline-block;
}

.footer-col ul a:hover {
   color: var(--violet-light);
   transform: translateX(4px);
}

.footer-bottom {
   max-width: 1200px;
   margin: 0 auto;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   padding-top: 24px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 0.82rem;
   color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
   color: rgba(255, 255, 255, 0.35);
   text-decoration: none;
   transition: color 0.2s;
}

.footer-bottom a:hover {
   color: var(--violet-light);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s var(--ease-out);
}

.reveal.revealed {
   opacity: 1;
   transform: translateY(0);
}

.reveal-delay-1 {
   transition-delay: 0.1s;
}

.reveal-delay-2 {
   transition-delay: 0.2s;
}

.reveal-delay-3 {
   transition-delay: 0.3s;
}

.reveal-delay-4 {
   transition-delay: 0.4s;
}

/* Blur reveal variant */
.blur-reveal {
   opacity: 0;
   filter: blur(12px);
   transform: translateY(30px);
   transition: all 1s var(--ease-out);
}

.blur-reveal.revealed {
   opacity: 1;
   filter: blur(0);
   transform: translateY(0);
}

/* Scale reveal */
.scale-reveal {
   opacity: 0;
   transform: scale(0.9);
   transition: all 0.7s var(--ease-out);
}

.scale-reveal.revealed {
   opacity: 1;
   transform: scale(1);
}

/* Slide from left */
.slide-left {
   opacity: 0;
   transform: translateX(-60px);
   transition: all 0.8s var(--ease-out);
}

.slide-left.revealed {
   opacity: 1;
   transform: translateX(0);
}

/* Slide from right */
.slide-right {
   opacity: 0;
   transform: translateX(60px);
   transition: all 0.8s var(--ease-out);
}

.slide-right.revealed {
   opacity: 1;
   transform: translateX(0);
}

/* Stagger children */
.stagger-children>* {
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.6s var(--ease-out);
}

.stagger-children.revealed>*:nth-child(1) {
   transition-delay: 0s;
   opacity: 1;
   transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(2) {
   transition-delay: 0.1s;
   opacity: 1;
   transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(3) {
   transition-delay: 0.2s;
   opacity: 1;
   transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(4) {
   transition-delay: 0.3s;
   opacity: 1;
   transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(5) {
   transition-delay: 0.4s;
   opacity: 1;
   transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(6) {
   transition-delay: 0.5s;
   opacity: 1;
   transform: translateY(0);
}

/* ============================================
   PARALLAX & FLOATING ANIMATIONS
   ============================================ */
.parallax-slow {
   will-change: transform;
}

.float-animation {
   animation: floatElement 6s ease-in-out infinite;
}

@keyframes floatElement {

   0%,
   100% {
      transform: translateY(0) rotate(0deg);
   }

   25% {
      transform: translateY(-15px) rotate(2deg);
   }

   75% {
      transform: translateY(10px) rotate(-2deg);
   }
}

.float-animation-delayed {
   animation: floatElement 6s ease-in-out infinite 2s;
}

.pulse-glow {
   animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

   0%,
   100% {
      box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
   }

   50% {
      box-shadow: 0 0 40px rgba(108, 92, 231, 0.4);
   }
}

/* ============================================
   HOVER EFFECTS & MICRO-INTERACTIONS
   ============================================ */
.magnetic-hover {
   transition: transform 0.3s var(--ease-out);
}

.glow-hover {
   position: relative;
   overflow: hidden;
}

.glow-hover::after {
   content: '';
   position: absolute;
   inset: -2px;
   background: var(--gradient-primary);
   border-radius: inherit;
   opacity: 0;
   z-index: -1;
   transition: opacity 0.3s;
   filter: blur(12px);
}

.glow-hover:hover::after {
   opacity: 0.5;
}

/* Card shine effect */
.card-shine {
   position: relative;
   overflow: hidden;
}

.card-shine::before {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: linear-gradient(to bottom right,
         rgba(255, 255, 255, 0) 0%,
         rgba(255, 255, 255, 0) 40%,
         rgba(255, 255, 255, 0.1) 50%,
         rgba(255, 255, 255, 0) 60%,
         rgba(255, 255, 255, 0) 100%);
   transform: rotate(30deg);
   transition: all 0.6s;
   opacity: 0;
}

.card-shine:hover::before {
   opacity: 1;
   left: 100%;
   transition: all 0.8s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
   .hero-dashboard {
      flex-direction: column;
      align-items: center;
   }

   .card-main,
   .card-side {
      width: 100%;
      max-width: 600px;
   }

   .features-grid,
   .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .workflow-section,
   .integrations-content,
   .solution-section {
      grid-template-columns: 1fr;
      gap: 48px;
   }

   .testimonials-content {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .testimonial-avatars {
      justify-content: center;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
   }
}

@media (max-width: 768px) {
   nav {
      padding: 16px 24px;
   }

   /* .nav-links {
      display: none;
   } */

   .nav-cta {
      padding: 8px 18px;
      font-size: 0.85rem;
   }

   section {
      padding: 60px 24px;
   }

   .hero {
      padding: 120px 20px 60px;
   }
   .hero-images{
      padding: 0;
   }
   .hero-images{
      margin-top: 50px;
      flex-direction: column;
      height: 1200px;
   }
   .hero-left{
      flex-direction: column;
      height: 500px;
   }
   .hero-left .balaji-logo{
      width: 100%;
      height: 45%;
   }
   .balaji-logo svg{
      width: 120px;
      height: 120px;
   }
   .languages .icons .icon{
      width: 40px;
      height: 40px;
      border-radius: 10px;
   }
   .balaji-logo p{
      font-size: 1.2rem;
   }
   .hero-left .languages{
      width: 100%;
      padding: 20px;
      height: 55%;
   }
   .workflow-section{
      flex-direction: column-reverse;
   }
   .workflow-visual{
      height: 500px;
   }
   .workflow-visual .work-image{
      height: 90%;
      width: 90%;
   }
   .hero h1 {
      font-size: clamp(2.2rem, 8vw, 3.5rem);
   }

   .features-grid,
   .pricing-grid,
   .dark-features-grid {
      grid-template-columns: 1fr;
   }

   .pricing-card.featured {
      transform: none;
      order: -1;
   }

   .workflow-section,
   .integrations-section,
   .solution-section,
   .contact-section {
      padding: 48px 24px;
   }

   .dark-section {
      padding: 60px 24px;
      border-radius: 24px;
   }

   .cta-content {
      padding: 48px 32px;
      border-radius: 24px;
   }

   .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
   }

   .solution-links {
      grid-template-columns: 1fr;
   }

   .bp-sidebar,
   .bp-panel {
      display: none;
   }

   .cursor,
   .cursor-ring {
      display: none;
   }

   body {
      cursor: auto;
   }
}

@media (max-width: 480px) {
    ::-webkit-scrollbar {
       width: 0px;
    }
    ::-webkit-scrollbar-track {
       background: transparent;
    }
    
    ::-webkit-scrollbar-thumb {
       background: transparent;
    }
    
    ::-webkit-scrollbar-thumb:hover {
       background: transparent;
    }
   .hero-badge {
      font-size: 0.8rem;
      padding: 4px 12px 4px 4px;
   }

   .badge-pill {
      padding: 2px 8px;
   }

   .btn-primary,
   .btn-secondary {
      /* width: 100%; */
      justify-content: center;
   }
   

   .hero-btns {
      flex-direction: column;
      width: 100%;
   }
   .logo-item{
      opacity: 0.9;
   }
   

   .dashboard-header {
      flex-wrap: wrap;
      gap: 8px;
   }

   .floating-comment {
      display: none;
   }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

   *,
   *::before,
   *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
   }

   .reveal,
   .blur-reveal,
   .slide-left,
   .slide-right,
   .scale-reveal {
      opacity: 1;
      transform: none;
      filter: none;
   }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
   width: 8px;
}

::-webkit-scrollbar-track {
   background: var(--bg);
}

::-webkit-scrollbar-thumb {
   background: var(--violet-light);
   border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
   background: var(--violet);
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
   background: var(--violet-soft);
   color: var(--violet-dark);
}

/* ============================================
   FOCUS STYLES
   ============================================ */
:focus-visible {
   outline: 2px solid var(--violet);
   outline-offset: 4px;
   border-radius: 4px;
}

/* ============================================
   LOADER EXIT ANIMATION
   ============================================ */
.loader-exit {
   animation: loaderExit 0.7s var(--ease-out) forwards;
}

@keyframes loaderExit {
   to {
      opacity: 0;
      transform: translateY(-30px);
      visibility: hidden;
   }
}

/* ============================================
   GRADIENT TEXT EFFECT
   ============================================ */
.gradient-text {
   background: var(--gradient-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

/* ============================================
   GLASS MORPHISM
   ============================================ */
.glass {
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(20px) saturate(1.5);
   -webkit-backdrop-filter: blur(20px) saturate(1.5);
   border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
   background: rgba(15, 15, 26, 0.7);
   backdrop-filter: blur(20px) saturate(1.5);
   -webkit-backdrop-filter: blur(20px) saturate(1.5);
   border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   MESH GRADIENT BACKGROUND
   ============================================ */
.mesh-gradient {
   background:
      radial-gradient(at 40% 20%, rgba(108, 92, 231, 0.15) 0px, transparent 50%),
      radial-gradient(at 80% 0%, rgba(162, 155, 254, 0.1) 0px, transparent 50%),
      radial-gradient(at 0% 50%, rgba(221, 214, 255, 0.15) 0px, transparent 50%),
      radial-gradient(at 80% 50%, rgba(108, 92, 231, 0.08) 0px, transparent 50%),
      radial-gradient(at 0% 100%, rgba(162, 155, 254, 0.1) 0px, transparent 50%),
      var(--bg);
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.noise-overlay {
   position: relative;
}

.noise-overlay::after {
   content: '';
   position: absolute;
   inset: 0;
   opacity: 0.03;
   pointer-events: none;
   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ============================================
   ANIMATED BORDER GRADIENT
   ============================================ */
.animated-border {
   position: relative;
   background: var(--surface);
   border-radius: var(--radius-xl);
   z-index: 1;
}

.animated-border::before {
   content: '';
   position: absolute;
   inset: -2px;
   border-radius: calc(var(--radius-xl) + 2px);
   background: linear-gradient(45deg, var(--violet), var(--violet-light), var(--violet-dark), var(--violet));
   background-size: 400% 400%;
   z-index: -1;
   animation: borderGradient 4s ease infinite;
   opacity: 0;
   transition: opacity 0.3s;
}

.animated-border:hover::before {
   opacity: 1;
}

@keyframes borderGradient {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

/* ============================================
   SHIMMER LOADING EFFECT
   ============================================ */
.shimmer {
   background: linear-gradient(90deg, var(--bg) 25%, #e8e5f5 50%, var(--bg) 75%);
   background-size: 200% 100%;
   animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
   0% {
      background-position: 200% 0;
   }

   100% {
      background-position: -200% 0;
   }
}

/* ============================================
   TOOLTIP
   ============================================ */
.tooltip {
   position: relative;
}

.tooltip::after {
   content: attr(data-tooltip);
   position: absolute;
   bottom: 100%;
   left: 50%;
   transform: translateX(-50%) translateY(-8px);
   background: var(--dark);
   color: #fff;
   padding: 6px 12px;
   border-radius: 8px;
   font-size: 0.8rem;
   white-space: nowrap;
   opacity: 0;
   visibility: hidden;
   transition: all 0.25s var(--ease-out);
   pointer-events: none;
}

.tooltip:hover::after {
   opacity: 1;
   visibility: visible;
   transform: translateX(-50%) translateY(-4px);
}

/* ============================================
   DIVIDER WITH GRADIENT
   ============================================ */
.gradient-divider {
   height: 1px;
   background: linear-gradient(90deg, transparent, var(--violet-light), transparent);
   border: none;
   margin: 48px 0;
}

/* ============================================
   BADGE STYLES
   ============================================ */
.badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px 12px;
   border-radius: var(--radius-full);
   font-size: 0.75rem;
   font-weight: 600;
}

.badge-success {
   background: rgba(40, 200, 64, 0.1);
   color: #28c840;
}

.badge-warning {
   background: rgba(254, 188, 46, 0.1);
   color: #febc2e;
}

.badge-info {
   background: var(--violet-soft);
   color: var(--violet);
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
   width: 100%;
   height: 6px;
   background: var(--violet-soft);
   border-radius: 99px;
   overflow: hidden;
}

.progress-fill {
   height: 100%;
   background: var(--gradient-primary);
   border-radius: 99px;
   transition: width 1s var(--ease-out);
}

/* ============================================
   AVATAR GROUP
   ============================================ */
.avatar-group {
   display: flex;
   align-items: center;
}

.avatar-group img,
.avatar-group .avatar-placeholder {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: 2px solid var(--bg);
   margin-left: -10px;
   object-fit: cover;
   transition: all 0.3s var(--ease-out);
}

.avatar-group>*:first-child {
   margin-left: 0;
}

.avatar-group img:hover,
.avatar-group .avatar-placeholder:hover {
   transform: scale(1.15);
   z-index: 2;
   border-color: var(--violet);
}

.avatar-placeholder {
   background: var(--gradient-primary);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.8rem;
   font-weight: 700;
}

/* ============================================
   TAG / CHIP
   ============================================ */
.tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: var(--violet-soft);
   color: var(--violet-dark);
   padding: 4px 12px;
   border-radius: var(--radius-full);
   font-size: 0.8rem;
   font-weight: 600;
   transition: all 0.2s;
}

.tag:hover {
   background: var(--violet);
   color: #fff;
   transform: translateY(-2px);
}

/* ============================================
   ALERT / NOTIFICATION
   ============================================ */
.alert {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 16px 20px;
   border-radius: var(--radius);
   font-size: 0.9rem;
   font-weight: 500;
}

.alert-info {
   background: var(--violet-soft);
   color: var(--violet-dark);
   border: 1px solid rgba(108, 92, 231, 0.2);
}

.alert-success {
   background: rgba(40, 200, 64, 0.1);
   color: #28c840;
   border: 1px solid rgba(40, 200, 64, 0.2);
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
   background: linear-gradient(90deg, #e8e5f5 25%, #f0edff 50%, #e8e5f5 75%);
   background-size: 200% 100%;
   animation: skeleton 1.5s infinite;
   border-radius: var(--radius-sm);
}

@keyframes skeleton {
   0% {
      background-position: 200% 0;
   }

   100% {
      background-position: -200% 0;
   }
}

/* ============================================
   MODAL / OVERLAY
   ============================================ */
.modal-overlay {
   position: fixed;
   inset: 0;
   background: rgba(15, 15, 26, 0.6);
   backdrop-filter: blur(8px);
   -webkit-backdrop-filter: blur(8px);
   z-index: 9990;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s var(--ease-out);
}

.modal-overlay.active {
   opacity: 1;
   visibility: visible;
}

.modal {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 40px;
   max-width: 500px;
   width: 90%;
   box-shadow: var(--shadow-xl);
   transform: scale(0.9) translateY(20px);
   transition: all 0.4s var(--ease-spring);
}

.modal-overlay.active .modal {
   transform: scale(1) translateY(0);
}

/* ============================================
   DROPDOWN
   ============================================ */
.dropdown {
   position: relative;
}

.dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   margin-top: 8px;
   background: var(--surface);
   border-radius: var(--radius);
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(108, 92, 231, 0.1);
   min-width: 200px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-10px);
   transition: all 0.25s var(--ease-out);
   z-index: 100;
}

.dropdown:hover .dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.dropdown-item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 16px;
   font-size: 0.9rem;
   color: var(--text);
   cursor: pointer;
   transition: all 0.2s;
}

.dropdown-item:hover {
   background: var(--violet-soft);
   color: var(--violet);
}

/* ============================================
   TABS
   ============================================ */
.tabs {
   display: flex;
   gap: 4px;
   background: var(--violet-soft);
   padding: 4px;
   border-radius: var(--radius-full);
   width: fit-content;
}

.tab-btn {
   padding: 8px 20px;
   border-radius: var(--radius-full);
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--subtext);
   background: transparent;
   border: none;
   cursor: pointer;
   transition: all 0.3s;
}

.tab-btn.active {
   background: var(--surface);
   color: var(--text);
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.accordion-item {
   background: var(--surface);
   border-radius: var(--radius);
   border: 1px solid rgba(108, 92, 231, 0.1);
   overflow: hidden;
   transition: all 0.3s;
}

.accordion-item:hover {
   border-color: var(--violet-light);
}

.accordion-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 24px;
   cursor: pointer;
   font-weight: 600;
   font-size: 1rem;
}

.accordion-icon {
   width: 24px;
   height: 24px;
   transition: transform 0.3s var(--ease-out);
}

.accordion-item.active .accordion-icon {
   transform: rotate(180deg);
}

.accordion-body {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s var(--ease-out);
}

.accordion-item.active .accordion-body {
   max-height: 500px;
}

.accordion-content {
   padding: 0 24px 20px;
   color: var(--subtext);
   line-height: 1.7;
}

/* ============================================
   TOGGLE / SWITCH
   ============================================ */
.switch {
   position: relative;
   width: 44px;
   height: 24px;
   cursor: pointer;
}

.switch input {
   opacity: 0;
   width: 0;
   height: 0;
}

.switch-slider {
   position: absolute;
   inset: 0;
   background: var(--violet-soft);
   border-radius: var(--radius-full);
   transition: background 0.3s;
}

.switch-slider::before {
   content: '';
   position: absolute;
   width: 18px;
   height: 18px;
   left: 3px;
   bottom: 3px;
   background: var(--surface);
   border-radius: 50%;
   transition: transform 0.3s var(--ease-spring);
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch input:checked+.switch-slider {
   background: var(--violet);
}

.switch input:checked+.switch-slider::before {
   transform: translateX(20px);
}

/* ============================================
   RATING STARS
   ============================================ */
.rating {
   display: flex;
   gap: 4px;
}

.rating-star {
   color: #fbbf24;
   font-size: 1.2rem;
}

.rating-star.empty {
   color: #e5e7eb;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
   position: relative;
   padding-left: 32px;
}

.timeline::before {
   content: '';
   position: absolute;
   left: 8px;
   top: 0;
   bottom: 0;
   width: 2px;
   background: var(--violet-soft);
}

.timeline-item {
   position: relative;
   padding-bottom: 32px;
}

.timeline-item::before {
   content: '';
   position: absolute;
   left: -28px;
   top: 4px;
   width: 16px;
   height: 16px;
   border-radius: 50%;
   background: var(--violet);
   border: 3px solid var(--bg);
   box-shadow: 0 0 0 3px var(--violet-soft);
}

.timeline-item:last-child {
   padding-bottom: 0;
}

.timeline-content {
   background: var(--surface);
   padding: 20px;
   border-radius: var(--radius);
   box-shadow: var(--shadow-sm);
}

/* ============================================
   STATS / COUNTERS
   ============================================ */
.stat-group {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

.stat-item {
   text-align: center;
   padding: 24px;
   background: transparent;
   border-radius: var(--radius-lg);
   transition: all 0.3s;
}

.stat-item:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-md);
   border-color: var(--violet-light);
}

.stat-value {
   font-family: "Poppins", sans-serif;
   font-size: 2.5rem;
   font-weight: 800;
   color: var(--violet);
   line-height: 1;
   margin-bottom: 8px;
}

.stat-label {
   font-size: 0.9rem;
   color: var(--subtext);
   font-weight: 500;
}

/* ============================================
   IMAGE GALLERY
   ============================================ */
.gallery {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
}

.gallery-item {
   position: relative;
   border-radius: var(--radius-lg);
   overflow: hidden;
   aspect-ratio: 4/3;
   cursor: pointer;
}

.gallery-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img {
   transform: scale(1.08);
}

.gallery-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(108, 92, 231, 0.8), transparent);
   opacity: 0;
   transition: opacity 0.3s;
   display: flex;
   align-items: flex-end;
   padding: 20px;
}

.gallery-item:hover .gallery-overlay {
   opacity: 1;
}

.gallery-title {
   color: #fff;
   font-weight: 700;
   font-size: 1.1rem;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */
.video-bg {
   position: absolute;
   inset: 0;
   overflow: hidden;
}

.video-bg video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.video-overlay {
   position: absolute;
   inset: 0;
   background: rgba(15, 15, 26, 0.6);
}

.feature-card.revealed,
.pricing-card.revealed,
.testimonial-card.revealed {
   transform: translateY(0) skewY(var(--skew-amount, 0deg));
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

   nav,
   .cursor,
   .cursor-ring,
   #loader,
   .hero-shape,
   .video-bg {
      display: none !important;
   }

   .reveal,
   .blur-reveal {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
   }

   body {
      background: white !important;
      color: black !important;
   }

   a {
      text-decoration: underline;
      color: black !important;
   }

   section {
      page-break-inside: avoid;
   }
}
/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   background: none;
   border: none;
   cursor: pointer;
   padding: 5px;
   z-index: 1001;
}

.hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--text);
   border-radius: 2px;
   transition: all 0.3s var(--ease-out);
}

.hamburger.active span:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
   opacity: 0;
}

.hamburger.active span:nth-child(3) {
   transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
   display: flex;
   align-items: center;
   gap: 36px;
}

@media (max-width: 768px) {
   .hamburger {
      display: flex;
   }
   
   .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: var(--bg);
      flex-direction: column;
      align-items: flex-start;
      padding: 100px 32px 32px;
      gap: 0;
      transition: right 0.4s var(--ease-out);
      box-shadow: -10px 0 40px rgba(0,0,0,0.1);
      z-index: 999;
   }
   
   .nav-menu.active {
      right: 0;
   }
   
   .nav-links {
      flex-direction: column;
      gap: 0;
      width: 100%;
   }
   
   .nav-links li {
      width: 100%;
      border-bottom: 1px solid rgba(108, 92, 231, 0.1);
   }
   
   .nav-links a {
      display: block;
      padding: 16px 0;
      font-size: 1.1rem;
   }
   
   .nav-links a::after {
      display: none;
   }
   
   .nav-cta {
      margin-top: 24px;
      width: 100%;
      text-align: center;
   }
   
   body.menu-open {
      overflow: hidden;
   }
} 

/* ============================================
   ABOUT SECTION (DARK THEME - REFERENCE STYLE)
   ============================================ */
.about-section {
   background: #101011;
   border-radius: 40px;
   margin: 0 auto 100px;
   padding: 100px 64px;
   position: relative;
   overflow: hidden;
}

/* .about-section::before {
   content: '';
   position: absolute;
   top: -200px;
   right: -200px;
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.25) 0%, transparent 70%);
   pointer-events: none;
}

.about-section::after {
   content: '';
   position: absolute;
   bottom: -100px;
   left: -100px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(162, 155, 254, 0.15) 0%, transparent 70%);
   pointer-events: none;
} */

.about-header {
   text-align: center;
   margin-bottom: 64px;
   position: relative;
   z-index: 1;
}

.about-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(108, 92, 231, 0.15);
   color: var(--violet-light);
   padding: 6px 16px;
   border-radius: var(--radius-full);
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin-bottom: 20px;
   border: 1px solid rgba(108, 92, 231, 0.2);
}

.about-title {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2rem, 4vw, 3.2rem);
   font-weight: 600;
   letter-spacing: -0.04em;
   line-height: 1.1;
   color: #fff;
   margin-bottom: 16px;
}

.about-sub {
   font-size: 1.08rem;
   color: rgba(255, 255, 255, 0.55);
   line-height: 1.7;
   max-width: 520px;
   margin: 0 auto;
}

.about-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
   position: relative;
   z-index: 1;
   margin-bottom: 64px;
}

.about-card {
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.06);
   border-radius: var(--radius-xl);
   padding: 32px 24px;
   text-align: center;
   transition: all 0.4s var(--ease-out);
}

.about-card:hover {
   background: rgba(108, 92, 231, 0.12);
   border-color: rgba(108, 92, 231, 0.3);
   transform: translateY(-8px);
}

.about-icon-wrap {
   margin-bottom: 20px;
}

.about-icon-bg {
   width: 64px;
   height: 64px;
   background: rgba(108, 92, 231, 0.15);
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto;
   transition: all 0.3s;
}

.about-card:hover .about-icon-bg {
   transform: scale(1.1) rotate(-5deg);
}

.about-card h3 {
   font-family: "Poppins", sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 10px;
}

.about-card p {
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.55);
   line-height: 1.7;
}

.about-stats {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 48px;
   position: relative;
   z-index: 1;
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.06);
   border-radius: var(--radius-xl);
   padding: 40px;
}

.stat-item {
   text-align: center;
}

.stat-number {
   display: block;
   font-family: "Poppins", sans-serif;
   font-size: 2.8rem;
   font-weight: 800;
   color: #fff;
   line-height: 1;
   margin-bottom: 8px;
   background: var(--gradient-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.stat-label {
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.5);
   font-weight: 500;
}

.stat-divider {
   width: 1px;
   height: 60px;
   background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
   .about-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .about-section {
      padding: 60px 24px;
      border-radius: 24px;
   }
   
   .about-grid {
      grid-template-columns: 1fr;
      gap: 16px;
   }
   
   .about-stats {
      flex-direction: column;
      gap: 24px;
      padding: 32px 24px;
   }
   
   .stat-divider {
      width: 60px;
      height: 1px;
   }
   
   .stat-number {
      font-size: 2.2rem;
   }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
   padding: 100px 48px;
   padding-top: 0;
   max-width: 1200px;
   margin: 0 auto;
}

.faq-container {
   width: 100%;
}

.faq-header {
   text-align: center;
   margin-bottom: 64px;
}

.faq-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--violet-soft);
   color: var(--violet-dark);
   padding: 6px 16px;
   border-radius: var(--radius-full);
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin-bottom: 20px;
}

.faq-title {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2rem, 4vw, 3.2rem);
   font-weight: 600;
   letter-spacing: -0.04em;
   line-height: 1.1;
   color: var(--text);
   margin-bottom: 16px;
}

.faq-sub {
   font-size: 1.08rem;
   color: var(--subtext);
   line-height: 1.7;
   max-width: 520px;
   margin: 0 auto;
}

.faq-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.faq-col {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.faq-item {
   background: var(--surface);
   border: 1px solid rgba(108, 92, 231, 0.1);
   border-radius: var(--radius-lg);
   overflow: hidden;
   transition: all 0.3s var(--ease-out);
   box-shadow: var(--shadow-md);
}

.faq-item:hover {
   border-color: rgba(108, 92, 231, 0.2);
   box-shadow: var(--shadow-sm);
}

.faq-question {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 20px 24px;
   background: none;
   border: none;
   cursor: pointer;
   font-family: "Poppins", sans-serif;
   font-size: 1rem;
   font-weight: 600;
   color: var(--text);
   text-align: left;
   transition: color 0.2s;
}

.faq-question:hover {
   color: var(--violet);
}

.faq-icon {
   width: 28px;
   height: 28px;
   min-width: 28px;
   border-radius: 50%;
   background: var(--violet-soft);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--violet);
   transition: all 0.3s var(--ease-spring);
}

.faq-item.active .faq-icon {
   background: var(--violet);
   color: #fff;
   transform: rotate(45deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
   max-height: 300px;
}

.faq-answer p {
   padding: 0 24px 20px;
   font-size: 0.95rem;
   color: var(--subtext);
   line-height: 1.7;
}

@media (max-width: 768px) {
   .faq-section {
      padding: 60px 24px;
   }
   
   .faq-grid {
      grid-template-columns: 1fr;
   }
   
   .faq-question {
      padding: 16px 20px;
      font-size: 0.95rem;
   }
   
   .faq-answer p {
      padding: 0 20px 16px;
   }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
   padding: 100px 48px;
   background: linear-gradient(to bottom, transparent, transparent, #d2caff);
}

.contact-container {
   max-width: 1200px;
   margin: 0 auto;
}

.contact-header {
   text-align: center;
   margin-bottom: 64px;
}

.contact-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--violet-soft);
   color: var(--violet-dark);
   padding: 6px 16px;
   border-radius: var(--radius-full);
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin-bottom: 20px;
}

.contact-title {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2rem, 4vw, 3.2rem);
   font-weight: 600;
   letter-spacing: -0.04em;
   line-height: 1.1;
   color: var(--text);
   margin-bottom: 16px;
}

.contact-sub {
   font-size: 1.08rem;
   color: var(--subtext);
   line-height: 1.7;
   max-width: 520px;
   margin: 0 auto;
}

.contact-grid {
   margin-top: 80px;
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 48px;
   align-items: start;
}

.contact-info {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.contact-card {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   padding: 20px;
   background: var(--surface);
   border-radius: var(--radius-lg);
   border: 1px solid rgba(108, 92, 231, 0.1);
   transition: all 0.3s var(--ease-out);
   box-shadow: var(--shadow-md);
   text-align: left;
}

.contact-card:hover {
   border-color: var(--violet-light);
   transform: translateX(4px);
   box-shadow: var(--shadow-sm);
}

.contact-icon {
   width: 48px;
   height: 48px;
   min-width: 48px;
   background: var(--violet-soft);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.contact-detail h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 4px;
}

.contact-detail p {
   font-size: 0.9rem;
   color: var(--subtext);
   line-height: 1.6;
}

.contact-detail a {
   color: var(--violet);
   text-decoration: none;
   transition: color 0.2s;
}

.contact-detail a:hover {
   color: var(--violet-dark);
}

.contact-map {
   margin-top: 8px;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: var(--shadow-md);
}

.contact-form-wrap {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 40px;
   border: 1px solid rgba(108, 92, 231, 0.1);
   box-shadow: var(--shadow-lg);
}

.contact-form {
   display: flex;
   flex-direction: column;
   gap: 20px;
   text-align: left;
}

.form-group {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.form-group label {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 14px 18px;
   border: 1.5px solid rgba(108, 92, 231, 0.15);
   border-radius: var(--radius);
   font-family: "Poppins", sans-serif;
   font-size: 0.95rem;
   color: var(--text);
   background: var(--bg);
   transition: all 0.3s;
   outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   border-color: var(--violet);
   box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: var(--subtext-light);
}

.form-group select {
   cursor: pointer;
   appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6589' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 16px center;
   padding-right: 44px;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.form-submit-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   background: var(--gradient-primary);
   color: #fff;
   padding: 16px 32px;
   border: none;
   border-radius: var(--radius-full);
   font-family: "Poppins", sans-serif;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s var(--ease-out);
   box-shadow: 0 8px 32px rgba(108, 92, 231, 0.4);
   margin-top: 8px;
}

.form-submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(108, 92, 231, 0.5);
}

.form-submit-btn svg {
   transition: transform 0.3s;
}

.form-submit-btn:hover svg {
   transform: translateX(4px);
}

@media (max-width: 1024px) {
   .contact-grid {
      grid-template-columns: 1fr;
   }
   
   .contact-form-wrap {
      order: -1;
   }
}

@media (max-width: 768px) {
.contact-section {
   padding: 60px 24px;
}
   
   .contact-form-wrap {
      padding: 28px 20px;
   }
   
   .form-row {
      grid-template-columns: 1fr;
   }
}

/* Remove old dark section styles that conflict */
.dark-section,
.dark-header,
.dark-features-grid,
.dark-feature-card,
.df-visual,
.df-bg {
   display: none;
}

/* Override to keep about section visible */
.about-section .dark-section,
.about-section .dark-header,
.about-section .dark-features-grid,
.about-section .dark-feature-card,
.about-section .df-visual,
.about-section .df-bg {
   display: block;
}
/* ============================================
   FIX: Reveal visibility conflict with GSAP
   ============================================ */

/* Force revealed elements to be visible regardless of inline styles */
.reveal.revealed,
.reveal.revealed * {
   opacity: 1 !important;
   transform: translateY(0) !important;
   filter: blur(0) !important;
}

/* Also fix for blur-reveal variants */
.blur-reveal.revealed,
.blur-reveal.revealed * {
   opacity: 1 !important;
   transform: translateY(0) !important;
   filter: blur(0) !important;
}

/* Fix for slide variants */
.slide-left.revealed,
.slide-left.revealed * {
   opacity: 1 !important;
   transform: translateX(0) !important;
}

.slide-right.revealed,
.slide-right.revealed * {
   opacity: 1 !important;
   transform: translateX(0) !important;
}

/* Fix for scale variants */
.scale-reveal.revealed,
.scale-reveal.revealed * {
   opacity: 1 !important;
   transform: scale(1) !important;
}

/* Ensure new section elements are visible when revealed */
.about-card.reveal.revealed,
.faq-item.reveal.revealed,
.contact-card.reveal.revealed,
.contact-form-wrap.reveal.revealed,
.about-stats.reveal.revealed {
   opacity: 1 !important;
   transform: none !important;
   transform: translateY(0) !important;
}

/* Override any GSAP inline transform that might conflict */
.about-card,
.faq-item,
.contact-card,
.contact-form-wrap,
.about-stats {
   will-change: auto;
}

/* Make sure elements with reveal class start hidden but become visible */
.reveal {
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s var(--ease-out);
}

.reveal.revealed {
   opacity: 1 !important;
   transform: translateY(0) !important;
}

/* Disable transition on elements that GSAP will animate */
.reveal[data-gsap="true"],
.reveal.gsap-animated {
   transition: none !important;
}

/* ============================================
   COURSES PAGE - BALAJI COMPUTER ACADEMY
   Matching the Draftr blog aesthetic
   ============================================ */

/* ============================================
   COURSES HERO
   ============================================ */
.courses-hero {
   min-height: 70vh;
   background: linear-gradient(to bottom,transparent,#d2caff,transparent);
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   position: relative;
   overflow: hidden;
   padding-top: 140px;
   padding-bottom: 80px;
}

.courses-hero-bg {
   position: absolute;
   inset: 0;
   background: var(--gradient-violet-glow);
   pointer-events: none;
}

.courses-hero-shape {
   position: absolute;
   border-radius: 50%;
   pointer-events: none;
   filter: blur(80px);
}

.courses-hero-shape.shape-a {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(162, 155, 254, 0.2) 0%, transparent 70%);
   top: -100px;
   right: -100px;
   animation: floatShape 10s ease-in-out infinite;
}

.courses-hero-shape.shape-b {
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
   bottom: 100px;
   left: -100px;
   animation: floatShape 12s ease-in-out infinite reverse;
}

.courses-hero-content {
   position: relative;
   z-index: 2;
   max-width: 800px;
   margin: 0 auto;
}

.courses-badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: rgba(255, 255, 255, 0.9);
   border: 1px solid rgba(108, 92, 231, 0.216);
   border-radius: var(--radius-full);
   padding: 6px 16px 6px 6px;
   font-size: 0.88rem;
   color: var(--subtext);
   margin-bottom: 32px;
   backdrop-filter: blur(10px);
   box-shadow: var(--shadow-sm);
   opacity: 0;
   transform: translateY(20px);
}

.courses-hero h1 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2.8rem, 6vw, 5rem);
   font-weight: 500;
   line-height: 1.05;
   letter-spacing: -0.04em;
   color: var(--text);
   margin-bottom: 24px;
   opacity: 0;
   transform: translateY(40px);
}

.courses-hero-sub {
   max-width: 700px;
   margin: 0 auto;
   font-size: 1.1rem;
   color: var(--subtext);
   line-height: 1.7;
   font-weight: 400;
   opacity: 0;
   transform: translateY(30px);
}

/* ============================================
   FEATURED COURSE
   ============================================ */
.featured-course-section {
   padding: 60px 48px 80px;
}

.featured-course {
   display: grid;
   grid-template-columns: 1.1fr 1fr;
   gap: 48px;
   align-items: center;
   background: var(--surface);
   border-radius: var(--radius-xl);
   border: 1px solid rgba(108, 92, 231, 0.1);
   box-shadow: var(--shadow-lg);
   overflow: hidden;
   padding: 0;
   transition: all 0.4s var(--ease-out);
}

.featured-course:hover {
   box-shadow: var(--shadow-xl);
   border-color: rgba(108, 92, 231, 0.2);
   transform: translateY(-4px);
}

.featured-image {
   position: relative;
   height: 100%;
   min-height: 450px;
   background: linear-gradient(135deg, #ede9ff 0%, #ddd6ff 50%, #c4b8ff 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

.featured-img-bg {
   width: 200px;
   height: 200px;
   background: rgba(255, 255, 255, 0.6);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   animation: floatElement 6s ease-in-out infinite;
   backdrop-filter: blur(10px);
}

.featured-img-bg svg {
   width: 100px;
   height: 100px;
}

.featured-floating-tag {
   position: absolute;
   top: 24px;
   right: 24px;
   display: flex;
   flex-direction: column;
   gap: 8px;
   align-items: flex-end;
}

.ft-badge {
   background: var(--gradient-primary);
   color: #fff;
   padding: 6px 16px;
   border-radius: var(--radius-full);
   font-size: 0.8rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   box-shadow: 0 4px 16px rgba(108, 92, 231, 0.35);
}

.ft-students {
   background: rgba(255, 255, 255, 0.9);
   color: var(--text);
   padding: 4px 14px;
   border-radius: var(--radius-full);
   font-size: 0.8rem;
   font-weight: 600;
   backdrop-filter: blur(10px);
   border: 1px solid rgba(108, 92, 231, 0.15);
}

.featured-content {
   padding: 48px 48px 48px 0;
}

.featured-meta {
   display: flex;
   gap: 12px;
   margin-bottom: 20px;
   flex-wrap: wrap;
}

.fc-tag {
   background: var(--violet-soft);
   color: var(--violet-dark);
   padding: 4px 14px;
   border-radius: var(--radius-full);
   font-size: 0.8rem;
   font-weight: 700;
   letter-spacing: 0.04em;
}

.fc-duration,
.fc-level {
   color: var(--subtext);
   font-size: 0.85rem;
   font-weight: 500;
   display: flex;
   align-items: center;
   gap: 6px;
}

.fc-duration::before,
.fc-level::before {
   content: '•';
   color: var(--violet-light);
   font-weight: 900;
}

.featured-content h3 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(1.6rem, 3vw, 2.2rem);
   font-weight: 600;
   letter-spacing: -0.03em;
   color: var(--text);
   margin-bottom: 16px;
   line-height: 1.2;
}

.featured-content > p {
   font-size: 1rem;
   color: var(--subtext);
   line-height: 1.7;
   margin-bottom: 28px;
}

.featured-highlights {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-bottom: 32px;
}

.featured-highlights li {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 0.95rem;
   color: var(--text-light);
   font-weight: 500;
}

.featured-highlights li svg {
   flex-shrink: 0;
   background: var(--violet-soft);
   padding: 4px;
   border-radius: 50%;
   width: 26px;
   height: 26px;
}

.featured-actions {
   display: flex;
   gap: 16px;
   align-items: center;
   flex-wrap: wrap;
}

/* ============================================
   COURSES GRID
   ============================================ */
.all-courses-section {
   padding: 80px 48px 100px;
}

.courses-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
   max-width: 1300px;
   margin: 0 auto;
}

.course-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   border: 1px solid rgba(108, 92, 231, 0.08);
   overflow: hidden;
   transition: all 0.4s var(--ease-out);
   box-shadow: var(--shadow-md);
   display: flex;
   flex-direction: column;
}

.course-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-lg);
   border-color: rgba(108, 92, 231, 0.2);
}

.course-image {
   position: relative;
   height: 220px;
   overflow: hidden;
}

.course-img-bg {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.6s var(--ease-out);
}

.course-card:hover .course-img-bg {
   transform: scale(1.05);
}

.course-img-bg.blue { background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 100%); }
.course-img-bg.pink { background: linear-gradient(135deg, #ffeef8 0%, #fce7f3 100%); }
.course-img-bg.yellow { background: linear-gradient(135deg, #fff9e6 0%, #fef3c7 100%); }
.course-img-bg.purple { background: linear-gradient(135deg, #ede9ff 0%, #ddd6ff 100%); }
.course-img-bg.green { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); }
.course-img-bg.orange { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); }
.course-img-bg.teal { background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%); }
.course-img-bg.indigo { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%); }
.course-img-bg.rose { background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%); }

.course-tag {
   position: absolute;
   top: 16px;
   left: 16px;
   background: rgba(255, 255, 255, 0.95);
   color: var(--text);
   padding: 4px 14px;
   border-radius: var(--radius-full);
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   backdrop-filter: blur(10px);
   border: 1px solid rgba(108, 92, 231, 0.1);
   box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.course-body {
   padding: 24px;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.course-body h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.15rem;
   font-weight: 600;
   letter-spacing: -0.02em;
   color: var(--text);
   margin-bottom: 10px;
   line-height: 1.3;
}

.course-body p {
   font-size: 0.9rem;
   color: var(--subtext);
   line-height: 1.7;
   margin-bottom: 20px;
   flex: 1;
}

.course-link {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   color: var(--violet);
   font-size: 0.92rem;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.25s var(--ease-out);
   margin-top: auto;
}

.course-link svg {
   width: 16px;
   height: 16px;
   fill: var(--violet);
   transition: transform 0.25s var(--ease-out);
}

.course-link:hover {
   gap: 10px;
   color: var(--violet-dark);
}

.course-link:hover svg {
   transform: translateX(4px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
   max-width: 1100px;
   margin: 0 auto 100px;
   padding: 0 48px;
}

.cta-content {
   background: var(--gradient-primary);
   border-radius: 40px;
   padding: 80px 64px;
   text-align: center;
   position: relative;
   overflow: hidden;
}

.cta-content::before {
   content: '';
   position: absolute;
   top: -100px;
   left: -100px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
   pointer-events: none;
}

.cta-content h2 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 600;
   letter-spacing: -0.04em;
   color: #fff;
   margin-bottom: 16px;
   position: relative;
   z-index: 1;
}

.cta-content p {
   color: rgba(255, 255, 255, 0.75);
   font-size: 1.1rem;
   max-width: 500px;
   margin: 0 auto 32px;
   position: relative;
   z-index: 1;
   line-height: 1.7;
}

.btn-white {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: #fff;
   color: var(--violet-dark);
   padding: 14px 32px;
   border-radius: var(--radius-full);
   font-size: 1rem;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s var(--ease-out);
   position: relative;
   z-index: 1;
   box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn-white:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-white svg {
   transition: transform 0.3s var(--ease-out);
}

.btn-white:hover svg {
   transform: translateX(4px);
}

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.nav-links a.active {
   color: var(--violet);
}

.nav-links a.active::after {
   transform: scaleX(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
   .featured-course {
      grid-template-columns: 1fr;
   }
   
   .featured-image {
      min-height: 300px;
   }
   
   .featured-content {
      padding: 36px;
   }
   
   .courses-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .courses-hero {
      min-height: auto;
      padding-top: 120px;
      padding-bottom: 60px;
   }
   
   .courses-hero h1 {
      font-size: clamp(2.2rem, 8vw, 3.5rem);
   }
   
   .featured-course-section,
   .all-courses-section {
      padding: 40px 24px 60px;
   }
   
   .featured-content {
      padding: 28px 24px;
   }
   
   .featured-actions {
      flex-direction: column;
      width: 100%;
   }
   
   .featured-actions .btn-primary,
   .featured-actions .btn-secondary {
      width: 100%;
      justify-content: center;
   }
   
   .courses-grid {
      grid-template-columns: 1fr;
      gap: 20px;
   }
   
   .cta-section {
      padding: 0 24px;
      margin-bottom: 60px;
   }
   
   .cta-content {
      padding: 48px 32px;
      border-radius: 24px;
   }
   
   .featured-highlights li {
      font-size: 0.9rem;
   }
}

@media (max-width: 480px) {
   .courses-badge {
      font-size: 0.8rem;
      padding: 4px 12px 4px 4px;
   }
   
   .featured-meta {
      gap: 8px;
   }
   
   .fc-duration::before,
   .fc-level::before {
      display: none;
   }
   
   .course-image {
      height: 180px;
   }
}
/* ============================================
   COURSE DETAIL PAGE - BALAJI COMPUTER ACADEMY
   ============================================ */

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 40px;
   font-size: 0.88rem;
   color: var(--subtext);
   flex-wrap: wrap;
}

.breadcrumb a {
   color: var(--subtext);
   text-decoration: none;
   transition: color 0.25s;
   font-weight: 500;
}

.breadcrumb a:hover {
   color: var(--violet);
}

.breadcrumb svg {
   color: var(--violet-light);
   flex-shrink: 0;
}

.breadcrumb span {
   color: var(--text);
   font-weight: 600;
}

/* ============================================
   COURSE HERO
   ============================================ */
.course-hero {
   min-height: auto;
   background: var(--bg);
   position: relative;
   overflow: hidden;
   padding-top: 140px;
   padding-bottom: 80px;
   
   background: linear-gradient(to bottom,transparent,#d2caff,transparent);
}

.course-hero-bg {
   position: absolute;
   inset: 0;
   background: var(--gradient-violet-glow);
   pointer-events: none;
}

.course-hero-shape {
   position: absolute;
   border-radius: 50%;
   pointer-events: none;
   filter: blur(80px);
}

.course-hero-shape.shape-1 {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(162, 155, 254, 0.2) 0%, transparent 70%);
   top: -100px;
   right: -100px;
   animation: floatShape 10s ease-in-out infinite;
}

.course-hero-shape.shape-2 {
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
   bottom: 100px;
   left: -100px;
   animation: floatShape 12s ease-in-out infinite reverse;
}

.course-hero-content {
   gap: 60px;
   align-items: center;
   position: relative;
   z-index: 2;
}
.course-hero-text{
   display: flex;
   width: 100%;
   flex-direction: column;
   align-items: center;
}
.course-meta {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 24px;
   flex-wrap: wrap;
}

.cm-tag {
   background: var(--violet-soft);
   color: var(--violet-dark);
   padding: 5px 14px;
   border-radius: var(--radius-full);
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
}

.cm-dot {
   width: 4px;
   height: 4px;
   border-radius: 50%;
   background: var(--violet-light);
}

.cm-duration,
.cm-level {
   font-size: 0.88rem;
   color: var(--subtext);
   font-weight: 500;
}

.course-hero h1 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2.8rem, 5vw, 4.5rem);
   font-weight: 500;
   line-height: 1.05;
   width: 100%;
   text-align: center;
   letter-spacing: -0.04em;
   color: var(--text);
   margin-bottom: 24px;
}

.course-hero-desc {
   font-size: 1.1rem;
   color: var(--subtext);
   line-height: 1.7;
   text-align: center;
   max-width: 900px;
   margin-bottom: 32px;
}

.course-hero-actions {
   display: flex;
   align-items: center;
   gap: 28px;
   margin-top: 40px;
   flex-wrap: wrap;
}

.course-price {
   display: flex;
   flex-direction: column;
}

.cp-label {
   font-size: 0.8rem;
   color: var(--subtext);
   font-weight: 500;
   margin-bottom: 2px;
}

.cp-amount {
   font-family: "Poppins", sans-serif;
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--text);
   letter-spacing: -0.02em;
}

.course-quick-info {
   display: flex;
   gap: 32px;
   flex-wrap: wrap;
}

.cqi-item {
   display: flex;
   align-items: center;
   gap: 12px;
}

.cqi-item svg {
   flex-shrink: 0;
   background: var(--violet-soft);
   padding: 8px;
   border-radius: 12px;
   width: 38px;
   height: 38px;
}

.cqi-item div {
   display: flex;
   flex-direction: column;
}

.cqi-label {
   font-size: 0.78rem;
   color: var(--subtext);
   font-weight: 500;
}

.cqi-value {
   font-size: 0.95rem;
   color: var(--text);
   font-weight: 600;
}

/* Course Hero Visual */
.course-hero-visual {
   position: relative;
   display: flex;
   justify-content: center;
}

.course-visual-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   border: 1px solid rgba(108, 92, 231, 0.1);
   box-shadow: var(--shadow-lg);
   overflow: hidden;
   width: 100%;
   max-width: 420px;
   position: relative;
   z-index: 2;
}

.cv-header {
   background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
   padding: 14px 20px;
   display: flex;
   align-items: center;
   gap: 14px;
}

.cv-dots {
   display: flex;
   gap: 6px;
}

.cv-dots span {
   width: 10px;
   height: 10px;
   border-radius: 50%;
}

.cv-dots span:nth-child(1) { background: #ff5f57; }
.cv-dots span:nth-child(2) { background: #febc2e; }
.cv-dots span:nth-child(3) { background: #28c840; }

.cv-title {
   color: rgba(255,255,255,0.7);
   font-size: 0.85rem;
   font-weight: 500;
}

.cv-body {
   background: #f8f7ff;
   padding: 24px;
   position: relative;
   min-height: 280px;
}

.cv-code-block {
   background: #1e1e2e;
   border-radius: var(--radius);
   padding: 20px;
   font-family: 'Fira Code', 'Consolas', monospace;
   font-size: 0.82rem;
   line-height: 1.8;
   overflow-x: auto;
}

.cv-line {
   color: #a6accd;
}

.cv-keyword { color: #c792ea; }
.cv-string { color: #c3e88d; }
.cv-function { color: #82aaff; }
.cv-comment { color: #676e95; font-style: italic; }

.cv-floating-badge {
   position: absolute;
   bottom: 20px;
   right: 20px;
   background: var(--gradient-primary);
   color: #fff;
   padding: 8px 16px;
   border-radius: var(--radius-full);
   font-size: 0.8rem;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 8px;
   box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
   animation: floatComment 4s ease-in-out infinite;
}

.cv-glow {
   position: absolute;
   width: 300px;
   height: 300px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   pointer-events: none;
   z-index: 1;
}

/* ============================================
   COURSE IMAGE SECTION
   ============================================ */
.course-image-section {
   padding: 0 48px 60px;
}

.course-main-image {
   width: 100%;
   height: 700px;
   border-radius: var(--radius-xl);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(108, 92, 231, 0.1);
}
.course-main-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.cmi-inner {
   position: relative;
   height: 400px;
   background: linear-gradient(135deg, #ede9ff 0%, #ddd6ff 30%, #c4b8ff 70%, #a29bfe 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

.cmi-visual {
   animation: floatElement 6s ease-in-out infinite;
}

.cmi-visual svg {
   width: 280px;
   height: 280px;
}

.cmi-overlay {
   position: absolute;
   inset: 0;
   display: flex;
   align-items: flex-end;
   justify-content: flex-start;
   padding: 32px;
}

.cmi-badge {
   background: var(--gradient-primary);
   color: #fff;
   padding: 10px 20px;
   border-radius: var(--radius-full);
   font-size: 0.9rem;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 10px;
   box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}

/* ============================================
   COURSE DESCRIPTION
   ============================================ */
.course-description-section {
   padding: 40px 48px 80px;
}

.course-desc-grid {
   display: grid;
   grid-template-columns: 1fr 340px;
   gap: 60px;
   align-items: start;
}

.course-subtitle {
   font-family: "Poppins", sans-serif;
   font-size: clamp(1.8rem, 3vw, 2.4rem);
   font-weight: 600;
   letter-spacing: -0.03em;
   color: var(--text);
   margin-top: 12px;
   margin-bottom: 24px;
   line-height: 1.2;
}

.course-description p {
   font-size: 1.02rem;
   color: var(--subtext);
   line-height: 1.8;
   margin-bottom: 20px;
}

.course-description p strong {
   color: var(--text);
   font-weight: 600;
}

.course-highlights {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-top: 40px;
}

.ch-item {
   background: var(--surface);
   border-radius: var(--radius-lg);
   padding: 24px;
   border: 1px solid rgba(108, 92, 231, 0.08);
   box-shadow: var(--shadow-sm);
   transition: all 0.3s var(--ease-out);
}

.ch-item:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-md);
   border-color: rgba(108, 92, 231, 0.15);
}

.ch-icon {
   width: 48px;
   height: 48px;
   background: var(--violet-soft);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 16px;
}

.ch-text h5 {
   font-family: "Poppins", sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 6px;
}

.ch-text p {
   font-size: 0.88rem;
   color: var(--subtext);
   line-height: 1.6;
}

/* Sidebar */
.course-sidebar {
   display: flex;
   flex-direction: column;
   gap: 20px;
   position: sticky;
   top: 100px;
}

.sidebar-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 28px;
   border: 1px solid rgba(108, 92, 231, 0.1);
   box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 20px;
   letter-spacing: -0.01em;
}

.includes-list {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.includes-list li {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 0.92rem;
   color: var(--text-light);
   font-weight: 500;
}

.includes-list li svg {
   flex-shrink: 0;
   background: var(--violet-soft);
   padding: 3px;
   border-radius: 50%;
   width: 22px;
   height: 22px;
}

.sidebar-cta {
   display: block;
   width: 100%;
   margin-top: 24px;
   background: var(--gradient-primary);
   color: #fff;
   padding: 14px;
   border-radius: var(--radius-full);
   font-size: 0.95rem;
   font-weight: 700;
   text-align: center;
   text-decoration: none;
   transition: all 0.3s var(--ease-out);
   box-shadow: 0 8px 32px rgba(108, 92, 231, 0.4);
   border: none;
   cursor: pointer;
}

.sidebar-cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(108, 92, 231, 0.5);
}

.instructor-profile {
   display: flex;
   align-items: center;
   gap: 16px;
}

.instructor-avatar {
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: var(--gradient-primary);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: "Poppins", sans-serif;
   font-size: 1.2rem;
   font-weight: 700;
   flex-shrink: 0;
}

.instructor-info {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.instructor-name {
   font-family: "Poppins", sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: var(--text);
}

.instructor-role {
   font-size: 0.85rem;
   color: var(--subtext);
   font-weight: 500;
}

.instructor-exp {
   font-size: 0.8rem;
   color: var(--violet);
   font-weight: 600;
}

/* ============================================
   CURRICULUM ACCORDION
   ============================================ */
.curriculum-section {
   padding: 60px 48px 100px;
   max-width: 900px;
   margin: 0 auto;
}

.curriculum-accordion {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.curriculum-module {
   background: var(--surface);
   border-radius: var(--radius-xl);
   border: 1px solid rgba(108, 92, 231, 0.08);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   transition: all 0.3s var(--ease-out);
}

.curriculum-module:hover {
   border-color: rgba(108, 92, 231, 0.15);
   box-shadow: var(--shadow-md);
}

.curriculum-module.active {
   border-color: rgba(108, 92, 231, 0.2);
   box-shadow: var(--shadow-md);
}

.module-header {
   width: 100%;
   display: flex;
   align-items: center;
   gap: 20px;
   padding: 24px 28px;
   background: none;
   border: none;
   cursor: pointer;
   text-align: left;
   transition: background 0.3s;
}

.module-header:hover {
   background: rgba(108, 92, 231, 0.02);
}

.module-number {
   width: 48px;
   height: 48px;
   min-width: 48px;
   border-radius: 14px;
   background: var(--violet-soft);
   color: var(--violet);
   font-family: "Poppins", sans-serif;
   font-size: 1.1rem;
   font-weight: 800;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s;
}

.curriculum-module.active .module-number {
   background: var(--violet);
   color: #fff;
}

.module-info {
   flex: 1;
}

.module-info h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 4px;
   letter-spacing: -0.01em;
   transition: color 0.3s;
}

.curriculum-module.active .module-info h4 {
   color: var(--violet);
}

.module-meta {
   font-size: 0.85rem;
   color: var(--subtext);
   font-weight: 500;
}

.module-toggle {
   width: 36px;
   height: 36px;
   min-width: 36px;
   border-radius: 50%;
   background: var(--violet-soft);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--violet);
   transition: all 0.4s var(--ease-spring);
}

.curriculum-module.active .module-toggle {
   background: var(--violet);
   color: #fff;
   transform: rotate(45deg);
}

.module-body {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.5s var(--ease-out), padding 0.4s;
}

.curriculum-module.active .module-body {
   max-height: 800px;
}

.module-content {
   padding: 0 28px 28px 96px;
}

.module-desc {
   font-size: 0.95rem;
   color: var(--subtext);
   line-height: 1.7;
   margin-bottom: 20px;
   padding-right: 20px;
}

.topic-list {
   list-style: none;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
}

.topic-list li {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.9rem;
   color: var(--text-light);
   font-weight: 500;
   padding: 6px 0;
}

.topic-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--violet-light);
   flex-shrink: 0;
}

/* ============================================
   RELATED COURSES
   ============================================ */
.related-courses-section {
   padding: 60px 48px 100px;
}

.related-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 1100px;
   margin: 0 auto;
}

.related-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   border: 1px solid rgba(108, 92, 231, 0.08);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   text-decoration: none;
   transition: all 0.4s var(--ease-out);
   display: flex;
   flex-direction: column;
}

.related-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-lg);
   border-color: rgba(108, 92, 231, 0.2);
}

.rc-image {
   height: 180px;
   overflow: hidden;
}

.rc-bg {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.6s var(--ease-out);
}

.related-card:hover .rc-bg {
   transform: scale(1.05);
}

.rc-bg.pink { background: linear-gradient(135deg, #ffeef8 0%, #fce7f3 100%); }
.rc-bg.yellow { background: linear-gradient(135deg, #fff9e6 0%, #fef3c7 100%); }
.rc-bg.green { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); }

.rc-body {
   padding: 20px 24px 24px;
}

.rc-tag {
   display: inline-block;
   background: var(--violet-soft);
   color: var(--violet-dark);
   padding: 3px 12px;
   border-radius: var(--radius-full);
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   margin-bottom: 10px;
}

.rc-body h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 6px;
   letter-spacing: -0.01em;
}

.rc-body p {
   font-size: 0.88rem;
   color: var(--subtext);
   line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
   .course-hero-content {
      grid-template-columns: 1fr;
      gap: 48px;
   }
   
   .course-hero-visual {
      order: -1;
      max-width: 500px;
      margin: 0 auto;
   }
   .course-main-image {
      height: 600px;
   }
   
   .course-desc-grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }
   
   .course-sidebar {
      position: static;
      flex-direction: row;
      flex-wrap: wrap;
   }
   
   .sidebar-card {
      flex: 1;
      min-width: 280px;
   }
   
   .course-highlights {
      grid-template-columns: 1fr;
   }
   
   .topic-list {
      grid-template-columns: 1fr;
   }
   
   .related-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   
   .module-content {
      padding: 0 24px 24px 24px;
   }
}

@media (max-width: 768px) {
   .course-hero {
      padding-top: 120px;
      padding-bottom: 60px;
   }
   
   .course-hero h1 {
      font-size: clamp(2.2rem, 8vw, 3.5rem);
   }
   .course-main-image{
      height: 500px;
   }
   
   .breadcrumb {
      margin-bottom: 24px;
   }
   
   .course-hero-actions {
      flex-direction: column;
      gap: 16px;
   }
   
   .course-hero-actions .btn-primary,
   .course-price {
      width: 100%;
   }
   
   .course-price {
      text-align: center;
   }
   
   .course-quick-info {
      gap: 20px;
   }
   
   .course-image-section,
   .course-description-section,
   .curriculum-section,
   .related-courses-section {
      padding-left: 24px;
      padding-right: 24px;
   }
   
   .cmi-inner {
      height: 280px;
   }
   
   .cmi-visual svg {
      width: 180px;
      height: 180px;
   }
   
   .module-header {
      padding: 18px 20px;
      gap: 14px;
   }
   
   .module-number {
      width: 40px;
      height: 40px;
      min-width: 40px;
      font-size: 1rem;
   }
   
   .module-info h4 {
      font-size: 1rem;
   }
   
   .module-content {
      padding: 0 20px 20px 20px;
   }
   
   .related-grid {
      grid-template-columns: 1fr;
   }
   
   .curriculum-section {
      padding-top: 40px;
      padding-bottom: 60px;
   }
}

@media (max-width: 480px) {
   .course-meta {
      gap: 8px;
      align-items: center;
      justify-content: center;
   }
   .course-main-image{
      height: 250px;
   }
   .cm-dot {
      display: none;
   }
   
   .course-quick-info {
      flex-direction: column;
      width: 100%;
      gap: 16px;
   }
   
   .cv-body {
      padding: 16px;
   }
   
   .cv-code-block {
      padding: 14px;
      font-size: 0.75rem;
   }
}
/* ============================================
   ABOUT PAGE - BALAJI COMPUTER ACADEMY
   ============================================ */

/* ============================================
   ABOUT HERO
   ============================================ */
.about-hero {
   min-height: auto;
   background: var(--bg);
   position: relative;
   overflow: hidden;
   padding-top: 140px;
   padding-bottom: 80px;
   background: linear-gradient(to bottom, transparent, #d2caff, transparent);
}

.about-hero-bg {
   position: absolute;
   inset: 0;
   background: var(--gradient-violet-glow);
   pointer-events: none;
}

.about-hero-shape {
   position: absolute;
   border-radius: 50%;
   pointer-events: none;
   filter: blur(80px);
}

.about-hero-shape.shape-1 {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(162, 155, 254, 0.2) 0%, transparent 70%);
   top: -100px;
   right: -100px;
   animation: floatShape 10s ease-in-out infinite;
}

.about-hero-shape.shape-2 {
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
   bottom: 100px;
   left: -100px;
   animation: floatShape 12s ease-in-out infinite reverse;
}

.about-hero-shape.shape-3 {
   width: 350px;
   height: 350px;
   background: radial-gradient(circle, rgba(221, 214, 255, 0.25) 0%, transparent 70%);
   top: 40%;
   right: 15%;
   animation: floatShape 8s ease-in-out infinite 2s;
}

.about-hero-content {
    display: flex;
   gap: 15px;
   align-items: center;
   position: relative;
   z-index: 2;
}

.about-badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: rgba(255, 255, 255, 0.9);
   border: 1px solid rgba(108, 92, 231, 0.216);
   border-radius: var(--radius-full);
   padding: 6px 16px 6px 6px;
   font-size: 0.88rem;
   color: var(--subtext);
   margin-bottom: 32px;
   backdrop-filter: blur(10px);
   box-shadow: var(--shadow-sm);
   opacity: 0;
   transform: translateY(20px);
}

.about-hero h1 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2.8rem, 5vw, 4.5rem);
   font-weight: 500;
   line-height: 1.05;
   letter-spacing: -0.04em;
   color: var(--text);
   margin-bottom: 24px;
}

.about-hero-desc {
   font-size: 1.1rem;
   color: var(--subtext);
   line-height: 1.7;
   max-width: 540px;
   margin-bottom: 40px;
}

.about-hero-stats {
   display: flex;
   gap: 32px;
   flex-wrap: wrap;
}

.ahs-item {
   display: flex;
   flex-direction: column;
}

.ahs-number {
   font-family: "Poppins", sans-serif;
   font-size: 2.8rem;
   font-weight: 800;
   color: var(--violet);
   line-height: 1;
   letter-spacing: -0.03em;
   background: var(--gradient-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.ahs-label {
   font-size: 0.9rem;
   color: var(--subtext);
   font-weight: 500;
   margin-top: 6px;
}

.ahs-divider {
   width: 1px;
   height: 60px;
   background: rgba(108, 92, 231, 0.15);
}

/* About Hero Visual */
.about-hero-visual {
   position: relative;
   display: flex;
   justify-content: center;
   box-shadow: var(--shadow-lg);
   width: 50%;
   height: 600px;
   border-radius: var(--radius-xl);
   overflow: hidden;
}
.about-hero-visual img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.about-visual-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   border: 1px solid rgba(108, 92, 231, 0.1);
   box-shadow: var(--shadow-lg);
   overflow: hidden;
   width: 100%;
   max-width: 400px;
   position: relative;
   z-index: 2;
}

.av-header {
   background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
   padding: 14px 20px;
   display: flex;
   align-items: center;
   gap: 14px;
}

.av-dots {
   display: flex;
   gap: 6px;
}

.av-dots span {
   width: 10px;
   height: 10px;
   border-radius: 50%;
}

.av-dots span:nth-child(1) { background: #ff5f57; }
.av-dots span:nth-child(2) { background: #febc2e; }
.av-dots span:nth-child(3) { background: #28c840; }

.av-title {
   color: rgba(255,255,255,0.7);
   font-size: 0.85rem;
   font-weight: 500;
}

.av-body {
   background: #f8f7ff;
   padding: 28px;
   position: relative;
   min-height: 260px;
}

.av-chart {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   height: 180px;
   gap: 12px;
   padding-bottom: 30px;
   border-bottom: 1px solid rgba(108, 92, 231, 0.1);
}

.av-bar-group {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   flex: 1;
}

.av-bar {
   width: 100%;
   max-width: 40px;
   background: linear-gradient(to top, var(--violet), var(--violet-light));
   border-radius: 8px 8px 0 0;
   transition: height 1s var(--ease-out);
   min-height: 20px;
}

.av-bar-group span {
   font-size: 0.75rem;
   color: var(--subtext);
   font-weight: 600;
}

.av-floating-stat {
   position: absolute;
   bottom: 20px;
   right: 20px;
   background: var(--gradient-primary);
   color: #fff;
   padding: 14px 20px;
   border-radius: var(--radius-lg);
   box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
   animation: floatComment 4s ease-in-out infinite;
}

.av-fs-number {
   display: block;
   font-family: "Poppins", sans-serif;
   font-size: 1.4rem;
   font-weight: 800;
   line-height: 1;
}

.av-fs-label {
   font-size: 0.75rem;
   opacity: 0.9;
}

.av-glow {
   position: absolute;
   width: 280px;
   height: 280px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   pointer-events: none;
   z-index: 1;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
   padding: 80px 48px 60px;
}

.mission-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 1200px;
   margin: 0 auto;
}

.mission-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 36px 32px;
   border: 1px solid rgba(108, 92, 231, 0.08);
   box-shadow: var(--shadow-sm);
   transition: all 0.4s var(--ease-out);
   text-align: center;
}

.mission-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-md);
   border-color: rgba(108, 92, 231, 0.15);
}

.mission-icon {
   width: 64px;
   height: 64px;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   transition: transform 0.3s var(--ease-out);
}

.mission-card:hover .mission-icon {
   transform: scale(1.1) rotate(-5deg);
}

.mission-card h3 {
   font-family: "Poppins", sans-serif;
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 12px;
   letter-spacing: -0.01em;
}

.mission-card p {
   font-size: 0.95rem;
   color: var(--subtext);
   line-height: 1.7;
}

/* ============================================
   STORY / TIMELINE
   ============================================ */
.story-section {
   padding: 80px 48px 100px;
   position: relative;
}

.timeline {
   position: relative;
   max-width: 900px;
   margin: 60px auto 0;
}

.timeline-line {
   position: absolute;
   left: 50%;
   top: 0;
   bottom: 0;
   width: 2px;
   background: linear-gradient(to bottom, var(--violet-soft), var(--violet-light), var(--violet-soft));
   transform: translateX(-50%);
}

.timeline-item {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   margin-bottom: 60px;
   position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
   order: 2;
   text-align: left;
}

.timeline-item:nth-child(even) .timeline-image {
   order: 1;
   justify-self: end;
}

.timeline-item:nth-child(odd) .timeline-content {
   text-align: right;
}

.timeline-item:nth-child(odd) .timeline-image {
   justify-self: start;
}

.timeline-dot {
   position: absolute;
   left: 47%;
   top: 40%;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: var(--violet);
   border: 4px solid var(--bg);
   box-shadow: 0 0 0 4px var(--violet-soft);
   z-index: 2;
}

.timeline-content {
   padding: 0 20px;
}

.tl-year {
   display: inline-block;
   background: var(--violet-soft);
   color: var(--violet-dark);
   padding: 4px 14px;
   border-radius: var(--radius-full);
   font-size: 0.8rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   margin-bottom: 12px;
}

.timeline-content h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 10px;
   letter-spacing: -0.01em;
}

.timeline-content p {
   font-size: 0.95rem;
   color: var(--subtext);
   line-height: 1.7;
}

.timeline-image {
   width: 180px;
   height: 180px;
}

.tl-img-bg {
   width: 100%;
   height: 100%;
   border-radius: var(--radius-xl);
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: var(--shadow-md);
}

.tl-img-bg.purple { background: linear-gradient(135deg, #ede9ff, #ddd6ff); }
.tl-img-bg.blue { background: linear-gradient(135deg, #e8f4fd, #dbeafe); }
.tl-img-bg.green { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.tl-img-bg.pink { background: linear-gradient(135deg, #ffeef8, #fce7f3); }
.tl-img-bg.yellow { background: linear-gradient(135deg, #fff9e6, #fef3c7); }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
   padding: 80px 48px 100px;
}

.team-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
   max-width: 1200px;
   margin: 0 auto;
}

.team-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 32px 28px;
   border: 1px solid rgba(108, 92, 231, 0.08);
   box-shadow: var(--shadow-sm);
   text-align: center;
   transition: all 0.4s var(--ease-out);
}

.team-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-md);
   border-color: rgba(108, 92, 231, 0.15);
}

.team-avatar {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: "Poppins", sans-serif;
   font-size: 1.6rem;
   font-weight: 700;
   color: #fff;
   margin: 0 auto 20px;
   box-shadow: 0 8px 24px rgba(0,0,0,0.15);
   transition: transform 0.3s var(--ease-out);
}

.team-card:hover .team-avatar {
   transform: scale(1.08);
}

.team-info h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 4px;
}

.team-role {
   display: block;
   font-size: 0.85rem;
   color: var(--violet);
   font-weight: 600;
   margin-bottom: 12px;
}

.team-info > p {
   font-size: 0.88rem;
   color: var(--subtext);
   line-height: 1.6;
   margin-bottom: 16px;
}

.team-social {
   display: flex;
   justify-content: center;
   gap: 10px;
}

.team-social a {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: var(--violet-soft);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--violet);
   transition: all 0.3s var(--ease-out);
}

.team-social a:hover {
   background: var(--violet);
   color: #fff;
   transform: translateY(-3px);
}

/* ============================================
   STATS SECTION
   ============================================ */
.about-stats-section {
   padding: 80px 48px;
   background: linear-gradient(to bottom, transparent, #f8f7ff, transparent);
}

.about-stats-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 1100px;
   margin: 0 auto;
}

.about-stat-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 36px 28px;
   text-align: center;
   border: 1px solid rgba(108, 92, 231, 0.08);
   box-shadow: var(--shadow-sm);
   transition: all 0.4s var(--ease-out);
}

.about-stat-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-md);
   border-color: rgba(108, 92, 231, 0.15);
}

.asc-icon {
   width: 56px;
   height: 56px;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 16px;
   transition: transform 0.3s;
}

.about-stat-card:hover .asc-icon {
   transform: scale(1.1);
}

.asc-number {
   display: block;
   font-family: "Poppins", sans-serif;
   font-size: 2.6rem;
   font-weight: 800;
   color: var(--text);
   line-height: 1;
   margin-bottom: 8px;
   letter-spacing: -0.03em;
   background: var(--gradient-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.asc-label {
   font-size: 0.9rem;
   color: var(--subtext);
   font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
   padding: 80px 48px 100px;
}

.testimonials-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 1200px;
   margin: 0 auto;
}

.testimonial-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 32px;
   border: 1px solid rgba(108, 92, 231, 0.08);
   box-shadow: var(--shadow-sm);
   transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-md);
   border-color: rgba(108, 92, 231, 0.15);
}

.tc-stars {
   display: flex;
   gap: 4px;
   margin-bottom: 16px;
}

.tc-text {
   font-size: 0.95rem;
   color: var(--text-light);
   line-height: 1.8;
   margin-bottom: 24px;
   font-style: italic;
}

.tc-author {
   display: flex;
   align-items: center;
   gap: 14px;
}

.tc-avatar {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: "Poppins", sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: #fff;
   flex-shrink: 0;
}

.tc-info {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.tc-name {
   font-family: "Poppins", sans-serif;
   font-size: 0.95rem;
   font-weight: 700;
   color: var(--text);
}

.tc-role {
   font-size: 0.82rem;
   color: var(--subtext);
   font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
   .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
   }
   .about-hero-text{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
   }
   .about-hero-visual {
      width: 100%;
   }
   
   
   .mission-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   
   .timeline-line {
      left: 20px;
   }
   
   .timeline-item {
      grid-template-columns: 1fr;
      gap: 20px;
      padding-left: 60px;
   }
   
   .timeline-item:nth-child(even) .timeline-content,
   .timeline-item:nth-child(odd) .timeline-content {
      order: 1;
      text-align: left;
   }
   
   .timeline-item:nth-child(even) .timeline-image,
   .timeline-item:nth-child(odd) .timeline-image {
      order: 2;
      justify-self: start;
   }
   
   .timeline-dot {
      left: 20px;
   }
   
   .team-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   
   .about-stats-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   
   .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .about-hero {
      padding-top: 120px;
      padding-bottom: 60px;
   }
   
   .about-hero h1 {
      font-size: clamp(2.2rem, 8vw, 3.5rem);
   }
   
   .about-hero-stats {
      flex-direction: column;
      gap: 24px;
   }
   
   .ahs-divider {
      display: none;
   }
   
   .breadcrumb {
      margin-bottom: 24px;
   }
   
   .mission-section,
   .story-section,
   .team-section,
   .about-stats-section,
   .testimonials-section {
      padding-left: 24px;
      padding-right: 24px;
   }
   
   .mission-grid,
   .team-grid,
   .about-stats-grid,
   .testimonials-grid {
      grid-template-columns: 1fr;
   }
   
   .timeline-image {
      width: 140px;
      height: 140px;
   }
   
   .timeline-item {
      padding-left: 50px;
   }
   
   .av-chart {
      height: 140px;
   }
   
   .av-floating-stat {
      padding: 10px 16px;
   }
   
   .av-fs-number {
      font-size: 1.1rem;
   }
}

@media (max-width: 480px) {

    .about-hero-visual {
      height: 400px;
    }
    .about-hero-stats{
        width: 100%;
    }
   .about-badge {
      font-size: 0.8rem;
      padding: 4px 12px 4px 4px;
   }
   
   .ahs-number {
      font-size: 2.2rem;
   }
   
   .timeline-content h4 {
      font-size: 1.1rem;
   }
   
   .asc-number {
      font-size: 2rem;
   }
}
/* ============================================
   CONTACT PAGE - BALAJI COMPUTER ACADEMY
   ============================================ */

/* ============================================
   CONTACT HERO
   ============================================ */
.contact-hero {
   min-height: auto;
   background: var(--bg);
   position: relative;
   overflow: hidden;
   padding-top: 140px;
   padding-bottom: 60px;
      background: linear-gradient(to bottom,transparent,#d2caff,transparent);
}

.contact-hero-bg {
   position: absolute;
   inset: 0;
   background: var(--gradient-violet-glow);
   pointer-events: none;
}

.contact-hero-shape {
   position: absolute;
   border-radius: 50%;
   pointer-events: none;
   filter: blur(80px);
}

.contact-hero-shape.shape-1 {
   width: 450px;
   height: 450px;
   background: radial-gradient(circle, rgba(162, 155, 254, 0.2) 0%, transparent 70%);
   top: -100px;
   right: -100px;
   animation: floatShape 10s ease-in-out infinite;
}

.contact-hero-shape.shape-2 {
   width: 350px;
   height: 350px;
   background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
   bottom: 50px;
   left: -80px;
   animation: floatShape 12s ease-in-out infinite reverse;
}

.contact-hero-content {
   position: relative;
   z-index: 2;
   max-width: 700px;
}

.contact-badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: rgba(255, 255, 255, 0.9);
   border: 1px solid rgba(108, 92, 231, 0.216);
   border-radius: var(--radius-full);
   padding: 6px 16px 6px 6px;
   font-size: 0.88rem;
   color: var(--subtext);
   margin-bottom: 32px;
   backdrop-filter: blur(10px);
   box-shadow: var(--shadow-sm);
   opacity: 0;
   transform: translateY(20px);
}

.contact-hero h1 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2.8rem, 5vw, 4.5rem);
   font-weight: 500;
   line-height: 1.05;
   letter-spacing: -0.04em;
   color: var(--text);
   margin-bottom: 24px;
}

.contact-hero-desc {
   font-size: 1.1rem;
   color: var(--subtext);
   line-height: 1.7;
   max-width: 540px;
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info-section {
   padding: 40px 48px 60px;
}

.contact-info-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   max-width: 1200px;
   margin: 0 auto;
}

.contact-info-card {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 32px 24px;
   border: 1px solid rgba(108, 92, 231, 0.08);
   box-shadow: var(--shadow-md);
   text-align: center;
   transition: all 0.4s var(--ease-out);
}

.contact-info-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-md);
   border-color: rgba(108, 92, 231, 0.15);
}

.cic-icon {
   width: 56px;
   height: 56px;
   border-radius: 16px;
   background: rgba(108, 92, 231, 0.12);
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 16px;
   transition: transform 0.3s var(--ease-out);
}

.contact-info-card:hover .cic-icon {
   transform: scale(1.1);
}

.contact-info-card h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.05rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 8px;
}

.contact-info-card p {
   font-size: 0.88rem;
   color: var(--subtext);
   line-height: 1.6;
   margin-bottom: 14px;
}

.cic-link {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   color: var(--violet);
   font-size: 0.9rem;
   font-weight: 600;
   text-decoration: none;
   transition: gap 0.25s var(--ease-out);
}

.cic-link:hover {
   gap: 10px;
   color: var(--violet-dark);
}

.cic-link svg {
   transition: transform 0.25s var(--ease-out);
}

.cic-link:hover svg {
   transform: translateX(3px);
}

.cic-status {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
   font-weight: 600;
   color: #10B981;
}

.status-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: #10B981;
   animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
   0%, 100% { opacity: 1; transform: scale(1); }
   50% { opacity: 0.6; transform: scale(1.2); }
}

/* ============================================
   CONTACT MAIN SECTION
   ============================================ */
.contact-main-section {
   padding: 40px 48px 100px;
}

.contact-main-grid {
   display: grid;
   grid-template-columns: 1.1fr 0.9fr;
   gap: 48px;
   max-width: 1200px;
   margin: 0 auto;
   align-items: start;
}

/* Form */
.contact-form-wrapper {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 40px;
   border: 1px solid rgba(108, 92, 231, 0.1);
   box-shadow: var(--shadow-lg);
}

.form-header {
   margin-bottom: 32px;
}

.form-header .section-label {
   margin-bottom: 12px;
}

.form-header h2 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(1.6rem, 3vw, 2rem);
   font-weight: 600;
   letter-spacing: -0.03em;
   color: var(--text);
   margin-bottom: 8px;
}

.form-header p {
   font-size: 0.95rem;
   color: var(--subtext);
   line-height: 1.6;
}

.contact-form {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.form-group {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.form-group label {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 14px 18px;
   border: 1.5px solid rgba(108, 92, 231, 0.12);
   border-radius: var(--radius);
   font-family: "Poppins", sans-serif;
   font-size: 0.95rem;
   color: var(--text);
   background: var(--bg);
   transition: all 0.3s;
   outline: none;
   width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   border-color: var(--violet);
   box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: var(--subtext-light);
}

.form-group select {
   cursor: pointer;
   appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6589' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 16px center;
   padding-right: 44px;
}

.form-group textarea {
   resize: vertical;
   min-height: 120px;
}

.form-submit-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   background: var(--gradient-primary);
   color: #fff;
   padding: 16px 32px;
   border: none;
   border-radius: var(--radius-full);
   font-family: "Poppins", sans-serif;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s var(--ease-out);
   box-shadow: 0 8px 32px rgba(108, 92, 231, 0.4);
   margin-top: 8px;
   width: 100%;
}

.form-submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(108, 92, 231, 0.5);
}

.form-submit-btn svg {
   transition: transform 0.3s;
}

.form-submit-btn:hover svg {
   transform: translateX(4px) rotate(-10deg);
}

/* ============================================
   ADMIN CONTACT MESSAGES
   ============================================ */
.admin-messages-body {
   min-height: 100vh;
   background:
      radial-gradient(circle at top left, rgba(108, 92, 231, 0.16), transparent 34%),
      linear-gradient(180deg, #fbfaff 0%, #ffffff 58%);
}

.admin-shell {
   width: 100%;
   min-height: 100vh;
   padding: 48px 20px;
}

.admin-login-panel,
.admin-dashboard {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
}

.admin-login-panel {
   max-width: 460px;
   margin-top: 8vh;
   background: var(--surface);
   border: 1px solid rgba(108, 92, 231, 0.12);
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow-lg);
   padding: 34px;
}

.admin-brand {
   display: flex;
   gap: 16px;
   align-items: center;
   margin-bottom: 26px;
}

.admin-logo-mark {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 52px;
   height: 52px;
   flex: 0 0 52px;
   border-radius: 18px;
   background: var(--gradient-primary);
   color: #fff;
   font-weight: 800;
   box-shadow: 0 12px 30px rgba(108, 92, 231, 0.28);
}

.admin-brand h1,
.admin-dashboard-header h1 {
   color: var(--text);
   font-size: clamp(1.7rem, 4vw, 2.5rem);
   line-height: 1.15;
   font-weight: 700;
}

.admin-brand p,
.admin-dashboard-header p {
   color: var(--subtext);
   margin-top: 6px;
}

.admin-login-form {
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.admin-dashboard {
   background: rgba(255, 255, 255, 0.76);
   border: 1px solid rgba(108, 92, 231, 0.1);
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow-lg);
   padding: 34px;
   backdrop-filter: blur(18px);
}

.admin-dashboard-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   margin-bottom: 24px;
}

.admin-logout-link {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 44px;
   padding: 10px 18px;
   border-radius: var(--radius-full);
   background: var(--violet-soft);
   color: var(--violet-dark);
   text-decoration: none;
   font-weight: 700;
   transition: all 0.25s var(--ease-out);
}

.admin-logout-link:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-sm);
}

.admin-search-form {
   display: grid;
   grid-template-columns: minmax(0, 1fr) auto auto;
   gap: 12px;
   margin-bottom: 24px;
}

.admin-search-form input {
   min-width: 0;
   padding: 14px 18px;
   border: 1.5px solid rgba(108, 92, 231, 0.14);
   border-radius: var(--radius-full);
   font-family: "Poppins", sans-serif;
   color: var(--text);
   outline: none;
}

.admin-search-form input:focus {
   border-color: var(--violet);
   box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.08);
}

.admin-search-form button,
.admin-search-form a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border: none;
   border-radius: var(--radius-full);
   font-family: "Poppins", sans-serif;
   font-weight: 700;
   text-decoration: none;
   cursor: pointer;
}

.admin-search-form button {
   background: var(--gradient-primary);
   color: #fff;
}

.admin-search-form a {
   color: var(--violet-dark);
   background: var(--violet-soft);
}

.admin-alert,
.admin-empty-state {
   border-radius: var(--radius);
   padding: 16px 18px;
}

.admin-alert-error {
   color: #991b1b;
   background: #fee2e2;
   border: 1px solid rgba(239, 68, 68, 0.24);
   margin-bottom: 18px;
}

.admin-empty-state {
   background: var(--violet-muted);
   border: 1px dashed rgba(108, 92, 231, 0.24);
}

.admin-empty-state h2 {
   font-size: 1.15rem;
   margin-bottom: 4px;
}

.admin-empty-state p {
   color: var(--subtext);
}

.admin-message-list {
   display: grid;
   gap: 16px;
}

.admin-message-card {
   background: var(--surface);
   border: 1px solid rgba(108, 92, 231, 0.11);
   border-radius: var(--radius-lg);
   padding: 22px;
   box-shadow: var(--shadow-sm);
}

.admin-message-top {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 16px;
   margin-bottom: 14px;
}

.admin-message-top h2 {
   color: var(--text);
   font-size: 1.15rem;
   line-height: 1.3;
   font-weight: 700;
}

.admin-message-top span,
.admin-message-meta,
.admin-message-meta a {
   color: var(--subtext);
}

.admin-source-badge {
   display: inline-flex;
   align-items: center;
   white-space: nowrap;
   padding: 7px 12px;
   border-radius: var(--radius-full);
   background: rgba(108, 92, 231, 0.1);
   color: var(--violet-dark) !important;
   font-size: 0.78rem;
   font-weight: 700;
}

.admin-message-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 10px 18px;
   margin-bottom: 14px;
   font-size: 0.92rem;
}

.admin-message-meta a {
   text-decoration: none;
   word-break: break-word;
}

.admin-message-meta a:hover {
   color: var(--violet);
}

.admin-message-text {
   color: var(--text-light);
   line-height: 1.7;
   white-space: normal;
   overflow-wrap: anywhere;
}

@media (max-width: 768px) {
   .admin-shell {
      padding: 28px 14px;
   }

   .admin-login-panel,
   .admin-dashboard {
      padding: 24px 18px;
      border-radius: var(--radius-lg);
   }

   .admin-dashboard-header,
   .admin-message-top {
      flex-direction: column;
      align-items: flex-start;
   }

   .admin-search-form {
      grid-template-columns: 1fr;
   }

   .admin-search-form button,
   .admin-search-form a,
   .admin-logout-link {
      width: 100%;
   }
}

.form-submit-btn:disabled {
   cursor: not-allowed;
   opacity: 0.78;
   transform: none;
}

.contact-form-status {
   display: none;
   padding: 12px 16px;
   border-radius: var(--radius);
   font-size: 0.92rem;
   font-weight: 500;
   line-height: 1.5;
}

.contact-form-status.success,
.contact-form-status.error {
   display: block;
}

.contact-form-status.success {
   color: #166534;
   background: #dcfce7;
   border: 1px solid rgba(34, 197, 94, 0.24);
}

.contact-form-status.error {
   color: #991b1b;
   background: #fee2e2;
   border: 1px solid rgba(239, 68, 68, 0.24);
}

/* Map & FAQ */
.contact-map-wrapper {
   display: flex;
   flex-direction: column;
   gap: 24px;
}

.map-container {
   position: relative;
   height: 320px;
   border-radius: var(--radius-xl);
   overflow: hidden;
   box-shadow: var(--shadow-md);
   box-shadow: var(--shadow-lg);

}

.map-container iframe {
   width: 100%;
   height: 100%;
   border: none;
}

.map-overlay {
   position: absolute;
   bottom: 20px;
   left: 20px;
   right: 20px;
}

.map-card {
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   border-radius: var(--radius);
   padding: 14px 18px;
   display: flex;
   align-items: center;
   gap: 12px;
   box-shadow: 0 4px 16px rgba(0,0,0,0.1);
   border: 1px solid rgba(108, 92, 231, 0.1);
}

.map-card svg {
   flex-shrink: 0;
}

.mc-title {
   display: block;
   font-family: "Poppins", sans-serif;
   font-size: 0.9rem;
   font-weight: 700;
   color: var(--text);
}

.mc-address {
   display: block;
   font-size: 0.82rem;
   color: var(--subtext);
}

/* Quick FAQ */
.quick-faq {
   background: var(--surface);
   border-radius: var(--radius-xl);
   padding: 28px;
   border: 1px solid rgba(108, 92, 231, 0.08);
   box-shadow: var(--shadow-sm);
   box-shadow: var(--shadow-lg);

}

.quick-faq h4 {
   font-family: "Poppins", sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--text);
   margin-bottom: 16px;
   letter-spacing: -0.01em;
}

.qf-item {
   border-bottom: 1px solid rgba(108, 92, 231, 0.08);
}

.qf-item:last-child {
   border-bottom: none;
}

.qf-question {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 16px 0;
   background: none;
   border: none;
   cursor: pointer;
   font-family: "Poppins", sans-serif;
   font-size: 0.95rem;
   font-weight: 600;
   color: var(--text);
   text-align: left;
   transition: color 0.2s;
}

.qf-question:hover {
   color: var(--violet);
}

.qf-question svg {
   flex-shrink: 0;
   color: var(--violet);
   transition: transform 0.3s var(--ease-spring);
}

.qf-item.active .qf-question svg {
   transform: rotate(45deg);
}

.qf-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s var(--ease-out), padding 0.4s;
}

.qf-item.active .qf-answer {
   max-height: 200px;
   padding-bottom: 16px;
}

.qf-answer p {
   font-size: 0.9rem;
   color: var(--subtext);
   line-height: 1.7;
   padding-right: 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
   max-width: 1100px;
   margin: 0 auto 100px;
   padding: 0 48px;
}

.cta-content {
   background: var(--gradient-primary);
   border-radius: 40px;
   padding: 80px 64px;
   text-align: center;
   position: relative;
   overflow: hidden;
}

.cta-content::before {
   content: '';
   position: absolute;
   top: -100px;
   left: -100px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
   pointer-events: none;
}

.cta-content h2 {
   font-family: "Poppins", sans-serif;
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 600;
   letter-spacing: -0.04em;
   color: #fff;
   margin-bottom: 16px;
   position: relative;
   z-index: 1;
}

.cta-content p {
   color: rgba(255, 255, 255, 0.75);
   font-size: 1.1rem;
   max-width: 500px;
   margin: 0 auto 32px;
   position: relative;
   z-index: 1;
   line-height: 1.7;
}

.btn-white {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: #fff;
   color: var(--violet-dark);
   padding: 14px 32px;
   border-radius: var(--radius-full);
   font-size: 1rem;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s var(--ease-out);
   position: relative;
   z-index: 1;
   box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn-white:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-white svg {
   transition: transform 0.3s var(--ease-out);
}

.btn-white:hover svg {
   transform: rotate(15deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
   .contact-info-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   
   .contact-main-grid {
      grid-template-columns: 1fr;
   }
   
   .contact-map-wrapper {
      order: -1;
   }
   
   .map-container {
      height: 280px;
   }
}

@media (max-width: 768px) {
   .contact-hero {
      padding-top: 120px;
      padding-bottom: 50px;
   }
   
   .contact-hero h1 {
      font-size: clamp(2.2rem, 8vw, 3.5rem);
   }
   
   .breadcrumb {
      margin-bottom: 24px;
   }
   
   .contact-info-section,
   .contact-main-section {
      padding-left: 24px;
      padding-right: 24px;
   }
   
   .contact-info-grid {
      grid-template-columns: 1fr;
   }
   
   .contact-form-wrapper {
      padding: 28px 24px;
   }
   
   .form-row {
      grid-template-columns: 1fr;
   }
   
   .cta-section {
      padding: 0 24px;
      margin-bottom: 60px;
   }
   
   .cta-content {
      padding: 48px 32px;
      border-radius: 24px;
   }
   
   .map-container {
      height: 240px;
   }
}

@media (max-width: 480px) {
   .contact-badge {
      font-size: 0.8rem;
      padding: 4px 12px 4px 4px;
   }
   
   .contact-info-card {
      padding: 24px 20px;
   }
   
   .quick-faq {
      padding: 20px;
   }
   
   .qf-question {
      font-size: 0.9rem;
   }
}
