/* =========================================
   FONTS
   ========================================= */
@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    src: url('poppins-regular.woff2') format('woff2'),
         url('poppins-regular.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    src: url('poppins-light.woff2') format('woff2'),
         url('poppins-light.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    src: url('poppins-bold.woff2') format('woff2'),
         url('poppins-bold.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 900;
    src: url('poppins-black.woff2') format('woff2'),
         url('poppins-black.woff') format('woff');
}

/* =========================================
   GLOBAL
   ========================================= */
html {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: rgb(27, 27, 27);
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}

main {
    background-color: rgb(28, 28, 28);
    padding-top: 100px;
    
}

section {
    padding: 5% 0 5%;
}

/* Shared heading / paragraph styles for sections */
.h1-tag {
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 3em;
    line-height: 1em;
    text-decoration: underline;
    text-decoration-color: #70CBFF;
    text-align: center;
    max-width: 25ch;
    margin: auto;
    padding-bottom: 1%;
}

.whatdoing {
    font-weight: 500;
    font-size: 2em;
    color: rgb(194, 194, 194);
    padding-top: 5%;
    text-align: center;
}

.p-tag {
    text-align: center;
    max-width: 50rem;
    margin: auto;
    line-height: 1.5em;
    padding-bottom: 2%;
}
.pl-tag {
    text-align: left;
    max-width: 50rem;
    margin: auto;
    line-height: 1.5em;
    padding-bottom: 2%;
    padding-left: 4%;
    color: white;
    text-decoration: none;
}

.fpl-tag {
    text-align: left;
    max-width: 50rem;
    margin: auto;
    line-height: 1.5em;
    padding-bottom: 2%;
    padding-left: 4%;
    color: white;
    text-decoration: none;
}



main h2 {
    font-size: 1.5em;
    font-weight: 300;
    color: #70CBFF;
}

main p {
    line-height: 1.5em;
    font-size: 1em;
    font-weight: 300;
}

/* Helper highlight */
.highlight {
    padding: 3px 5px;
    color: #222;
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff, #8a8a8a);
    text-decoration: none;
}





.flex {
  display: flex;
  align-items: center;
  position: relative;        /* IMPORTANT for ::after */
  height: auto;
  padding: 4rem 1.5rem;      /* Same padding style as contact section */
  overflow: hidden;          /* Prevent mountain overflow */
  background: linear-gradient(
    180deg,
    rgb(27, 27, 27) 0%,
    #5c5c5c 100%
  );                         /* SAME GRADIENT as contact section */
  z-index: 0;
}





.flex p {
    font-weight: 300;
    line-height: 1.5em;
    font-size: 1.1em;
}

.flex h1 {
    font-weight: 900;
    font-size: 3em;
    line-height: 1em;
}

.flex h2 {
    font-size: 1.5em;
    font-weight: 700;
    color: #70CBFF;
}


.flex1 {
    width: 100%;
    text-align: right;
    margin-left: 20%;
    margin-right: 3%;
}

.flex2 {
    display: flex;
    justify-content: flex-start;
}

/* hero-specific layout */
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 0 5%;
    
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    height: 90vh;
}



.flex .flex1,
.flex .flex2 {
    flex: 1;
    max-width: 600px;
    width: auto;
    margin: 0;
    text-align: left;
}

/* hero headings */
.jobtitle {
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #70CBFF;
    margin-bottom: 0.6rem;
}

.myname {
    font-size: 3em;
    line-height: 1.1em;
    margin-bottom: 1rem;
}

/* hero image */
.hero-image,
.flex .hero-image {
    
    
}

/* Limit width of main hero text */
.hero-text {
    max-width: 60ch;
}


/* =========================================
   BUTTONS
   ========================================= */
.buttons {
    display: flex;
    gap: 20px;
}

.button,
.button1,
.button3 {
    padding: 5px 15px;
    font-size: 1rem;
    background: rgb(31, 31, 31);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease-in-out 0s;
    font-family: 'Poppins';
    font-weight: 300;
    
}

/* neutral outlined */
.button {
    border: 3px solid #c2c2c2;
    color: #c2c2c2;
    box-shadow: #c2c2c2 2px 2px 0px 0px;
}

.button:hover {
    box-shadow: #c2c2c2 5px 5px 0px 0px;
}

.button a {
    color: #c2c2c2;
    text-decoration: none;
}

/* blue outlined */
.button1 {
    border: 3px solid #70CBFF;
    color: #70CBFF !important;
    box-shadow: #70CBFF 2px 2px 0px 0px;
}

.button1:hover {
    box-shadow: #70CBFF 5px 5px 0px 0px;
}

.button3:hover {
    box-shadow: #70CBFF 5px 5px 0px 0px;
}

/* centered blue outlined */
.button3 {
    border: 3px solid #70CBFF;
    color: #70CBFF;
    box-shadow: #70CBFF 2px 2px 0px 0px;
    margin: 2% auto 0;
    width: 10%;
    display: block;
    text-align: center;
}

/* =========================================
   PROJECTS
   ========================================= */
.projects {
    background-color: rgb(27, 27, 27);
    padding-top: 5%;
    padding-bottom: 5%;
}

.whatido {
    padding-bottom: 3%;
        background-color: rgb(40, 40, 40);
}

/* center projects container */
#projects {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* each project row */
.oneproject {
    display: flex;
    gap: 20px;
    padding: 3rem 0;
    background-color: rgb(27, 27, 27);
    align-items: flex-start;
    width: 90%;
}

.theinfo {
    text-align: left;
}

.projectlanguages {
    display: flex;
    gap: 20px;
}

.language-used {
    padding: 3px 7px;
    font-size: 0.8rem;
    font-weight: 300;
    background: transparent;
    border-bottom: 1px solid rgb(62, 146, 204);
    border-top: 1px solid rgb(62, 146, 204);
}

.viewprojectbutton {
    padding: 5px 15px;
    font-size: 1rem;
    background: rgb(31, 31, 31);
    border: 3px solid #70CBFF;
    color: #70CBFF !important;
    text-decoration: none;
    box-shadow: #70CBFF 2px 2px 0px 0px;
    cursor: pointer;
    transition: all 0.22s ease-in-out 0s;
}

.viewprojectbutton:hover {
    box-shadow: #70CBFF 5px 5px 0px 0px;
}

.checkitout {
    font-weight: 300;
}

/* optional layout helpers (kept for compatibility) */
.projects-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
}

