/* Landing Page Styles */
:root {
    --primary: #3c8dbc;
    --secondary: #222d32;
    --accent: #00c0ef;
    --text: #333;
    --bg: #f4f6f9;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-right: 15px;
}

.btn-hero-primary {
    background: #fff;
    color: #333;
    border: none;
}

.btn-hero-primary:hover {
    background: #f4f4f4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Features */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: white;
}

.icon-ai { background: linear-gradient(45deg, #6dd5ed, #2193b0); }
.icon-cyber { background: linear-gradient(45deg, #eb3349, #f45c43); }
.icon-cloud { background: linear-gradient(45deg, #a8ff78, #78ffd6); }

/* Showcase */
.showcase-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.img-showcase {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.img-showcase:hover {
    transform: scale(1.02);
}

/* Footer */
.footer-minimal {
    background: #222;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

.footer-minimal p {
    margin-bottom: 0;
}

/* Chat Widget Demo */
.chat-demo {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
}
.chat-demo-header {
    background: #3c8dbc;
    color: white;
    padding: 15px;
}
.chat-demo-body {
    padding: 15px;
    height: 200px;
    background: #f9f9f9;
}
.msg {
    padding: 8px 12px;
    border-radius: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    max-width: 80%;
}
.msg-ai { background: #e0e0e0; float: left; clear: both; border-bottom-left-radius: 0; }
.msg-user { background: #3c8dbc; color: white; float: right; clear: both; border-bottom-right-radius: 0; }
