/*
Theme Name: Vedantam Educational Services Theme
Theme URI: https://vedantameducation.com
Author: Gemini Web Design
Author URI: https://example.com
Description: A highly optimized, responsive WordPress theme inspired by Bosa Pro, specifically designed for Vedantam Educational Services.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: vedantam-theme
*/

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f9f9f9;
}
a {
    text-decoration: none;
    color: #0c4a60;
    transition: color 0.3s ease;
}
a:hover {
    color: #1eb2a6;
}
img {
    max-width: 100%;
    height: auto;
}

/* Colors & Variables */
:root {
    --primary-color: #0c4a60; /* Deep Premium Blue */
    --secondary-color: #1eb2a6; /* Vibrant Academic Teal */
    --accent-color: #ff5722; /* Warning/Action Orange */
    --text-color: #333333;
    --bg-light: #f4f7f6;
    --white: #ffffff;
}

/* Layout Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styling similar to Bosa Pro */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo h1 {
    font-size: 24px;
    font-weight: 700;
}
.logo h1 a {
    color: var(--primary-color);
}
.logo h1 span {
    color: var(--secondary-color);
}
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}
.main-navigation a {
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}
.main-navigation a:hover {
    color: var(--secondary-color);
}
.header-btn {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}
.header-btn:hover {
    background-color: var(--primary-color);
}

/* Hero Section (Bosa Style Dynamic Banner) */
.hero {
    background: linear-gradient(135deg, rgba(12, 74, 96, 0.95), rgba(30, 178, 166, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=1470') no-repeat center center/cover;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}
.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}
.btn-primary:hover {
    background-color: #e04e1d;
    color: var(--white);
}

/* Features Grid */
.features {
    padding: 80px 0;
    background-color: var(--white);
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.section-title p {
    color: #777;
    font-size: 16px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.feature-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.feature-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.about-content {
    flex: 1;
    min-width: 300px;
}
.about-image {
    flex: 1;
    min-width: 300px;
}
.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    background: #fff;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-card h5 {
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer Section */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.7);
}
.footer-col ul li a:hover {
    color: var(--secondary-color);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}