.project-item img {
    max-width: 500px;
    height: auto;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.white {
    color: white;
    text-align: center;
}

.contact-body {
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 1%;
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 300;
}

.buttons1 {
    text-align: center;
    justify-content: center;   /* ⬅ center horizontally */
    align-items: center;
    display: flex;
    gap: 15px;  /* or 20px, whatever you want */
}


/* =========================================
   SERVICES (WHAT I DO) CARDS
   ========================================= */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 12px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.servicebox {
    background-color: rgb(27, 27, 27);
    padding: 18px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 0 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.services h2 {
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 1.1em;
    line-height: 1em;
    text-decoration: underline;
    color: white;
    text-decoration-color: #70CBFF;
    padding-top: 5%;
    text-align: left;
}

.service-icon {
    width: 50px;
    fill: white;
    text-align: right;
}

/* =========================================
   WHAT WE OFFER
   ========================================= */
.offer-section {
    background-color: rgb(46, 46, 46);
}

.offer-card h3 {
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 1.1em;
    margin-bottom: 0.5em;
    color: white;
    text-decoration: underline;
    text-decoration-color: #70CBFF;
}

.offer-card p {
    font-weight: 300;
    font-size: 0.95em;
    line-height: 1.5em;
}

.offer-icon {
    font-size: 1.4rem;
    color: #70CBFF;
    margin-bottom: 0.5em;
}

.offer-cta {
    display: block;
    margin: 3% auto 0;
    width: fit-content;
}

/* =========================================
   PERFORMANCE SECTION
   ========================================= */
.performance-section {
    background-color: rgb(23, 23, 23);
}

.performance-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 90%;
    margin: 0 auto;
}

.performance-left,
.performance-right {
    flex: 1 1 320px;
}

.performance-left h1 {
    font-weight: 900;
    font-size: 2.5em;
    line-height: 1.1em;
    text-align: left;
    text-decoration: underline;
    text-decoration-color: #70CBFF;
    margin-bottom: 0.5em;
}

.performance-left .whatdoing {
    padding-top: 0;
    margin-bottom: 0.5em;
}

.perf-intro {
    text-align: left;
    width: 100%;
    margin: 0 0 1.5em 0;
}

.perf-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2em 0;
}

