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

:root {
    --primary-blue: #0A3161;
    --secondary-blue: #003478;
    --primary-red: #C60C30;
    --accent-red: #B31942;

    --dark-bg: #0a1a2f;
    --light-bg: #f5f7fb;
    --white: #ffffff;

    --text-dark: #1b1f2a;
    --text-body: #445166;
    --text-muted: #334155;

    --border-light: #cfd8e3;
    --shadow-light: 0 10px 25px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.06);

    --font-body: 'Poppins', 'Open Sans', Arial, sans-serif;
    --font-heading: 'Merriweather', 'Roboto Slab', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.narrow {
    width: min(850px, 92%);
    margin: 0 auto;
}

.site-header {
    background: var(--primary-blue);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 4px 0;
    flex-wrap: wrap;
    width: min(1280px, calc(100% - 48px));
    margin: 0 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex: 0 0 auto;
}

.logo-image {
    width: min(380px, 54vw);
    height: 140px;
    max-width: none;
    object-fit: cover;
    object-position: center 46%;
}



.nav-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #dbe8ff;
}

.nav-links a.active {
    color: var(--primary-red);
    background: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.nav-links a.active:hover {
    color: var(--primary-red);
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-red);
    box-shadow: 0 6px 18px rgba(198, 12, 48, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.hero {
    background:
        linear-gradient(90deg, rgba(10, 49, 97, 0.96) 0%, rgba(10, 49, 97, 0.88) 48%, rgba(0, 52, 120, 0.74) 100%),
        url("Images/outdoorInstall.JPG") center right / cover;
    color: var(--white);
    padding: 96px 0 92px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, var(--primary-red), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(2.65rem, 5vw, 4.35rem);
    line-height: 1.04;
    margin-bottom: 20px;
    max-width: 780px;
    color: var(--white);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hero-subheadline {
    font-size: 1.15rem;
    color: #e4ecf7;
    max-width: 650px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero-actions .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 28px;
    border-radius: 12px;
    backdrop-filter: blur(3px);
}

.hero-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.hero-card ul {
    padding-left: 20px;
}

.hero-card li {
    margin-bottom: 10px;
    color: #f2f6fb;
}

.section-white .hero-card {
    margin-top: 34px;
    background: var(--primary-blue);
    color: var(--white);
    border-color: rgba(10, 49, 97, 0.14);
    box-shadow: var(--shadow-medium);
}

.section-white .hero-card h3 {
    color: var(--white);
}

.section-white .hero-card li {
    color: #f2f6fb;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light-bg);
}

.section-white {
    background: var(--white);
}

.section-dark {
    background: var(--primary-blue);
    color: var(--white);
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading h2 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.section-heading p {
    max-width: 760px;
    color: inherit;
}

.info-box {
    background: var(--white);
    border-left: 5px solid var(--primary-red);
    padding: 22px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 30px;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow-light);
}

.card h3 {
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.card p,
.card li {
    color: var(--text-body);
}

.dark-card {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-card h3 {
    color: var(--white);
}

.dark-card p {
    color: #edf3fb;
}

.accent-card {
    border-top: 5px solid var(--primary-red);
}

.two-column {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 36px;
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 14px;
}

.process-step h3 {
    font-size: 1.05rem;
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.list {
    padding-left: 20px;
}

.list li {
    margin-bottom: 10px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 52, 120, 0.12);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info a {
    color: var(--secondary-blue);
    font-weight: 600;
}

.callout {
    border-left: 5px solid var(--primary-red);
}

.site-footer {
    background: var(--primary-blue);
    color: #d6e0ee;
    padding: 24px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .hero-grid,
    .two-column,
    .contact-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 10px 0;
    }

    .logo-image {
        width: min(305px, 88vw);
        height: 112px;
    }

    .nav-links {
        gap: 14px;
    }

    .form-row,
    .grid-5,
    .process {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 70px 0 60px;
    }
}

.slideshow {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: #e9eef5;
}

.slides {
    display: none;
    width: 100%;
}

.slides img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.fade {
    animation: fadeEffect 0.6s ease-in-out;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 49, 97, 0.75);
    color: #ffffff;
    border: none;
    padding: 14px 18px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 2;
}

.slide-btn:hover {
    background: rgba(198, 12, 48, 0.85);
}

.prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.slide-dots {
    position: absolute;
    bottom: 18px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: 0.2s ease;
}

.dot:hover,
.active-dot {
    background: var(--primary-red);
}

@media (max-width: 700px) {
    .slides img {
        height: 280px;
    }

    .slide-btn {
        padding: 10px 14px;
        font-size: 1.1rem;
    }
}

.center-heading {
    text-align: center;
}

.center-heading p,
.center-heading h2 {
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background:
        linear-gradient(90deg, rgba(10, 49, 97, 0.96) 0%, rgba(10, 49, 97, 0.86) 46%, rgba(0, 52, 120, 0.72) 100%),
        url("Images/outdoorInstall.JPG") center right / cover;
    color: var(--white);
    min-height: 360px;
    padding: 96px 0 112px;
    display: flex;
    align-items: center;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 760px;
    font-size: clamp(2.65rem, 6vw, 5rem);
    line-height: 1.02;
    color: var(--white);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.page-hero .eyebrow {
    color: #ffb3c0;
}

.page-subheadline {
    color: #e4ecf7;
    font-size: 1.15rem;
    max-width: 720px;
    margin-top: 18px;
}

.product-hero h1 {
    max-width: 920px;
    font-size: clamp(2.25rem, 4.4vw, 4rem);
    line-height: 1.08;
}

.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, var(--primary-red), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.about-intro-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 14px;
    padding: 32px;
    box-shadow: var(--shadow-medium);
}

.about-intro-card h2 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.about-intro-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-highlight-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    box-shadow: var(--shadow-medium);
}

.highlight-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.highlight-label {
    display: block;
    color: #dfe9f8;
    font-size: 0.98rem;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-feature-card {
    background: var(--white);
    border-radius: 14px;
    padding: 26px;
    box-shadow: var(--shadow-light);
    border-top: 4px solid var(--primary-red);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-feature-card h3 {
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.about-feature-card p {
    color: var(--text-body);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: start;
}

.about-story-text h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: var(--primary-blue);
}

.about-story-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.section-dark .about-story-text .eyebrow {
    color: #ffb3c0;
}

.section-dark .about-story-text h2 {
    color: var(--white);
}

.section-dark .about-story-text p {
    color: #edf3fb;
}

.about-story-panel {
    background: #f7faff;
    border-left: 5px solid var(--primary-red);
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow-light);
}

.about-story-panel h3 {
    margin-bottom: 14px;
    color: var(--primary-blue);
}

.about-story-panel .btn {
    margin-top: 10px;
}

.about-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 26px;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
}

.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 14px;
}

.timeline-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-card p {
    color: #e5edf8;
}

.about-values-section {
    position: relative;
    z-index: 2;
    margin-top: -42px;
    padding-top: 0;
    padding-bottom: 74px;
    border-bottom: 1px solid #e6edf6;
}

.values-heading {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
}

.values-heading h2 {
    color: var(--primary-blue);
    display: inline-block;
    background: var(--white);
    border: 1px solid #dce5f1;
    border-radius: 12px;
    padding: 18px 34px;
    box-shadow: var(--shadow-medium);
}

.values-heading p:last-child {
    color: var(--text-body);
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dce5f1;
    border-radius: 12px;
    padding: 30px 26px 28px;
    box-shadow: 0 16px 34px rgba(10, 49, 97, 0.11);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(10, 49, 97, 0.15);
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
}

.value-card h3 {
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-size: 1.22rem;
    line-height: 1.25;
}

.value-card p {
    color: var(--text-body);
    font-size: 0.98rem;
}

.Home-images {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    padding: 24px min(4vw, 42px);
    background: var(--white);
}

.Home-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

@media (max-width: 1024px) {
    .about-intro-grid,
    .about-story-grid,
    .about-feature-grid,
    .about-timeline,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .Home-images {
        flex-wrap: wrap;
    }

    .Home-images > div {
        flex: 1 1 280px;
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 76px 0 72px;
    }

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

    .page-hero {
        min-height: 300px;
        padding: 74px 0 88px;
    }

    .product-hero h1 {
        font-size: 2.15rem;
        line-height: 1.12;
    }

    .about-intro-grid,
    .about-story-grid,
    .about-feature-grid,
    .about-timeline,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-values-section {
        margin-top: -30px;
        padding-bottom: 58px;
    }

    .values-heading h2 {
        width: 100%;
        padding: 16px 22px;
    }

    .Home-images {
        padding: 18px 4%;
    }

    .Home-images img {
        height: 220px;
    }

    .about-intro-card,
    .about-highlight-box,
    .about-story-panel,
    .about-feature-card,
    .timeline-card,
    .value-card {
        padding: 22px;
    }

    .about-intro-card h2,
    .about-story-text h2 {
        font-size: 1.7rem;
    }
}
