/* ================================
   SHIKSHYAN CONSULTANCY PVT. LTD.
   MAIN STYLESHEET
================================== */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

/* GLOBAL */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: bold;
}

p {
    margin-bottom: 15px;
    color: #444;
}

a {
    text-decoration: none;
}

section {
    padding: 60px 0;
}

/* BRAND COLORS */
:root {
    --primary: #720000;
    --secondary: #ffffff;
    --accent: #d4af37;
    --light-bg: #f8f8f8;
    --dark-text: #222;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: var(--accent);
    color: #000;
}

.primary-btn:hover {
    background: #b8962f;
}

.secondary-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: var(--primary);
}

/* NAVBAR */
.navbar {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 25px;
}

.navbar ul li a {
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: var(--accent);
}

/* HERO */
.hero,
.page-hero {
    background: linear-gradient(to right, #720000, #a00000);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1,
.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero p,
.page-hero p {
    color: #f5f5f5;
    font-size: 18px;
}

.hero-buttons {
    margin-top: 25px;
}

/* ABOUT */
.about-preview,
.about-company,
.business-model,
.services-intro,
.franchise-intro,
.career-intro {
    background: white;
    text-align: center;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h3 {
    color: var(--primary);
}

/* FEATURES GRID */
.features-grid,
.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    background: var(--light-bg);
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* FORMS */
form {
    margin-top: 20px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form textarea {
    resize: vertical;
}

form button {
    width: 100%;
    border: none;
}

/* FORM BOXES */
.contact-form-box,
.franchise-form-box,
.career-form-box,
.register-box,
.login-box,
.success-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-info-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
}

.contact-info-item {
    margin-bottom: 25px;
}

/* SUCCESS / ERROR */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

/* FAQ */
.faq-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
}

/* SUCCESS PAGE */
.success-icon {
    font-size: 60px;
    color: green;
    margin-bottom: 20px;
    text-align: center;
}

/* FOOTER */
footer {
    background: var(--primary);
    color: white;
    padding: 50px 0;
    text-align: center;
}

footer p {
    color: white;
    margin-bottom: 10px;
}

footer a {
    color: var(--accent);
}

/* MAP */
.map-placeholder iframe {
    border-radius: 10px;
    margin-top: 25px;
}

/* LOGIN LINKS */
.login-links,
.register-links {
    margin-top: 20px;
    text-align: center;
}

.login-links a,
.register-links a {
    color: var(--primary);
    font-weight: bold;
}

/* PAGE SPECIFIC */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vm-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
}

/* FINAL CTA */
.final-cta,
.about-cta,
.services-cta,
career-cta,
franchise-cta,
register-cta,
contact-cta,
support-section,
final-success-cta {
    background: linear-gradient(to right, #720000, #a00000);
    color: white;
    text-align: center;
}

.final-cta p,
.about-cta p,
.services-cta p,
career-cta p,
.franchise-cta p,
.register-cta p,
.contact-cta p,
.support-section p,
.final-success-cta p {
    color: #f5f5f5;
}