.perf-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8em;
    font-weight: 300;
    font-size: 0.95em;
    line-height: 1.5em;
}

.perf-icon {
    color: #70CBFF;
    font-weight: 900;
    margin-top: 2px;
}

.perf-cta {
    margin-top: 1em;
}

.perf-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2em;
}

.perf-stat {
    flex: 1 1 120px;
    text-align: center;
}

.perf-stat h2 {
    font-weight: 900;
    font-size: 2.2em;
    margin: 0;
    color: #70CBFF;
}

.perf-stat p {
    font-weight: 300;
    font-size: 0.95em;
    margin: 0.3em 0 0 0;
}

.perf-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #70CBFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    background-color: rgb(46, 46, 46);
    text-align: center;
}
.pricing-section2 {
    
    text-align: center;
    padding-bottom: 50px;
}

.pricing-tag {
    font-weight: 500;
    font-size: 1.2em;
    color: rgb(194, 194, 194);
    margin: 0 0 0.4em 0;
}

.pricing-main-cta {
    display: block;
    width: 30%;
    margin: 1.5em auto 2em;
}

/* cards container */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
}

/* base pricing card */
.pricing-card {
    background-color: rgb(27, 27, 27);
    border-radius: 20px;
    border: 1px solid #70CBFF;
    padding: 24px 20px 26px;
    flex: 1 1 280px;
    max-width: 380px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* highlighted Monthly card with glow */
.monthly-pricing-card {
    background-color: rgb(27, 27, 27);
    border-radius: 20px;
    border: 2px solid #70CBFF;
    padding: 24px 20px 26px;
    flex: 1 1 280px;
    max-width: 380px;
    text-align: left;
    box-shadow:
        0 0 18px rgba(112, 203, 255, 0.7),
        0 0 28px rgba(112, 203, 255, 0.5);
    transition: box-shadow 0.3s ease;
}

.monthly-pricing-card:hover {
    box-shadow:
        0 0 28px rgba(112, 203, 255, 1),
        0 0 48px rgba(112, 203, 255, 0.9);
}

.pricing-title {
    font-weight: 900;
    font-size: 1.4em;
    margin: 0 0 0.3em 0;
    color: #ffffff;
}

.pricing-subtitle {
    font-weight: 300;
    font-size: 0.95em;
    margin: 0 0 1em 0;
    color: rgb(194, 194, 194);
}

.pricing-price {
    margin-bottom: 1.2em;
}

.pricing-amount {
    font-weight: 900;
    font-size: 2em;
    color: #70CBFF;
    display: block;
}

.pricing-note {
    font-weight: 300;
    font-size: 0.95em;
    color: rgb(194, 194, 194);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em 0;
}

.pricing-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 0.6em;
    font-weight: 300;
    font-size: 0.95em;
    line-height: 1.5em;
}

