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

:root {
    --primary-color: #1E40AF; /* Blue from logo */
    --accent-color: #D92525;  /* Red from logo */
    --secondary-color: #4B5563; /* Cool Gray */
    --background-color: #F8F9FA; /* Very light gray */
    --text-color: #1F2937; /* Dark Gray */
    --hero-background-color: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero.jpg');
    --hero-text-color: #fff;
    --card-background-color: #fff;
    --card-shadow: 0 8px 15px rgba(0,0,0,0.05);
    --font-family-headings: 'Montserrat', sans-serif;
    --font-family-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-family-body);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: var(--font-family-headings);
    font-weight: 700;
}

header {
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px; /* Adjust height as needed */
    width: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

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

#hero {
    background: var(--hero-background-color) no-repeat center center/cover;
    color: var(--hero-text-color);
    padding: 7rem 2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.cta-button-secondary {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.cta-button-secondary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

#contact .cta-button {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

#contact .cta-button:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.service-container, .why-us-container, .pricing-container, .testimonial-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

service-card, testimonial-card {
    flex: 1;
    max-width: 380px;
}

.reason, pricing-package {
    background-color: var(--card-background-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    padding: 2.5rem;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    border: 1px solid #eee;
}

.reason svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason:hover, pricing-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

#why-us h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#testimonials {
    background-color: #fff;
}

#pricing {
  background-color: var(--background-color);
}

pricing-package[popular="true"] {
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.05);
}

#about {
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.about-container img {
    width: 40%;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.about-container p {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

#contact {
    background-color: var(--background-color);
}

.contact-info {
    text-align: center;
    margin: 2rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 2rem auto;
    gap: 1rem;
}

input, textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family-body);
    font-size: 1rem;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

footer svg {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
    vertical-align: middle;
}

#reach-us {
    background-color: #fff;
}

.contact-tiles {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-tile {
    background-color: var(--card-background-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    padding: 2.5rem;
    flex: 1;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.contact-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.contact-tile svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-tile h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-tile p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-tile a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-tile a:hover {
    text-decoration: underline;
}

/* Thank You Popup */
#thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    max-width: 400px;
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    #nav-links.active {
        display: flex;
    }

    #nav-links li {
        margin: 0;
        text-align: center;
    }

    #nav-links li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .service-container, .why-us-container, .pricing-container, .contact-tiles {
        flex-direction: column;
        align-items: center;
    }

    service-card, .reason, pricing-package, testimonial-card, .contact-tile {
      max-width: 90%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-container img {
        width: 80%;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}
