/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: rgba(10, 14, 39, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 50%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 212, 255, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px 10px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #00ffff;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230a0e27"/></svg>');
    background-size: cover;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image {
    margin-bottom: 30px;
    position: relative;
}

.hero-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 40%, #66e0ff 70%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    letter-spacing: 1.5px;
    font-weight: 700;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.subtitle {
    font-size: 20px;
    color: #a0d4ff;
    margin-bottom: 15px;
}

.disclaimer-text {
    font-size: 14px;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    line-height: 1.8;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stock-input {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 30px;
    background: rgba(10, 25, 50, 0.7);
    color: #ffffff;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.stock-input:focus {
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4), inset 0 0 15px rgba(0, 255, 255, 0.1);
    background: rgba(10, 35, 70, 0.85);
    transform: translateY(-2px);
}

.stock-input::placeholder {
    color: #7099b3;
}

.btn-primary {
    padding: 15px 40px;
    font-size: 18px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    color: #0a0e27;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.45);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 255, 255, 0.65);
}

.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    margin-top: 10px;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(90deg, #128C7E, #25D366);
}

/* Analysis Section */
.analysis-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #151b3d 100%);
}

.analysis-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.section-subtitle {
    text-align: center;
    color: #a0d4ff;
    margin-bottom: 40px;
    font-size: 16px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.analysis-card {
    background: linear-gradient(145deg, rgba(10, 25, 50, 0.6), rgba(15, 30, 60, 0.7));
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.analysis-card:hover::before {
    opacity: 1;
}

.analysis-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.7);
    box-shadow: 0 15px 45px rgba(0, 212, 255, 0.35);
}

.analysis-card h3 {
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 22px;
    text-align: center;
}

.card-description {
    color: #a0d4ff;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
    font-style: italic;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: rgba(0, 212, 255, 0.2);
}

.data-table th {
    padding: 12px;
    text-align: left;
    color: #00ffff;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 212, 255, 0.5);
}

.data-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    color: #a0d4ff;
}

.data-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* Education Section */
.education-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #151b3d 0%, #0a0e27 100%);
}

.education-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.section-intro {
    text-align: center;
    color: #a0d4ff;
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.education-card {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(0, 180, 255, 0.12));
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.education-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.education-card:hover::after {
    transform: scaleX(1);
}

.education-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 255, 0.7);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.12), rgba(0, 180, 255, 0.18));
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.education-card h3 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 24px;
}

.education-card p {
    color: #a0d4ff;
    line-height: 1.8;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 212, 255, 0.2);
    color: #00ffff;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
    font-weight: 600;
}

.learn-more:hover {
    background: rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.8);
    transform: translateX(5px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.trust-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 180, 255, 0.18));
    border: 1px solid rgba(0, 212, 255, 0.45);
    padding: 10px 20px;
    border-radius: 20px;
    color: #00ffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.trust-item:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 180, 255, 0.25));
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float-bounce 3s ease-in-out infinite;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.8);
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-section p {
    color: #a0d4ff;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: #7099b3;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #00d4ff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}