.pricing-check {
    color: #70CBFF;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-btn {
    display: inline-block;
    margin-top: 0.5em;
    text-align: center;
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews-section {
    background-color: rgb(23, 23, 23);
    padding: 6% 0 6%;
    text-align: center;
}

.h2-tag {
    font-weight: 500;
    font-size: 1.2em;
    color: rgb(194, 194, 194);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.h2l-tag{
    font-weight: 500;
    font-size: 1.2em;
    color: rgb(194, 194, 194);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    padding-left: 4%;
}

.fh2l-tag{
    font-weight: 500;
    font-size: 1.2em;
    color: rgb(194, 194, 194);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    padding-left: 4%;
}

.reviews-intro {
    width: 70%;
    max-width: 800px;
    margin: 0 auto 3%;
    font-weight: 300;
    font-size: 1em;
    line-height: 1.6em;
    color: rgb(210, 210, 210);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
}

.review-card {
    background-color: rgb(27, 27, 27);
    border-radius: 20px;
    border: 1px solid #70CBFF;
    padding: 20px 18px 24px;
    flex: 1 1 260px;
    max-width: 330px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.review-label {
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #70CBFF;
    margin: 0 0 0.4em 0;
}

.review-title {
    font-weight: 900;
    font-size: 1.3em;
    margin: 0 0 0.6em 0;
    color: #ffffff;
}

.review-text {
    font-weight: 300;
    font-size: 0.95em;
    line-height: 1.5em;
    color: rgb(210, 210, 210);
    margin: 0 0 1em 0;
}

.review-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em 0;
}

.review-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 0.5em;
    font-weight: 300;
    font-size: 0.95em;
    line-height: 1.4em;
}

.review-check {
    color: #70CBFF;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.review-btn {
    margin-top: 0.5em;
    display: inline-block;
    text-align: center;
}

/* NAVBAR*/
.main-nav {
    background-color: rgb(27, 27, 27);
    border-bottom: 1px solid #141414;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo img {
    height: 70px;
    width: auto;
    display: block;
}

/* Menu */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

/* Links */
.nav-link,
.dropdown-link,
.nav-toggle {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0.35rem 0.25rem;
    cursor: pointer;
}

.nav-link:hover,
.dropdown-link:hover,
.nav-toggle:hover {
    color: #70CBFF;
}

/* Get Started button in nav */
.nav-cta {
    padding: 6px 18px;
    font-size: 0.85rem;
}

.nav-cta-wrap {
    margin-left: 8px;
}

/* Burger (mobile) */
.nav-burger {
    display: none;
    background: none;
    border: 1px solid #70CBFF;
    color: #70CBFF;
    padding: 4px 10px;
    font-size: 1.25rem;
    cursor: pointer;
}

/* DROPDOWNS BASE */
.dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background-color: rgb(46, 46, 46);
    border-radius: 8px;
    min-width: 220px;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.dropdown-sub {
    position: relative;
}

/* Items inside dropdowns */
.dropdown-menu .dropdown-link,
.dropdown-menu .nav-toggle {
    display: block;
    
    text-align: left;
    padding: 8px 0px 12px;
    
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding-left: 5%;
}

/* remove divider on last item */
.dropdown-menu li:last-child .dropdown-link,
.dropdown-menu li:last-child .nav-toggle {
    border-bottom: none;
}

/* Hover style */
.dropdown-menu .dropdown-link:hover,
.dropdown-menu .nav-toggle:hover {
    background-color: #000000;
}

/* Focus style */
.dropdown-menu .dropdown-link:focus,
.dropdown-menu .nav-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 1px #70CBFF;
}

/* Nested sub-menus look the same */
.dropdown-menu.sub-menu {
    background-color: rgb(46, 46, 46);
}

