/* SecurityVal.com - Main Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #1a5490;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --gray: #7f8c8d;
    --light-gray: #bdc3c7;
    --text-color: #333333;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text-color); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--primary-color); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--secondary-color); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
    display: inline-block; padding: 12px 30px; border-radius: 5px;
    font-weight: 600; cursor: pointer; transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn-primary { background-color: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
.btn-primary:hover { background-color: var(--secondary-color); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.btn-outline { background-color: transparent; color: var(--primary-color); border-color: var(--primary-color); }
.btn-outline:hover { background-color: var(--primary-color); color: var(--white); }

.top-bar { background-color: var(--dark-color); color: var(--white); padding: 10px 0; font-size: 0.9rem; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.social-links { display: flex; gap: 15px; }
.social-links a { color: var(--white); }
.social-links a:hover { color: var(--accent-color); transform: scale(1.1); }

.header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo h1 { font-size: 2rem; color: var(--primary-color); margin: 0; }
.logo h1 span { color: var(--accent-color); }

.nav-menu { display: flex; list-style: none; gap: 30px; margin: 0; }
.nav-menu li a { color: var(--dark-color); font-weight: 600; font-size: 0.9rem; padding: 5px 0; position: relative; }
.nav-menu li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s ease; }
.nav-menu li a:hover::after, .nav-menu li a.active::after { width: 100%; }

.hero { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); padding: 100px 0; text-align: center; }
.hero-title { font-size: 3rem; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.1rem; margin-bottom: 1rem; line-height: 1.8; }

.content-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { color: var(--dark-color); font-size: 2.5rem; }

.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.industry-card { background-color: var(--white); padding: 40px 20px; text-align: center; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; cursor: pointer; }
.industry-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.industry-icon { font-size: 3rem; margin-bottom: 20px; }

.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-top: 60px; }
.stat-item { text-align: center; padding: 30px; background-color: var(--light-color); border-radius: 10px; }
.stat-number { font-size: 3.5rem; color: var(--primary-color); margin-bottom: 10px; }

.features-grid, .packages-grid, .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.feature-card, .package-card { background-color: var(--white); border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.feature-card:hover, .package-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

.news-card { background-color: var(--light-color); padding: 30px; border-radius: 10px; border-left: 4px solid var(--primary-color); }

.footer { background-color: var(--dark-color); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--light-gray); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--light-gray); border-radius: 5px; font-family: inherit; }
.form-group textarea { min-height: 150px; }

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .nav-menu { flex-direction: column; }
}
