/* Basic Styles & Global Reset */
:root {
    --primary-color: #A30000; /* Deep Red */
    --secondary-color: #0B0E33; /* Deep Blue */
    --accent-color: #FDD700; /* Gold or deep yellow for accents */
    --text-color-light: #f4f4f9;
    --text-color-dark: #333;
    --bg-color-light: #fff;
    --bg-color-dark: #1A1A2E;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--bg-color-dark);
    color: var(--text-color-light);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 1.5rem;
}

.bg-dark {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
}

/* Buttons */


/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--accent-color); /* Changed to accent color for better contrast */
    color: var(--secondary-color); /* Changed text color for readability */
    border: 2px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-color-light);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}



/* Header & Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    display: flex; /* Makes the content a flex container */
    flex-direction: column; /* Stacks children vertically */
    align-items: center; /* Centers items horizontally */
    text-align: center;
}


.hero-content h1 {
    font-size: 4rem;
    color: var(--text-color-light);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.sri-yantra-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vh;
    height: 150vh;
    transform: translate(-50%, -50%);
    background: url('https://upload.wikimedia.org/wikipedia/commons/e/e0/Sri_Yantra.svg') no-repeat center center/contain;
    opacity: 0.1;
    z-index: 1;
}

/* Sections */
.intro-section {
    background-color: var(--secondary-color); /* Changes background to deep blue */
    color: var(--text-color-light); /* Changes text color to white for readability */
}
.intro-section h2, .intro-section strong {
    color: var(--primary-color);
}

.sri-yantra-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.sri-yantra-section .content-left, .sri-yantra-section .content-right {
    flex: 1;
}

.sri-yantra-section .content-right {
    text-align: center;
}

.yantra-image {
    width: 400px;
    height: 400px;
    border: 5px solid var(--accent-color);
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 0 30px rgba(253, 215, 0, 0.5);
}

.yantra-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
}

.pillar-card h3 {
    color: var(--accent-color);
}

/* Why it Matters Section */
.key-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* Call to Action */
.cta-section {
    background-color: var(--primary-color);
}
.cta-section h2 {
    color: var(--text-color-light);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
    
    .sri-yantra-section .container {
        flex-direction: column;
    }
    .yantra-image {
        width: 300px;
        height: 300px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Styling for the new logo section */
.logo-container {
    padding: 20px 0;
    text-align: center;
    background-color: #050b21; /* A light background color to make the logo stand out */
}

.company-logo {
    max-width: 200px; /* Adjust the logo size as needed */
    height: auto;
}

/* Ensure the hero section doesn't overlap with the new logo section */
.hero-section {
    padding-top: 0;
}

