/* ====================================
   Global Styles & Reset
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2c3e50;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ====================================
   Navigation Header
   ==================================== */
.navbar-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 0;
}

.brand-logo {
    width: 50px;
    height: 50px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand .brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00a8e8;
    margin: 0;
}

.navbar-brand .brand-tagline {
    font-size: 0.75rem;
    color: #5a6c7d;
    font-weight: 500;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #00a8e8;
}

.nav-btn-outline {
    border: 2px solid #00a8e8;
    color: #00a8e8;
}

.nav-btn-outline:hover {
    background: #00a8e8;
    color: #ffffff;
}

.nav-btn-primary {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    color: #ffffff;
    border: none;
}

.nav-btn-primary:hover {
    background: linear-gradient(135deg, #0083b0 0%, #006891 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 131, 176, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ====================================
   Hero Banner Section
   ==================================== */
.hero-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-highlight {
    color: #00a8e8;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 131, 176, 0.3);
    color: #ffffff;
}

.btn-hero-outline {
    background: transparent;
    color: #00a8e8;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #00a8e8;
    display: inline-block;
}

.btn-hero-outline:hover {
    background: #00a8e8;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ====================================
   Dashboard Preview
   ==================================== */
.dashboard-preview {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.dashboard-frame {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 8px solid #2c3e50;
}

.dashboard-header {
    background: #00a8e8;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.125rem;
}

.dashboard-title {
    margin-left: auto;
    font-weight: 600;
    font-size: 1rem;
}

.dashboard-content {
    display: flex;
    min-height: 400px;
}

.dashboard-sidebar {
    width: 220px;
    background: #f8fafc;
    padding: 20px 0;
    border-right: 1px solid #e5e7eb;
}

.sidebar-item {
    padding: 12px 25px;
    color: #5a6c7d;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-item.active {
    background: #00a8e8;
    color: #ffffff;
    font-weight: 600;
}

.sidebar-item:hover:not(.active) {
    background: #e5e7eb;
}

.dashboard-main {
    flex: 1;
    padding: 3px;
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.stat-icon.purple { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.stat-icon.yellow { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); }
.stat-icon.red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.stat-icon.teal { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.3;
}

/* User Images Around Dashboard */
.user-img {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.user-img-1 {
    top: 20px;
    /* left: -40px; */
    left: -100px;
}

.user-img-2 {
    top: 20px;
    /* right: -40px; */
    right: -100px;
}

.user-img-3 {
    bottom: 40px;
    /* left: -40px; */
    left: -100px;
}

.user-img-4 {
    bottom: 40px;
    /* right: -40px; */
    right: -100px;
}

/* ====================================
   Why Zamflux Section
   ==================================== */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 50%, #e1f5fe 100%);
    position: relative;
}

.header-content {
    text-align: left;
    margin-bottom: 50px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.brand-name {
    color: #00a8e8;
}

.subtitle {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
    max-width: 900px;
    font-weight: 400;
}

.tagline {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 600;
    color: #34495e;
    margin: 60px 0 70px;
    line-height: 1.4;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

.feature-card {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    border-radius: 25px;
    padding: 40px 45px;
    box-shadow: 0 10px 30px rgba(0, 131, 176, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: rotate3d(1, 1, 0, 8deg) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 131, 176, 0.35);
}

.feature-card:nth-child(1):hover {
    transform: rotate3d(-0.5, 1, 0, -8deg) scale(1.02);
}

.feature-card:nth-child(2):hover {
    transform: rotate3d(0.5, 1, 0, 8deg) scale(1.02);
}

.feature-card:nth-child(3):hover {
    transform: rotate3d(-0.5, -1, 0, -6deg) scale(1.02);
}

.feature-card:nth-child(4):hover {
    transform: rotate3d(0.5, -1, 0, 6deg) scale(1.02);
}

.feature-card:nth-child(5):hover {
    transform: rotate3d(-1, 0.3, 0, -7deg) scale(1.02);
}

.feature-card:nth-child(6):hover {
    transform: rotate3d(1, 0.3, 0, 7deg) scale(1.02);
}

.card-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* ====================================
   Key Features Section
   ==================================== */
.features-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #00a8e8;
    margin-bottom: 15px;
    text-align: left;
}

.section-subtitle {
    font-size: 1.375rem;
    color: #6b7280;
    margin-bottom: 60px;
    text-align: left;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
}

.feature-box {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 2px solid #00a8e8;
    border-radius: 25px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4db 0%, #0083b0 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 131, 176, 0.15);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 131, 176, 0.25);
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.brand-box {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}

.brand-box::before {
    display: none;
}

.brand-content {
    text-align: center;
    color: #ffffff;
}

.brand-content svg {
    margin-bottom: 15px;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.brand-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
}

/* ====================================
   Lifetime License Section
   ==================================== */
.license-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #0a4557 0%, #154656 50%, #0d3d4f 100%);
    position: relative;
}

.license-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.license-highlight {
    color: #4dd0e1;
}

.license-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.services-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(77, 208, 225, 0.3);
    border-radius: 40px;
    padding: 50px 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon {
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(77, 208, 225, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: rgba(77, 208, 225, 0.15);
    border-color: #4dd0e1;
    transform: scale(1.05);
}

.service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.services-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.cta-badge {
    text-align: center;
    margin-top: 50px;
}

.cta-text {
    display: inline-block;
    background: linear-gradient(135deg, #0a3d4f 0%, #0d5368 100%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid #4dd0e1;
}

/* ====================================
   How It Works Section
   ==================================== */
.how-it-works-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9ff 50%, #e0f7fa 100%);
    position: relative;
    overflow: hidden;
}

.section-tagline {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-main-title .highlight {
    color: #00a8e8;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 80px;
    font-weight: 500;
}

/* Two-Row Grid Layout */
.workflow-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.workflow-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.workflow-row:last-child {
    margin-bottom: 0;
}

/* Workflow Item */
.workflow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 240px;
}

/* Step Number Badge - Positioned Above Card */
.step-badge {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 3px solid #26b9d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #26b9d6;
    font-size: 1.125rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(38, 185, 214, 0.25);
    z-index: 15;
}

/* Workflow Card */
.workflow-card-new {
    background: linear-gradient(135deg, #26b9d6 0%, #1ca8c4 100%);
    border-radius: 24px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(28, 168, 196, 0.25);
    transition: all 0.4s ease;
    position: relative;
    padding: 25px 20px;
    cursor: pointer;
}

.workflow-card-new:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 45px rgba(28, 168, 196, 0.35);
}

/* Card Icon Container - Custom designs for each step */
.workflow-card-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
}

/* Step 1: Laptop/Demo Design */
.card-design-demo {
    width: 130px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.demo-screen {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.demo-base {
    width: 140px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Step 2: Payment Card Design */
.card-design-payment {
    width: 140px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.payment-line.short {
    width: 60%;
}

.payment-button {
    background: #ffffff;
    color: #26b9d6;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    margin-top: 4px;
}

/* Step 3: Branding/Document Design */
.card-design-brand {
    width: 140px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px;
    position: relative;
}

.brand-header {
    height: 18px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    margin-bottom: 8px;
}

.brand-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    height: calc(100% - 26px);
}

.brand-block {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.brand-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #26b9d6;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Step 4: Server Design */
.card-design-server {
    width: 140px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.server-rack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.server-unit {
    height: 28px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px;
    gap: 4px;
}

.server-light {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.server-label {
    text-align: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Step 5: Training/Dashboard Design */
.card-design-training {
    width: 140px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px;
}

.training-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    height: 100%;
}

.training-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.training-block {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    flex: 1;
}

/* Step 6: Go Live Design */
.card-design-live {
    width: 140px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    position: relative;
}

.live-window {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.live-header {
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 4px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.live-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4757;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-pulse {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.live-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.live-icon i {
    color: #26b9d6;
    font-size: 1.1rem;
}

/* Workflow Label Below Card */
.workflow-label-new {
    text-align: center;
    font-size: 0.9375rem;
    color: #2c3e50;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 20px;
}

/* Dotted Connector Lines - Between Cards in Same Row */
.connector-line {
    position: absolute;
    height: 2px;
    background-image: repeating-linear-gradient(
        90deg,
        #26b9d6 0px,
        #26b9d6 12px,
        transparent 12px,
        transparent 24px
    );
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Curved SVG Connectors */
.workflow-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connector-path {
    stroke: #26b9d6;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 12, 12;
    opacity: 0.7;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 50%, #e0f7fa 100%);
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-highlight {
    color: #00a8e8;
}

.btn-cta-large {
    display: inline-block;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    color: #ffffff;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 131, 176, 0.25);
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 131, 176, 0.35);
    color: #ffffff;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: #2c3e50;
    padding: 60px 0 40px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #00a8e8;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #00a8e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0083b0;
    transform: translateY(-3px);
}

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

.footer-copyright p {
    margin: 0;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-brand-text {
    text-align: left;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a8e8;
    margin: 0;
    line-height: 1;
}

.footer-brand-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0;
}

.footer-contact {
    text-align: right;
}

.footer-address,
.footer-phone,
.footer-email {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 8px 0;
    font-weight: 500;
}

.footer-email {
    color: #00a8e8;
}

/* ====================================
   Responsive Design - Additional
   ==================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .main-title {
        font-size: 2.75rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .cards-grid {
        gap: 30px 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-box {
        grid-column: 1 / -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .user-img {
        width: 70px;
        height: 70px;
    }

    .section-main-title {
        font-size: 2.5rem;
    }

    .workflow-diagram {
        gap: 15px;
    }

    .workflow-connector {
        width: 40px;
    }

    .cta-title {
        font-size: 2.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        text-align: left;
    }

    .footer-brand {
        justify-content: flex-start;
    }

    .footer-contact {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        padding-top: 20px;
    }

    .nav-link {
        text-align: center;
    }

    .hero-banner {
        padding: 60px 0 80px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 300px;
    }

    .dashboard-content {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

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

    .user-img {
        width: 60px;
        height: 60px;
    }

    .user-img-1,
    .user-img-3 {
        left: 10px;
    }

    .user-img-2,
    .user-img-4 {
        right: 10px;
    }

    .main-title {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1.25rem;
        margin: 40px 0 50px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .brand-box {
        grid-column: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .license-subtitle {
        font-size: 1.125rem;
    }

    .services-card {
        padding: 35px 30px;
    }

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

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

    .section-subtitle-center {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    .workflow-diagram {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .workflow-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, transparent 0%, #00a8e8 50%, transparent 100%);
        background-image: repeating-linear-gradient(180deg, #00a8e8 0, #00a8e8 10px, transparent 10px, transparent 20px);
        margin: 0;
    }

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

    .btn-cta-large {
        padding: 18px 50px;
        font-size: 1.25rem;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

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

    .footer-brand-name {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .navbar-brand .brand-name {
        font-size: 1.5rem;
    }

    .navbar-brand .brand-tagline {
        font-size: 0.625rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .dashboard-frame {
        border-width: 4px;
    }

    .user-img {
        display: none;
    }

    .main-title {
        font-size: 1.875rem;
    }

    .feature-card {
        padding: 25px 30px;
    }

    .card-text {
        font-size: 1.125rem;
    }

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

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

    .services-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1.125rem;
        padding: 15px 35px;
    }

    .section-main-title {
        font-size: 1.75rem;
    }

    .section-subtitle-center {
        font-size: 0.9375rem;
    }

    .workflow-card {
        width: 140px;
        height: 120px;
    }

    .workflow-icon {
        font-size: 2rem;
    }

    .workflow-label {
        font-size: 0.8125rem;
        max-width: 140px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .btn-cta-large {
        padding: 16px 40px;
        font-size: 1.125rem;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand svg {
        width: 60px;
        height: 60px;
    }

    .footer-brand-name {
        font-size: 1.75rem;
    }

    .footer-brand-tagline {
        font-size: 0.75rem;
    }

    .footer-address,
    .footer-phone,
    .footer-email {
        font-size: 0.9375rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

@media (max-width: 1400px) {
    .workflow-row {
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .workflow-row {
        gap: 30px;
    }

    .workflow-card-new {
        width: 180px;
        height: 180px;
    }

    .workflow-card-icon {
        height: 100px;
    }

    .card-design-demo,
    .card-design-payment,
    .card-design-brand,
    .card-design-server,
    .card-design-training,
    .card-design-live {
        width: 120px;
        height: 85px;
    }
}

@media (max-width: 992px) {
    .section-main-title {
        font-size: 2.5rem;
    }

    .section-subtitle-center {
        margin-bottom: 60px;
    }

    .workflow-row {
        flex-wrap: wrap;
        gap: 50px 40px;
        justify-content: center;
    }

    .workflow-item {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0 80px;
    }

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

    .section-subtitle-center {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    .workflow-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .workflow-connectors {
        display: none;
    }

    .connector-line {
        display: none;
    }

    .workflow-card-new {
        width: 220px;
        height: 220px;
    }

    .workflow-card-icon {
        height: 120px;
    }

    .card-design-demo,
    .card-design-payment,
    .card-design-brand,
    .card-design-server,
    .card-design-training,
    .card-design-live {
        width: 140px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .section-main-title {
        font-size: 1.75rem;
    }

    .section-subtitle-center {
        font-size: 0.9375rem;
        margin-bottom: 40px;
    }

    .workflow-card-new {
        width: 200px;
        height: 200px;
    }

    .step-badge {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .workflow-label-new {
        font-size: 0.875rem;
        margin-top: 15px;
    }
}

.main-container {
    background: linear-gradient(135deg, #e8d5f2 0%, #dceef9 30%, #c8f0f0 60%, #b8e8e8 100%);
    min-height: 100vh;
    padding: 60px 20px;
}

.header-section {
    margin-bottom: 60px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #00a8cc;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards-container {
    max-width: 1100px;
    margin: 0 auto;
}

.discipline-card {
    background: #fff;
    border-radius: 16.85px;
    padding: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 3px solid #FFFFFF;
    height: 62.5px;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    opacity: 1;
}

.discipline-card:hover {
    transform: perspective(1000px) rotateX(-8deg) rotateY(8deg) translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.card-text {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    z-index: 1;
    letter-spacing: 0.3px;
    padding: 0 20px;
}

/* Card Colors */
.card-engineering {
    background: linear-gradient(135deg, #f77737 0%, #e86129 100%);
    border-color: #FFFFFF;
}

.card-arts {
    background: linear-gradient(135deg, #8c7fc7 0%, #7265b5 100%);
    border-color: #FFFFFF;
}

.card-deemed {
    background: linear-gradient(135deg, #ec6eb7 0%, #d95ba0 100%);
    border-color: #FFFFFF;
}

.card-nursing {
    background: linear-gradient(135deg, #26d07c 0%, #1fba6c 100%);
    border-color: #FFFFFF;
}

.card-pharmacy {
    background: linear-gradient(135deg, #f25f7c 0%, #e14867 100%);
    border-color: #FFFFFF;
}

.card-physiotherapy {
    background: linear-gradient(135deg, #1fc1c1 0%, #18a9a9 100%);
    border-color: #FFFFFF;
}

.card-architecture {
    background: linear-gradient(135deg, #9a8bc7 0%, #8577b5 100%);
    border-color: #FFFFFF;
}

.card-law {
    background: linear-gradient(135deg, #e8388f 0%, #d02c7d 100%);
    border-color: #FFFFFF;
}

.card-occupational {
    background: linear-gradient(135deg, #4a8fdd 0%, #3d7bc7 100%);
    border-color: #FFFFFF;
}

.card-pharmacy-2 {
    background: linear-gradient(135deg, #1fc1c1 0%, #18a9a9 100%);
    border-color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .col-lg-4.offset-lg-1 {
        margin-left: 0 !important;
    }

    .discipline-card {
        padding: 0 25px;
        height: 60px;
    }

    .card-text {
        font-size: 0.98rem;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 40px 15px;
    }

    .main-title {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .discipline-card {
        padding: 0 15px;
        height: 58px;
    }

    .card-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.5rem;
    }

    .header-section {
        margin-bottom: 40px;
    }

    .discipline-card {
        padding: 0 15px;
        height: 55px;
    }

    .card-text {
        font-size: 0.9rem;
    }
}


.hero-section {
    padding: 80px 0;
}

.content-card {
    background: white;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.blur-circle-left {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: #fce7f3;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.blur-circle-right {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: #dbeafe;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.content-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.text-cyan {
    color: var(--cyan-400);
}

.content-card p {
    color: #6b7280;
    font-size: 16px;
    position: relative;
    z-index: 10;
}

/* Illustration */
.illustration-container {
    width: 320px;
    height: 260px;
    background: linear-gradient(135deg, #dbeafe, #e9d5ff);
    border-radius: 32px;
    position: relative;
    margin: 60px auto 0;
}

.float-element {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chat-dots {
    top: 30px;
    left: 30px;
    background: white;
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-dots span {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.message-box {
    top: 25px;
    right: 48px;
    background: #60a5fa;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    animation-delay: 0.5s;
}

.message-line {
    width: 64px;
    height: 8px;
    background: white;
    border-radius: 4px;
    margin-bottom: 4px;
}

.message-line:nth-child(2) { width: 48px; }
.message-line:nth-child(3) { width: 56px; }

.edit-icon {
    bottom: 64px;
    right: 32px;
    background: #f87171;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(248, 113, 113, 0.4);
    animation-delay: 1s;
}

.stars-box {
    bottom: 48px;
    left: 48px;
    background: var(--blue-500);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    animation-delay: 1.5s;
}

.star {
    color: #fcd34d;
    font-size: 12px;
    margin-right: 2px;
}

.character {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.character-head {
    width: 96px;
    height: 96px;
    background: linear-gradient(180deg, #1e3a8a, #1e40af);
    border-radius: 50%;
    position: relative;
    margin: 0 auto 8px;
}

.character-eye {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 35%;
}

.character-eye.left { left: 25%; }
.character-eye.right { right: 25%; }

.character-mouth {
    width: 32px;
    height: 4px;
    background: white;
    border-radius: 2px;
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.character-hair {
    width: 48px;
    height: 32px;
    background: #1e3a8a;
    border-radius: 50% 50% 0 0;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.character-headset {
    width: 64px;
    height: 8px;
    background: #fed7aa;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: -32px;
}

.character-body {
    width: 128px;
    height: 160px;
    background: linear-gradient(180deg, #1e3a8a, #1e40af);
    border-radius: 80px 80px 0 0;
    position: relative;
}

.character-arm {
    width: 32px;
    height: 48px;
    background: #fed7aa;
    border-radius: 50%;
    position: absolute;
    top: 16px;
}

.character-arm.left { left: -24px; }
.character-arm.right { right: -24px; }

.character-laptop {
    width: 80px;
    height: 48px;
    background: #374151;
    border-radius: 8px 8px 0 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.decorative-leaf {
    position: absolute;
    bottom: 32px;
    left: 16px;
    width: 48px;
    height: 64px;
    background: #93c5fd;
    border-radius: 50%;
    opacity: 0.4;
}

/* Form Section */
.form-card {
    /* background: linear-gradient(135deg, var(--cyan-400), var(--blue-600)); */
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.form-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control, .form-control:focus {
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.5);
}

textarea.form-control {
    resize: none;
    height: 96px;
}

.btn-submit {
    width: 100%;
    background: var(--blue-500);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-submit:hover {
    background: var(--blue-600);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}





