/* Basic Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Using Poppins as a suitable modern font */
    background-color: #0a0a0a; /* Very dark background */
    color: #e0e0e0; /* Light grey text */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

a {
    color: #A65E2E; /* Accent color from buttons */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff; /* White headings */
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }

section {
    padding: 80px 0;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #A65E2E; /* Bright red/orange */
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #A67D4E; /* Lighter shade on hover */
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0a0a0a;
    text-decoration: none;
}


/* Header */
.site-header {
    background-color: rgba(10, 10, 10, 0.8); /* Slightly transparent background */
    padding: 15px 0;
    position: fixed; /* Or sticky */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #222; /* Subtle border */
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff; /* Placeholder style */
}

.site-header .logo img {
    max-height: 60px;
    height: auto;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
    text-decoration: none;
}

.header-cta {
    margin-left: 30px;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 50px; /* More padding top due to fixed header */
    text-align: center;
    position: relative;
    background: #0a0a0a; /* Fallback */
    background: url('images/starry.png') no-repeat center center;
    background-size: cover; /* Zoom in the background image */
    height: auto;
    color: white; /* Optional: Change text color for contrast */
    /* max-width: 800px; */
    margin: 0;
    overflow: hidden;
    background-attachment: fixed;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* Send the image behind the text */
    width: 100%; /* Make the image cover the section */
    height:100%; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure it covers the area */
    transform: scale(2); /* Adjust scale for zoom effect */
    }


.background-image img {
    width: 100%; /* Make the image cover the section */
    height: 100%; /* Maintain aspect ratio */
    object-fit: cover; /* Cover the entire area */
    opacity: 0.3; /* Adjust opacity for subtlety */
    display:flex; 
} 


.hero-section h1 {
    font-size: 4vw; /* Adjusted font size */
    line-height: 1.1; /* Adjust line height for better spacing */
    text-align: center;
    margin: 0;
}

.hero-section .subtitle {
    font-size: 1.4rem;
    color: #a0a0a0; /* Slightly muted color */
    margin-bottom: 0;
    font-weight: 300;
}

.hero-glow {
    position: absolute;
    top: 90px; /* Adjust position to be visible */
    left: 0;
    right: 0;
    height: 150px; /* Ensure height is sufficient */
    background: radial-gradient(ellipse at center, rgba(255, 204, 0, 0.5) 0%, rgba(255, 204, 0, 0) 70%); /* Yellow/orange glow effect */
    z-index: -1; /* Ensure it stays behind the text */
    pointer-events: none; /* Allow clicking through */
}

/* Features Section */
.features-section {
    background-color: #111; /* Slightly different background */
}

.features-section h2 {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
    text-align: left;
}

.feature-item {
    background-color: #1a1a1a; /* Card background */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.feature-icon {
    display: block;
    font-size: 2rem; /* Placeholder size */
    color: #A65E2E; /* Accent color */
    margin-bottom: 1rem;
    width: 50px; /* Set width as needed */
    height: auto; /* Maintain aspect ratio */
    /* Replace with actual icon styles (e.g., Font Awesome <i> tags) */
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #a0a0a0;
    margin-bottom: 0;
}

/* Transform Section */
.transform-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.transform-content {
    flex: 1;
}

.transform-visual {
    flex: 1;
    max-width: 50%; /* Adjust as needed */
}
.transform-visual img {
    border-radius: 8px;
    /* Add styles for the visual element */
    filter: grayscale(50%) contrast(1.1); /* Example style */
}


.stats {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens if needed */
}

.stat-item {
    text-align: center; /* Center numbers and labels */
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #A65E2E; /* Accent color for numbers */
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #a0a0a0;
}

/* AI Approach Section */
.ai-approach-section {
     background-color: #111;
}
.ai-approach-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.ai-visual {
    flex: 1;
    text-align: center; /* Center the AI graphic placeholder */
    max-width: 40%; /* Adjust as needed */
}

.ai-text-graphic {
    font-size: 8rem; /* Large placeholder */
    font-weight: 700;
    color: #333; /* Dark grey placeholder */
    border: 2px dashed #444;
    padding: 20px 40px;
    display: inline-block;
    border-radius: 10px;
}

.ai-content {
    flex: 1;
}

.ai-content h2 {
    margin-bottom: 1.5rem;
}
.ai-content p {
    margin-bottom: 2rem;
    color: #c0c0c0;
}


/* Blog Section */
.blog-section h2 {
    margin-bottom: 4rem;
}

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

.blog-post-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden; /* Clip the image */
    border: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
}

.blog-post-card img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Ensure image covers the area */
}

.blog-post-card h3 {
    font-size: 1.3rem;
    margin: 15px 20px 5px;
}

.blog-post-card p {
    color: #a0a0a0;
    margin: 0 20px 15px;
    flex-grow: 1; /* Push link to the bottom */
}

.blog-post-card a {
    display: block;
    padding: 10px 20px 15px;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #111;
    padding: 60px 0;
}

.final-cta-section h2 {
    margin-bottom: 2rem;
}

/* Responsive Sun Image */
.responsive-sun {
    width: 50%; /* Set width to a third of the column */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure it behaves like a block element */
    margin: 0 auto; /* Center the image */
}

/* Footer */
.site-footer {
    background-color: #000; /* Black footer */
    color: #a0a0a0;
    padding: 60px 0 30px;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #a0a0a0;
    text-decoration: none;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    padding-top: 30px;
    flex-wrap: wrap; /* Wrap on small screens */
}

.footer-bottom p {
    margin-bottom: 10px; /* Space below copyright on wrap */
}

.social-links a {
    color: #a0a0a0;
    margin-left: 15px;
    font-size: 1.2rem; /* Adjust if using icons */
    text-decoration: none;
}

.social-links a:hover {
    color: #ffffff;
}

/* Simple Responsive Example (add more as needed) */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }

    .transform-section .container,
    .ai-approach-section .container {
        flex-direction: column;
        text-align: center;
    }
    .transform-content, .ai-content {
        text-align: center;
    }

     .transform-visual, .ai-visual {
        max-width: 80%;
        margin-bottom: 30px;
    }
    .ai-approach-section .container {
        flex-direction: column-reverse; /* Put visual below text */
    }
     .stats {
        justify-content: center;
    }

}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
    }
     .main-nav {
        margin-top: 15px; /* Needs proper mobile menu implementation */
        /* Hide nav and show toggle button for real responsiveness */
    }
     .header-cta {
         margin-top: 10px;
         margin-left: 0;
     }

    .hero-section {
        padding: 150px 0 80px;
    }
     h1 { font-size: 2.2rem; }
     .hero-section .subtitle { font-size: 1.2rem; }

     section { padding: 60px 0; }

     .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust footer columns */
     }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        margin-top: 15px;
    }
     .social-links a {
         margin: 0 8px;
     }
}