:root {
    --primary: #2c3e50;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #34495e;
    --text: #2c3e50;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    color: var(--text);
    line-height: 1.6;
    background-color: #fff;
}

/* Header */
header {
    background-color: var(--primary);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('mountain.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.btn:hover {
    background-color: #c0392b;
}

/* Services Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: #7f8c8d;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-top: 0;
    color: var(--dark);
}

/* About Section */
.about-bg {
    background-color: var(--light);
}

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

.founder-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.founder-card h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.designation {
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.experience {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent);
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-top: 30px;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin: 0;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none; /* Simple mobile hide for now */
    }
}

/* Blog Specific */
article {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

article h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

article .date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

article h3 {
    color: var(--accent);
    margin-top: 30px;
}

article p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-box {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
    text-align: center;
    border-left: 5px solid var(--accent);
}

.cta-box h3 {
    margin-top: 0;
    color: var(--primary);
}

.button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
}

.button:hover {
    background: #c0392b;
}
