/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Main CTA Button Style */
.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #6a00ff, #cc00ff);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(204, 0, 255, 0.3);
}

/* Hover Effect */
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(204, 0, 255, 0.4);
}

/* Secondary Button (Outline Style) */
.cta-button.secondary {
  background: transparent;
  border: 2px solid #cc00ff;
  color: #cc00ff;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: #cc00ff;
  color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo-image {
    height: 40px;
    width: 200px;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #CC00FF;
}

.accent {
    color: #C1FF72;
}
        /* Chatbot */
        .chatbot-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .chatbot-toggle {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #CC00FF 0%, #C1FF72 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #000;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(204, 0, 255, 0.4);
            animation: float 3s ease-in-out infinite;
        }

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

        .chatbot-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(204, 0, 255, 0.6);
        }

        .chatbot-iframe {
            position: fixed;
            bottom: 120px;
            right: 30px;
            width: 380px;
            height: 550px;
            border: none;
            border-radius: 15px;
            background: #000;
            display: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            border: 2px solid rgba(204, 0, 255, 0.5);
        }

         .main-content {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 60px;
            background: 
                radial-gradient(circle at 30% 50%, rgba(204, 0, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(193, 255, 114, 0.1) 0%, transparent 50%),
                #000000;
        }
        
        .contact-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .contact-info {
            animation: fadeInLeft 1s ease-out;
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .contact-info h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            background: linear-gradient(135deg, #CC00FF 0%, #C1FF72 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .contact-info p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .info-card {
            background: linear-gradient(135deg, rgba(204, 0, 255, 0.1) 0%, rgba(193, 255, 114, 0.05) 100%);
            border: 2px solid rgba(204, 0, 255, 0.3);
            border-radius: 20px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateX(10px);
            border-color: #CC00FF;
            box-shadow: 0 10px 30px rgba(204, 0, 255, 0.3);
        }
        
        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #CC00FF 0%, #C1FF72 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        
        .info-content h3 {
            color: #C1FF72;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        
        .info-content p {
            color: #fff;
            font-size: 1rem;
            margin: 0;
        }
        
        .info-content a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .info-content a:hover {
            color: #CC00FF;
        }
        
        .form-section {
            animation: fadeInRight 1s ease-out;
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .form-container {
            background: linear-gradient(135deg, rgba(204, 0, 255, 0.08) 0%, rgba(193, 255, 114, 0.05) 100%);
            border: 2px solid rgba(204, 0, 255, 0.3);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }
        
        .form-container h2 {
            color: #CC00FF;
            font-size: 2rem;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .form-subtitle {
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 30px;
            font-size: 1rem;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            color: #C1FF72;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1rem;
        }
        
        .required {
            color: #CC00FF;
            margin-left: 4px;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid rgba(204, 0, 255, 0.3);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #CC00FF;
            box-shadow: 0 0 0 3px rgba(204, 0, 255, 0.1);
            background: rgba(0, 0, 0, 0.8);
        }
        
        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C1FF72' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            padding-right: 45px;
        }
        
        .form-group select option {
            background: #000;
            color: #fff;
            padding: 10px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #CC00FF 0%, #C1FF72 100%);
            color: #000;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 800;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 10px 30px rgba(204, 0, 255, 0.4);
        }
        
        .submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(204, 0, 255, 0.6);
        }
        
        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .success-message,
        .error-message {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
            display: none;
            animation: slideDown 0.5s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .success-message {
            background: rgba(193, 255, 114, 0.2);
            border: 2px solid #C1FF72;
            color: #C1FF72;
        }
        
        .error-message {
            background: rgba(255, 0, 0, 0.2);
            border: 2px solid #ff4444;
            color: #ff4444;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(204, 0, 255, 0.2) 0%, rgba(193, 255, 114, 0.2) 100%);
            border: 2px solid rgba(204, 0, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, #CC00FF 0%, #C1FF72 100%);
            border-color: #CC00FF;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(204, 0, 255, 0.4);
        }
        /* Footer Styles */
.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, #000000 100%);
    border-top: 2px solid rgba(204, 0, 255, 0.3);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #CC00FF, #C1FF72, transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(204, 0, 255, 0.2);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #CC00FF 0%, #C1FF72 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 0, 255, 0.1);
    border: 1px solid rgba(204, 0, 255, 0.3);
    border-radius: 50%;
    color: #CC00FF;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: linear-gradient(135deg, #CC00FF 0%, #C1FF72 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 0, 255, 0.4);
}

.footer-title {
    color: #C1FF72;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #CC00FF;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #C1FF72;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}
/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    height: 700px;
}
.banner-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background: #cc00ffcc; /* your brand color */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background: #000000;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

.slide img {
    width: 100%;
     height: 100%;
    object-fit: cover;
    display: block;
}

.slide-text {
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    border-radius: 10px;
    animation: textSlideUp 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes textSlideUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.hero-navigation {
  position: absolute; 
  top: 50%; /* vertically center */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between; /* push buttons apart */
  transform: translateY(-50%); /* exact vertical center */
  padding: 0 20px; /* space from edges */
  box-sizing: border-box;
}
.nav-btn {
  background: #cc00ffcc;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 50%;
  transition: 0.3s;
}
.nav-btn prev-btn{ width: 20px; height: 20px;}
.nav-btn next-btn{ width: 20px; height: 20px;}

.nav-btn:hover {
    background: #000000;
}
/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(204, 0, 255, 0.1), rgba(193, 255, 114, 0.05));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(204, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(193, 255, 114, 0.1) 0%, transparent 50%);
    animation: floatingOrbs 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes floatingOrbs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -20px) scale(1.1); }
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 0, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-bio {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite alternate;
}

@keyframes textShimmer {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #CC00FF, #C1FF72);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 5px rgba(204, 0, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(193, 255, 114, 0.8); }
}

.about-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 3;
}

.info-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(204, 0, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(204, 0, 255, 0.1) 0%, 
        transparent 30%, 
        rgba(193, 255, 114, 0.1) 70%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.info-box:hover::before {
    opacity: 1;
}

.info-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #CC00FF;
    box-shadow: 
        0 20px 40px rgba(204, 0, 255, 0.3),
        0 0 30px rgba(193, 255, 114, 0.2);
}

.info-box:nth-child(1):hover {
    box-shadow: 
        0 20px 40px rgba(204, 0, 255, 0.4),
        0 0 30px rgba(204, 0, 255, 0.3);
}

.info-box:nth-child(2):hover {
    box-shadow: 
        0 20px 40px rgba(193, 255, 114, 0.4),
        0 0 30px rgba(193, 255, 114, 0.3);
}

.info-box:nth-child(3):hover {
    box-shadow: 
        0 20px 40px rgba(204, 0, 255, 0.4),
        0 0 30px rgba(193, 255, 114, 0.3);
}

.info-box h3 {
    color: #CC00FF;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    background: linear-gradient(135deg, #CC00FF, #C1FF72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.info-box h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #CC00FF, #C1FF72);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.info-box:hover h3::after {
    width: 80px;
    box-shadow: 0 0 10px rgba(204, 0, 255, 0.6);
}

.info-box p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.info-box:hover p {
    color: #ffffff;
}
 @media (max-width: 968px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
/* Responsive adjustments for info boxes */
@media (max-width: 768px) {
    .about-info-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    .hero-navigation {
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
}
 .main-content {
                padding: 100px 15px 40px;
            }
            
            .form-container {
                padding: 30px 20px;
            }
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    height: 400px;
}
    .info-box {
        padding: 1.5rem;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
}

.founder-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(204, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.founder-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 0, 255, 0.2);
    border-color: #CC00FF;
}

.founder-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #CC00FF;
    animation: profilePulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.founder-profile:hover .founder-image img {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(204, 0, 255, 0.5);
}

@keyframes profilePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(204, 0, 255, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(204, 0, 255, 0); }
}

