@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #0a192f; /* Navy Blue */
    --secondary-color: #172a45; /* Lighter Navy */
    --text-color: #ccd6f6; /* Light Slate */
    --highlight-color: #64ffda; /* Aqua/Teal */
    --light-text-color: #8892b0; /* Slate */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

h1, h2, h3, h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}
/* Contact Form */
.contact-form-section {
    max-width: 600px;
    margin: auto;
}
/* Contact Form */
.contact-form-section {
    max-width: 600px;
    margin: auto;
}

/* New styles for the Google Form iframe */
.contact-form-section iframe {
    width: 100%; /* Make the iframe fill its parent's width */
    display: block; /* Ensures margin: auto works for centering if width is less than 100% */
    margin: 0 auto; /* Centers the iframe horizontally */
    border: none; /* Remove default iframe border */
    /* Height is set directly in HTML, but you can override here if needed */
}

/* Header & Navigation */
header {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--secondary-color);
}

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

.logo-img {
    height: 50px;
    width: auto;
}

nav div:last-child {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 400;
}

.contact-button, .submit-button {
    background-color: transparent;
    border: 1px solid var(--highlight-color);
    color: var(--highlight-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-button:hover, .submit-button:hover {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--highlight-color);
}

/* Update: Eliminate border for Contact Us button in navigation */
nav .contact-button {
    border: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 2rem;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    max-width: 600px;
    margin: 1rem auto;
    color: var(--light-text-color);
}

/* Main Content & Sections */
main {
    padding: 2rem 0;
    max-width: 1100px; /* ADDED */
    margin: auto;     /* ADDED */
}

section {
    padding: 3rem 2rem;
    text-align: center;
}

section:nth-child(even) {
    background-color: var(--secondary-color);
}

/* Pricing Models */
.pricing-models {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--light-text-color);
    flex: 1;
    max-width: 300px;
}

.price-card.highlight {
    border-color: var(--highlight-color);
    transform: scale(1.05);
}

.price-card h4 {
    font-size: 1.2rem;
}

.price-card span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--highlight-color);
}

/* Services & CTA */
.services, .cta {
    max-width: 800px;
    margin: auto;
}

/* About Page */
.about-intro, .what-we-do, .our-path {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.our-path ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--highlight-color);
    display: block;
}

/* Gallery Page */
.gallery-image figure {
    max-width: 800px;
    margin: auto;
}

.gallery-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--light-text-color);
}

.gallery-image figcaption {
    margin-top: 1rem;
    font-style: italic;
    color: var(--light-text-color);
}

/* Contact Form */
.contact-form-section {
    max-width: 600px;
    margin: auto;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--secondary-color);
    border: 1px solid var(--light-text-color);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--secondary-color);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.footer-content div {
    flex: 1;
    min-width: 250px;
}

.footer-content h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--light-text-color);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-models {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
\n/* Custom spacing for About page CTA */\n.about-cta {\n    margin-top: 3rem;\n}
\n/* Custom spacing for Gallery page CTA */\n.gallery-cta {\n    margin-top: 8rem;\n}





.contact-button.active {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--highlight-color);
}

/* Increased spacing for Gallery CTA button */
.gallery-cta {
    margin-top: 8rem; /* Increased from 3rem */
}

/* Site Title Heading */
.site-title {
    text-align: center;
    margin: 2rem 0 1rem 0;
    font-size: 2.5rem;
    color: var(--highlight-color);
}



/* Final Active Navigation Link Styling */
.nav-link.active {
    color: #ffffff;
    font-weight: bold;
}

.contact-button.active {
    color: #ffffff !important;
    font-weight: bold !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}