/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1c1c1c;
    background: #000000;
    padding-top: 80px; /* Account for fixed navigation */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}
.margintop10 {
    margin-top: 10px !important;
}
/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    padding: 1.25rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
}

.top-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #845EC2 0%, #D65DB1 20%, #FF6F91 40%, #FF9671 60%, #FFc75F 80%, #F9F871 100%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-text {
    display: flex;
    height: 60px;
    position: relative;
    align-items: center;
}

.logo-text::after {
    /* content: '®'; */
    font-size: 0.7rem;
    color: #6B7280;
    position: absolute;
    top: 8px;
    right: -12px;
    font-weight: 400;
}

.btn-back-home {
    background: linear-gradient(135deg, #845EC2 0%, #D65DB1 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-back-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-back-home:hover::before {
    left: 100%;
}

.btn-back-home:hover {
    /* background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%); */
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-back-home:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #845EC2 0%, #D65DB1 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(132, 94, 194, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: auto;
    width: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    /* background: linear-gradient(135deg, #D65DB1 0%, #FF6F91 100%); */
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(132, 94, 194, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(132, 94, 194, 0.4);
}

.btn-large {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    min-width: 280px;
    box-shadow: 0 12px 35px rgba(132, 94, 194, 0.4);
}

.btn-large:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 45px rgba(132, 94, 194, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #FF9671 0%, #FFc75F 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(255, 150, 113, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: auto;
    width: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    /* background: linear-gradient(135deg, #059669 0%, #047857 100%); */
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 150, 113, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 150, 113, 0.4);
}

.btn-outline {
    background: transparent;
    color: #845EC2;
    border: 2px solid #845EC2;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: auto;
    width: auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #845EC2 0%, #D65DB1 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    background: transparent;
    color: white;
    transform: translateY(-4px) scale(1.05);
    border-color: #845EC2;
    box-shadow: 0 12px 30px rgba(132, 94, 194, 0.4);
}

.btn-outline:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(132, 94, 194, 0.4);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sticky-cta img {
    width: 30px;
    height: 30px;
}
.sticky-cta.visible {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #845EC2 0%, #D65DB1 20%, #FF6F91 40%, #FF9671 60%, #FFc75F 80%, #F9F871 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Trust Logos */
.trust-logos {
    margin-top: 3rem;
    text-align: center;
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    background: #FFF;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.logo-item img {
    width: auto;
    height: 45px;
}

.company-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.more-logos {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1c1c1c;
    background: rgb(255 255 255 / 20%);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Countdown Timer */
.countdown-container {
    margin: 2rem 0;
}

.countdown-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.countdown-text img {
    width: 30px;
    height: 30px;
    vertical-align: top;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-timer.small {
    gap: 0.5rem;
}

.countdown-timer.small .time-unit {
    padding: 8px 12px;
}

.countdown-timer.small .time-unit span {
    font-size: 1.2rem;
}

.countdown-timer.small .time-unit label {
    font-size: 0.8rem;
}

.time-unit {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.time-unit label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Scarcity Block */
.scarcity-block {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.scarcity-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.scarcity-content {
    position: relative;
    z-index: 2;
}

.urgency-badge {
    display: inline-block;
    border: 2px dashed #333;
    color: #333;
    padding: 8px 15px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.urgency-badge img {
    width: 30px;
    height: auto;
    vertical-align: middle;
}
.scarcity-content h2 {
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.scarcity-content p {
    color: #2d3436;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 50px 0;
    background: #FFFFFF;
}

.section-title {
    text-align: center;
    background: linear-gradient(135deg, #D65DB1 0%, #845EC2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-icon img {
    width: 60px;
    height: 60px;
}

.course-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.course-features li {
    color: #1c1c1c;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.course-features li:before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.courses-cta {
    text-align: center;
}

/* Value Section */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #1c1c1c;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
}

.value-icon img {
    width: 60px;
    height: 60px;
}

/* Founder Section */
.founder-section {
    background: #FFFFFF;
    position: relative;
    padding: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 4rem;
}
.founder-text {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.founder-content:last-child {
    margin-bottom: 0;
}

.founder-content-reverse {
    grid-template-columns: 1fr 1fr;
}

.founder-content-reverse .founder-text {
    order: 1;
}

.founder-content-reverse .founder-media {
    order: 2;
}

.video-container {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.video-container iframe {
    display: block;
    border-radius: 12px;
}

.founder-image-placeholder {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.founder-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.founder-image-content {
    text-align: center;
    padding: 2rem;
}

.founder-large-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder.large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
}
.avatar-placeholder.large img {
    width: 90px;
    height: 90px;
}

.founder-quote-highlight {
    color: white;
}

.founder-quote-highlight h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-quote-highlight p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.play-button {
    position: absolute;
    z-index: 3;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.video-overlay h3 {
    margin-bottom: 0.5rem;
}

.founder-quote blockquote {
    font-size: 1rem;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.6;
}

.founder-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.avatar-placeholder img {
    width: 60px;
    height: 60px;
}

.founder-details h4 {
    margin-bottom: 0.25rem;
    color: #000000;
}

.founder-details p {
    margin-bottom: 0.5rem;
}

.founder-credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.founder-credentials span {
    background: rgba(102, 126, 234, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #667eea;
}

/* Features Section */
.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    margin-top: 0.25rem;
}

.feature-icon img {
    width: 50px;
    height: 50px;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: #667eea;
}

.lms-mockup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
}

.mockup-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-item {
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #10B981;
    color: #1c1c1c;
}

/* Pricing Section */
.pricing-section {
    background: #FFFFFF;
}

.pricing-countdown {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-countdown .countdown-text {
    color: #DC2626;
    font-weight: 600;
    font-size: 1.2rem;
}

.pricing-countdown .countdown-timer {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    backdrop-filter: blur(10px);
}

.pricing-countdown .time-unit {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    color: #f83636;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    position: relative;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 3px solid #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.user-count {
    font-size: 1.1rem;
    color: #1c1c1c;
    margin-top: 0.5rem;
}

.plan-pricing {
    margin-bottom: 2rem;
}

.price-option {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.duration {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 0.25rem;
}

.per-user {
    font-size: 0.9rem;
    color: #1c1c1c;
}

.pricing-scope {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    border-left: 3px solid #10B981;
}

.pricing-scope small {
    color: #10B981;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.custom-scope {
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.custom-scope small {
    color: #667eea;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* Test Product Styles */
.test-product-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border: 2px dashed #F59E0B;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    margin: 2rem auto;
    backdrop-filter: blur(10px);
    position: relative;
    animation: pulse 2s infinite;
    display: none; /* Hidden by default */
    text-align: center;
}

.test-product-card.visible {
    display: block; /* Show when visible class is added */
}

.test-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
        transform: scale(1.02);
    }
}

/* Custom Quote Section */
.custom-quote-section {
    margin-top: 3rem;
    text-align: center;
}

.custom-quote-card {
    background: #FFF;
    border: 2px dashed #845EC2;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}
.custom-quote-card h3 img {
    width: 30px;
    height: 30px;
    vertical-align: text-bottom;
}
/* Quote Form Styles */
.quote-form {
    text-align: left;
    margin-top: 1.5rem;
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
}

.quote-form label {
    display: block;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    color: #1c1c1c;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(28, 28, 28, 0.5);
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-actions button {
    min-width: 120px;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
}

.offer-badge {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.offer-badge img {
    width: 60px;
    height: 60px;
}
/* Special styling for money-back guarantee */
.offer-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(132, 94, 194, 0.4), rgba(214, 93, 177, 0.4));
    border: 1px solid rgba(132, 94, 194, 0.4);
}

.offer-item:nth-child(1) .offer-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.offer-item:nth-child(1) h3 {
    color: #1c1c1c;
}

/* Special styling for WhatsApp community */
.offer-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(132, 94, 194, 0.4), rgba(214, 93, 177, 0.4));
    border: 1px solid rgba(132, 94, 194, 0.4);
}

.offer-item:nth-child(2) .offer-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.offer-item:nth-child(2) h3 {
    color: #1c1c1c;
}

/* Special styling for limited time pricing */
.offer-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(132, 94, 194, 0.4), rgba(214, 93, 177, 0.4));
    border: 1px solid rgba(132, 94, 194, 0.4);
}

.offer-item:nth-child(3) .offer-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.offer-item:nth-child(3) h3 {
    color: #1c1c1c;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
    border: 2px solid rgba(102, 126, 234, 0.2);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.4);
}

.testimonial-item:hover::before {
    transform: scaleY(1);
}

.testimonial-item .company-name {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.testimonial-item p {
    color: #1c1c1c;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
    position: relative;
}

.testimonial-item p::before {
    content: '"';
    font-size: 2rem;
    color: #667eea;
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.testimonial-item p::after {
    content: '"';
    font-size: 2rem;
    color: #667eea;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: serif;
}

.testimonial-author {
    font-style: italic;
    color: #845EC2;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.25rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .testimonial-item .company-name {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .testimonial-item p {
        font-size: 0.95rem;
    }
}

/* FAQ Section */
.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.4);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-color: #667eea;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #1c1c1c;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-toggle {
    font-size: 30px;
    line-height: 24px;
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #667eea;
    width: 32px;
    height: 32px;
    border: 2px solid #667eea;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg) scale(1.1);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.faq-answer {
    padding: 0 2rem 1.75rem;
    display: none;
    color: #1c1c1c;
    line-height: 1.7;
    font-size: 1rem;
    animation: fadeInUp 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq-list {
        display: block;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.5rem;
    }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #845EC2 0%, #D65DB1 20%, #FF6F91 40%, #FF9671 60%, #FFc75F 80%, #F9F871 100%);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    color: #1c1c1c;
    margin: auto;
    padding: 2rem;
    border-radius: 12px;
    width: 95%;
    max-width: 800px;
    text-align: center;
    position: absolute;
    max-height: 80vh;
    height: fit-content;
    overflow-y: auto;
    inset: 0;
}
.Custom_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.Custom_heading img {
    width: 40px;
    height: 40px;
}
.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #1c1c1c;
}

.close:hover {
    color: #000000;
}

.demo-link-info p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Customer Details Modal Styles */
.customer-details-modal {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.customer-form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.customer-form-header h2 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}
.customer-form-header h2 img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
}
.customer-form-header p {
    color: #6B7280;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.selected-plan-info {
    margin-top: 1rem;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.customer-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-section h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}
.form-section h3 img {
    width: 30px;
    height: 30px;
}

.customer-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.customer-form label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
    text-align: left;
}

.customer-form input,
.customer-form select,
.customer-form textarea {
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.customer-form input:focus,
.customer-form select:focus,
.customer-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.customer-form input::placeholder,
.customer-form textarea::placeholder {
    color: #9CA3AF;
}

.customer-form small {
    color: #6B7280;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    text-align: left;
}

.terms-section {
    background: rgba(102, 126, 234, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
}

.terms-text {
    flex: 1;
}

.terms-text strong {
    display: block;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.terms-text small {
    color: #6B7280;
    line-height: 1.4;
}

.terms-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.terms-text a:hover {
    text-decoration: underline;
}

.customer-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.customer-form .form-actions button {
    min-width: 160px;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .customer-details-modal {
        width: 98%;
        max-height: 95vh;
    }
    
    .customer-form-header h2 {
        font-size: 1.6rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .customer-form .form-actions {
        flex-direction: column;
    }
    
    .customer-form .form-actions button {
        width: 100%;
    }
    
    .plan-badge {
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }
    
    .trust-logos {
        margin-top: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .time-unit span {
        font-size: 1.2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .founder-content-reverse {
        grid-template-columns: 1fr;
    }
    
    .founder-content-reverse .founder-text,
    .founder-content-reverse .founder-media {
        order: unset;
    }
    
    .video-container {
        margin-bottom: 1rem;
    }
    
    .founder-image-placeholder {
        height: 250px;
    }
    
    .founder-image-content {
        padding: 1.5rem;
    }
    
    .avatar-placeholder.large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .founder-quote-highlight h3 {
        font-size: 1.1rem;
    }
    
    .founder-quote blockquote {
        font-size: 1rem;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .logos-container {
        gap: 1rem;
    }
    
    .logo-item {
        padding: 0.4rem 0.8rem;
        min-height: 45px;
    }
}

/* Footer Styles */
.footer {
    background: #FFFFFF;
    color: #1c1c1c;
    padding: 60px 0 20px;
    border-top: 3px solid #667eea;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #1c1c1c;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.company-details {
    font-size: 0.85rem;
    color: #1c1c1c;
    line-height: 1.6;
}

.company-details p {
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #1c1c1c;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 20px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: #667eea;
    font-size: 0.9rem;
}

.contact-item a {
    color: #1c1c1c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #667eea;
}

.hours {
    font-size: 0.8rem;
    color: #1c1c1c;
    font-style: italic;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-bottom h5 {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1c1c1c;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cert-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    color: #10B981;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.footer-copyright {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding-top: 1rem;
}

.copyright-text {
    font-size: 0.85rem;
    color: #1c1c1c;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

.payment-methods {
    text-align: right;
}

.payment-text {
    display: block;
    font-size: 0.8rem;
    color: #1c1c1c;
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-copyright {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .payment-methods {
        text-align: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cert-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    
    .btn-large {
        padding: 10px 10px;
        font-size: 20px;
    }
    .btn-outline, .btn-primary {
        font-size: 14px;
    }
    .footer-content {
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-icons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .Custom_heading {
        text-align: left;
        font-size: 20px;
    }
    .modal-content h2 {
        font-size: 20px;
    }
    .demo-form-header h2 {
        font-size: 20px;
    }
    .close {
        font-size: 30px;
        line-height: 20px;
        top: 5px;
        right: 10px;
    }
    .form-section h3 {
        font-size: 18px;
    }
}

/* Demo Form Styles */
.demo-modal-content {
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.demo-form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.demo-form-header h2 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.demo-form-header h2 img {
    width: 45px;
    height: 45px;
}
.demo-form-header p {
    color: #6B7280;
    font-size: 1.1rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.demo-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.demo-form label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.demo-form input,
.demo-form select {
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.demo-form input::placeholder {
    color: #9CA3AF;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.checkbox-item:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Form Validation Error Styles */
.form-group {
    position: relative;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.error label {
    color: #ef4444;
}

.course-info {
    flex: 1;
}

.course-info strong {
    display: block;
    color: #1F2937;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.course-info small {
    color: #6B7280;
    font-size: 0.9rem;
}

.form-note {
    color: #6B7280;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.demo-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.demo-form .form-actions button {
    min-width: 140px;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Success Message Styles */
.demo-success {
    text-align: center;
    padding: 2rem;
}

.demo-success h3 {
    color: #10B981;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.demo-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.demo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #FFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    text-decoration: none;
    color: #1F2937;
    transition: all 0.3s ease;
}

.demo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.demo-link-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.demo-link-icon img {
    width: 50px;
    height: 50px;
}

.demo-link-info h4 {
    color: #1E3A8A;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.demo-link-info p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .demo-modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .demo-form .form-actions {
        flex-direction: column;
    }
    
    .demo-form .form-actions button {
        width: 100%;
    }
    
    .demo-form-header h2 {
        font-size: 1.6rem;
    }
    
    .checkbox-item {
        padding: 0.75rem;
    }
}
@media (max-width: 620px) {
    .top-nav {
        padding: 1rem 0;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo-text {
        font-size: 1.4rem;
        height: 50px;
    }
    
    .btn-back-home {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    body {
        padding-top: 75px;
    }
    
    .modal-content {
        width: 98%;
        padding: 1rem;
        max-height: 90vh;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .time-unit span {
        font-size: 1rem;
    }
    
    .time-unit label {
        font-size: 0.7rem;
    }
    
    .founder-content {
        gap: 2rem;
    }
    
    .logos-container {
        gap: 0.75rem;
    }
    
    .logo-item {
        padding: 0.3rem 0.6rem;
        min-height: 40px;
    }
}