/* Desktop hover behaviour */
@media (min-width: 901px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
    }

    .dropdown-sub:hover > .dropdown-menu.sub-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: rgb(52, 52, 52);
    padding: 50px 20px 20px;
    color: white;
    
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-logo {
    height: 82px;
    width: 262px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.footer-title3 {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #70CBFF;
    
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #70CBFF;
}

.footer-line {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-icon {
    margin-right: 6px;
    color: white !important; 
    text-decoration: none !important;
}

.footer-icon a:visited {
     
    
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #666;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #70CBFF;
    text-decoration: underline;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom a:visited {
    color: #70CBFF !important;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

/* 1030px */
@media only screen and (max-width: 1030px) {
    main {
        margin-left: 1%;
        margin-right: 1%;
    }

    .contact-body {
        text-align: center;
    }

    
}

/* 1000px */
@media only screen and (max-width: 1000px) {
    main {
        height: 100%;
    }

    .flex1,
    .flex2 {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .flex {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .flex .flex1,
    .flex .flex2 {
        max-width: 100%;
        text-align: center;
    }

    .hero-image,
    .flex .hero-image {
        height: 80%;
        margin: 0 auto;
    }

    .buttons {
        display: block;
    }

    .oneproject {
        flex-direction: column;
        padding: 5% 0;
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid rgb(62, 146, 204);
    }

    img {
        width: 100%;
        height: auto;
    }
}

/* 900px */
@media (max-width: 900px) {
    /* services: 2 per row */
    .servicebox {
        flex: 0 1 calc(50% - 20px);
    }

    .nav-burger {
        display: block;
        margin-left: auto;
    }

    .nav-inner {
        flex-wrap: wrap;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 6px;
        display: none;
        padding-top: 8px;
    }

    .main-nav.open .nav-menu {
        display: flex;
    }

    /* Disable hover dropdowns on mobile */
    .dropdown:hover > .dropdown-menu {
        display: none;
    }

    /* Dropdowns open via JS .open */
    .dropdown.open > .dropdown-menu,
    .dropdown-sub.open > .dropdown-menu.sub-menu {
        display: block;
        position: static;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown-menu {
        width: 100%;
        padding-left: 1rem;
        box-shadow: none;
    }

    /* Parent item gets white border when open */
    .dropdown.open > .nav-toggle,
    .dropdown-sub.open > .nav-toggle {
        border: 2px solid #ffffff;
    }

    .reviews-intro {
        width: 90%;
    }
}

/* 768px */
@media (max-width: 768px) {
    h1 {
        font-size: 1.7em !important;
        line-height: 1.1em;
    }

    h2 {
        font-size: 0.9em !important;
        line-height: 1.6em;
    }

    p {
        font-size: 0.9rem !important;
        line-height: 1.5em;
    }

    .button3 {
        width: 40%;
    }

    .flex {
        gap: 0;
        padding: 0;
    }

    .h1-tag {
        font-size: 0.5rem;
    }

    #projects {
        padding: 0 1rem;
    }

    .performance-left h1 {
        text-align: center;
    }

    .performance-left {
        text-align: center;
    }

    .perf-list {
        text-align: left;
    }

    .perf-cta {
        display: inline-block;
        margin: 1em auto 0;
    }

    .contact-body {
        padding-left: 0%;
        padding-right: 0%;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-section {
        padding: 8% 0 8%;
    }

    .pricing-main-cta {
        width: 70%;
    }

    .review-card {
        max-width: 100%;
    }

    .footer-logo {
        
    }

    .contact-section{
        padding: 0 0 50px 0 !important;
        
    }
}

/* 700px */
@media (max-width: 700px) {
    .footer-inner {
        flex-direction: column;
    }
}

/* 600px */
@media (max-width: 600px) {
    /* services: 1 per row */
    .servicebox {
        flex: 0 1 100%;
    }
}

/* CONTACT PAGE LAYOUT */
.contact-section {
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(27, 27, 27) 0%, #5c5c5c 100%);
  z-index: 0;
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

/* LEFT COLUMN */
.contact-info {
  flex: 1 1 320px;
  
}

/* RIGHT COLUMN / FORM CARD */
.contact-form {
  flex: 1 1 360px;
  padding: 2rem;
  border-radius: 12px;
  background: #111111;            /* adjust if needed to match theme */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* FORM FIELDS */
.form-fields p {
  margin-bottom: 1rem;
}

.form-fields label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.form-fields input,
.form-fields textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #000000;      /* theme-ish blue */
  background: #1e1e1e;
  color: #ffffff;
  font-family: inherit;
  box-sizing: border-box;
}

.form-fields textarea {
  min-height: 140px;
  resize: vertical;
}

/* TURNSTILE + BUTTON ROW */
.form-footer {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-turnstile {
  flex: 1 1 auto;
}

/* Make the button use your existing theme button styles via .button1 */
.contact-form .button1 {
  min-width: 190px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-top {
    display: none;
  }

  .form-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .contact-form .button1 {
    width: 100%;
  }

  .form-turnstile {
    display: flex;
    justify-content: center;
  }
}

.contact-top{
    padding-top: 3%;
}

a:visited {
    
}

footer .fh2l-tag, .fpl-tag{
    font-size: .9em;
}

.navspace{
height: 100px;
}

.home .navspace {
    display: none;
}
.about-section {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 4rem 2rem;
}

.privacy-section {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    
}

.terms-section {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    
}

/* LEFT SIDE (IMAGE) */
.about-left {
    width: 50%;
    display: flex;
    justify-content: flex-end;   /* pushes the image toward the center */
    padding-right: 3rem;        /* controls how far into the center it leans */
}

.about-photo {
                    
    height: 925px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.web-design-photo {
                     /* adjust image size here */
    height: 925px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

/* RIGHT SIDE (TEXT) */
.about-right {
    width: 50%;
    text-align: left;           /* left-aligned text */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-sub {
    color: #70CBFF;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1em;
    margin-bottom: 1rem;
}

.about-btn {
    margin-top: 1.5rem;
    width: fit-content;
}

/* ABOUT SECTION - MOBILE FIX */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding-left: 0;      /* stack image over text */
    
  }

  .about-left {
    width: 100%;
    justify-content: center;     /* center the image on mobile */
    padding-right: 0;
    margin-bottom: 2rem;
    
  }

  .about-photo {
    width: 90%; 
    height: 60vh;                 /* tweak this if you want bigger/smaller */
  }

  .web-design-photo {
    width: 90%; 
    height: 60vh;                 /* tweak this if you want bigger/smaller */
  }

  .about-right {
    width: 90%;
    
    margin: 0 auto;
    text-align: left;            /* keep text left-aligned */
  }

  .about-right .about-title {
    font-size: 2rem;
  }

  .navspace{
    height: 20px;
  }

}

.longview-washington-photo{

    width: 100%;
    height: 70vh;
    aspect-ratio: 2 / 3;   /* same shape as 1000x1500 */
    overflow: hidden;
    border-radius: 20px;   /* optional */
    position: relative;
    background: #000; 
    object-fit: cover;     /* fills the frame, crops overflowing parts */
    object-position: center;
}

@media (max-width: 768px) {
  .longview-washington-photo {
max-width: 90%;
height: 200px;
  }
}

.longview .h2l-tag{
    padding-left: 0;
}

.padding-eight{
    padding-left: 8%;
    padding-right: 8%;
}

.faq-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 1.5rem 4rem;
        }

        .faq-intro {
            text-align: center;
            margin-bottom: 2rem;
        }

        .faq-intro h1.h1-tag {
            max-width: 100%;
        }

        .faq-intro .h2-tag {
            max-width: 40rem;
            margin: 0.75rem auto 0;
        }

        .faq-list {
            margin-top: 2rem;
            border-radius: 16px;
            background-color: rgb(27, 27, 27);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        .faq-item {
            border-bottom: 1px solid #333;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            width: 100%;
            padding: 1rem 1.5rem;
            background: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }

        .faq-question-text {
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #ffffff;
        }

        .faq-question-text span {
            color: #70CBFF;
            margin-right: 0.5rem;
        }

        .faq-icon {
            font-size: 1.4rem;
            font-weight: 700;
            color: #70CBFF;
            margin-left: 1rem;
            flex-shrink: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 1.5rem;
            transition: max-height 0.25s ease, padding-top 0.25s ease, padding-bottom 0.25s ease;
            font-size: 0.95rem;
            line-height: 1.6rem;
            color: #e0e0e0;
        }

        .faq-answer p {
            margin: 0 0 1rem 0;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
            padding-top: 0.75rem;
            padding-bottom: 1rem;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 2rem 1rem 3rem;
            }
        }
         .fpl-tag{
            text-align: left;
         }

         