.founder-info h3 {
    color: #CC00FF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-info p {
    line-height: 1.6;
    color: #e0e0e0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(204, 0, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 255, 0.2);
    border-color: #CC00FF;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #CC00FF;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-icon {
    width: 24px;
    height: 24px;
    color: #C1FF72;
    flex-shrink: 0;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-benefits li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.service-benefits li::before {
    content: "✓";
    color: #C1FF72;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-result {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(193, 255, 114, 0.05);
    border-left: 3px solid #C1FF72;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-result strong {
    color: #C1FF72;
}
/* Course Pricing Section */
/* Course Pricing Container */
.course-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    position: relative;
}

/* Original Price (Strike-through) */
.course-original-price {
    color: #888;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: line-through;
    opacity: 0.7;
}

/* Current/Sale Price */
.course-price {
    color: #C1FF72;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(193, 255, 114, 0.3);
}

/* Discount Percentage Badge */
.course-pricing::after {
    content: 'SAVE ' attr(data-discount);
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: discountPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 10px rgba(255, 75, 87, 0.3);
    white-space: nowrap;
}

@keyframes discountPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 75, 87, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(255, 75, 87, 0.5);
    }
}

/* Hover effect on course card */
.course-card:hover .course-price {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.course-card:hover .course-pricing::after {
    animation: discountPulse 1s ease-in-out infinite;
}

/* Responsive pricing for mobile */
@media (max-width: 768px) {
    .course-pricing {
        gap: 0.5rem;
    }
    
    .course-original-price {
        font-size: 1rem;
    }
    
    .course-price {
        font-size: 1.5rem;
    }
    
    .course-pricing::after {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
}

.learn-more-btn {
    background: transparent;
    border: 2px solid #CC00FF;
    color: #CC00FF;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: auto;
}

.learn-more-btn:hover {
    background: #CC00FF;
    color: #000000;
    box-shadow: 0 0 20px rgba(204, 0, 255, 0.4);
    transform: translateY(-2px);
}

/* Courses Grid */
/* Courses Grid */
.courses {
    background: rgba(193, 255, 114, 0.02);
}

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

.course-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(193, 255, 114, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(193, 255, 114, 0.2);
    border-color: #C1FF72;
}

.course-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #C1FF72;
    color: #000000;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.course-price {
    color: #C1FF72;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.course-outcomes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-outcomes li {
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.course-outcomes li::before {
    content: "•";
    color: #C1FF72;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.course-duration {
    color: #888;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.enroll-btn {
    width: 100%;
    background: linear-gradient(135deg, #C1FF72, #CC00FF);
    color: #000000;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.enroll-btn:hover {
    box-shadow: 0 0 25px rgba(193, 255, 114, 0.5);
    transform: translateY(-2px);
}

/* Transformation Section */
.transformation {
    background: linear-gradient(135deg, rgba(204, 0, 255, 0.15), rgba(0, 0, 0, 0.9));
    position: relative;
    overflow: hidden;
}

.transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(204, 0, 255, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(193, 255, 114, 0.1) 50%, transparent 70%);
    animation: transformBg 6s linear infinite;
    z-index: 1;
}

@keyframes transformBg {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.transformation .container {
    position: relative;
    z-index: 2;
}

.transformation .section-title {
    background: linear-gradient(135deg, #CC00FF, #C1FF72, #CC00FF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(204, 0, 255, 0.3);
    margin-bottom: 4rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    gap: 3rem;
}

.before, .after {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.before::before, .after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(255, 107, 107, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.after::before {
    background: linear-gradient(135deg, transparent, rgba(193, 255, 114, 0.5), transparent);
}

.before:hover, .after:hover {
    transform: translateY(-10px) scale(1.02);
}

.before:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.after:hover {
    box-shadow: 0 20px 40px rgba(193, 255, 114, 0.2);
}

.before h3, .after h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.before h3 {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.after h3 {
    color: #C1FF72;
    text-shadow: 0 0 10px rgba(193, 255, 114, 0.5);
}

.before ul, .after ul {
    list-style: none;
    padding: 0;
}

.before li, .after li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.before li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.2rem;
}

.after li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C1FF72;
    font-weight: bold;
    font-size: 1.2rem;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.before li:hover, .after li:hover {
    transform: translateX(5px);
    color: #ffffff;
}

.arrow {
    font-size: 3rem;
    color: #CC00FF;
    font-weight: bold;
    animation: arrowPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(204, 0, 255, 0.5);
    position: relative;
}

.arrow::after {
    content: '→';
    position: absolute;
    top: 0;
    left: 0;
    color: #C1FF72;
    animation: arrowShift 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1) translateX(0); }
    50% { transform: scale(1.1) translateX(10px); }
}

@keyframes arrowShift {
    0%, 50% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Instructor Section */
.instructor {
    background: rgba(204, 0, 255, 0.03);
}

.instructor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(204, 0, 255, 0.3);
}

.instructor-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C1FF72;
}

.instructor-info h3 {
    color: #CC00FF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-badge {
    background: rgba(193, 255, 114, 0.2);
    color: #C1FF72;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Social Proof */
.social-proof {
    background: rgba(193, 255, 114, 0.02);
}

.testimonials-carousel {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial {
    display: none;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #C1FF72;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author {
    color: #C1FF72;
    font-weight: 600;
}

.success-metrics {
    display: flex;
    justify-content: space-around;
    max-width: 600px;
    margin: 0 auto;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #CC00FF;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #888;
}

/* FAQ Section */
.faq {
    background: rgba(204, 0, 255, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(204, 0, 255, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(204, 0, 255, 0.1);
}

.faq-icon {
    color: #CC00FF;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #CC00FF, #C1FF72);
    color: #000000;
}

.guarantee-badge {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-badge h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    background: rgba(0, 0, 0, 0.95);
    text-align: center;
    padding: 4rem 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info {
    color: #888;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: #CC00FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #C1FF72;
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CC00FF, #C1FF72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(204, 0, 255, 0.3);
    transition: all 0.3s ease;
    color: #000000;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(204, 0, 255, 0.5);
}

.chatbot-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(204, 0, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chatbot-panel.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #CC00FF, #C1FF72);
    color: #000000;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-message, .user-message {
    max-width: 80%;
    word-wrap: break-word;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message .message-content {
    background: rgba(204, 0, 255, 0.1);
    border: 1px solid rgba(204, 0, 255, 0.3);
    color: #ffffff;
}

.user-message .message-content {
    background: linear-gradient(135deg, #CC00FF, #C1FF72);
    color: #000000;
}

.chatbot-input-area {
    padding: 1rem;
    border-top: 1px solid rgba(204, 0, 255, 0.3);
    display: flex;
    gap: 0.5rem;
}

#chatbot-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(204, 0, 255, 0.3);
    border-radius: 25px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
}

#chatbot-input:focus {
    border-color: #CC00FF;
    box-shadow: 0 0 10px rgba(204, 0, 255, 0.3);
}

#chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#chatbot-send {
    background: linear-gradient(135deg, #CC00FF, #C1FF72);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000000;
    transition: all 0.3s ease;
}

#chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(204, 0, 255, 0.5);
}

/* Chatbot Responsive */
@media (max-width: 768px) {
    .chatbot-panel {
        width: 300px;
        height: 400px;
        bottom: 70px;
        right: -10px;
    }
     .hero-navigation {
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
}
    
    .chatbot-button {
        width: 50px;
        height: 50px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    height: 300px;
}
  .hero-navigation {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}
 .nav-btn {
    font-size: 1.5rem;
    width: 25px;
    height: 25px; padding: 0;
  }
  .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
.slide-text{ bottom: 20%;}
    .nav-menu {
        display: none;
    }
    
    .founder-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .before-after {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .success-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-section:first-child {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}