* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}
:target {
    scroll-padding-top: 120px;
}
.main-menu {
position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0;
    width: 100%;
    z-index: 1000;
}
@media (min-width: 993px) {
    .main-menu {
        position: sticky;
        top: 0;
    }
}
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
    gap: 1rem;
}
.logo-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-placeholder img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.menu-items {
    display: flex;
    align-items: center;
    margin-left: 50px;
}
.menu-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    margin-right: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    min-height: 44px; /* Tap target size */
    display: flex; /* Tap target size */
    align-items: center; /* Tap target size */
}
.menu-item:last-child {
    margin-right: 0;
}
.menu-item:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
}
.burger-menu-icon {
    display: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    margin-left: auto;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.burger-menu-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
    .menu-container {
        justify-content: space-between;
    }
    .menu-items {
display: none;
flex-direction: column;
background: rgba(35, 35, 55, 0.85); /* Dark, semi-opaque background */
backdrop-filter: blur(10px); /* Blurs the content behind for readability */
-webkit-backdrop-filter: blur(10px); /* Safari compatibility */
border: 1px solid rgba(255, 255, 255, 0.2); /* Adds a subtle edge */
position: absolute;
top: 80px;
right: 0;
left: auto;
max-width: 250px;
width: 70%;
padding: 1rem 0;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Enhanced shadow for depth */
border-radius: 0 0 10px 10px;
}
    .menu-items.active {
        display: flex;
    }
    .menu-item {
        margin: 0.5rem 0;
        padding: 16px 2rem;
        color: #ffffff;
        text-align: right;
        text-shadow: none;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .menu-item:hover {
        background: rgb(100, 150, 255);
    }
    .burger-menu-icon {
        display: block;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.hero-section {
    max-width: 1300px;
    margin: 20px auto;
    padding: 15px;
    display: flex;
    gap: 2rem; 
    align-items: flex-start; /* Aligns items to the top */
}
.hero-left {
    flex: 1.5; 
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
}
.hero-right {
    flex: 1; /* Adjusted flex for better balance */
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-title-subtitle {
    margin-bottom: 1.5rem;
}
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: left;
}
.hero-social-link { 
    background-color: #0077B5;
    color: #ffffff;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite 1s; 
}
.hero-section h1 .hero-social-link {
    display: inline-flex;
width: 2.5rem;
height: 2.5rem;
font-size: 1.5rem; /* Increased font-size to make icon larger */
padding: 6px;      /* Decreased padding to make room for the icon */
margin-left: 0.75rem;
vertical-align: middle;
transform: translateY(-4px);
    
}
.hero-social-link:hover { 
    transform: translateY(-3px) scale(1.05);
    background-color: #005582;
}
.hero-section h1 .hero-social-link:hover {
    transform: translateY(-4px) scale(1.05);
}
.hero-section .feature-list {
    margin-top: 20px;
}
.hero-section .feature-list p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
@media (max-width: 600px) {
    .hero-section .feature-list p {
        white-space: normal;
        font-size: 1rem;
        text-align: left;
        margin-bottom: 0;
        padding-left: 1.8rem;
        text-indent: -1.8rem;
        margin-left: 0;
        padding-right: 1rem;
    }
    .hero-section .feature-list {
        margin: 15px 0 0;
        padding: 0 1rem;
    }
}
.feature-list .checkmark {
    color: #00ff88;
    margin-right: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.cta-button-glass {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0rem 0 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: fit-content;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-button-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
/* --- NEW CTA BUTTON STYLE --- */
.cta-button-primary {
    background: #00ff88;
    color: #1a1a1a; /* Dark text for contrast */
    border: 1px solid #00ff88;
}
.cta-button-primary:hover {
    background: #00e078;
    border-color: #00e078;
    color: #1a1a1a;
}
.clients-section {
    margin: 5rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}
.clients-scroll-container {
    margin-top: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    text-align: center;
    overflow: hidden;
}
.clients-scroll-container p {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .clients-scroll-container p {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 1.3rem;
        line-height: 1.3;
        white-space: normal;
        display: block;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
    white-space: nowrap;
}
.clients-scroll-track {
    display: flex;
    animation: scroll-left 40s linear infinite;
    gap: 2rem;
    transform: translateX(0%);
}
@media (min-width: 769px) {
    .clients-scroll-track:hover {
        animation-play-state: paused;
    }
}
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.client-placeholder {
    max-width: 200px;
    max-height: 200px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-shrink: 0;
}
.client-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.testimonials-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    scroll-margin-top: 100px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial-card-1,
.testimonial-card-2,
.testimonial-card-3 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 2s ease;
    display: flex;
    flex-direction: column;
}
.testimonial-card-1.animate,
.testimonial-card-2.animate,
.testimonial-card-3.animate {
    opacity: 1;
    transform: translateX(0);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 15px;
    flex-shrink: 0;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}
.testimonial-author {
    font-weight: bold;
    min-height: 1.5em;
}
.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}
.testimonial-link {
    color: #00ff88;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 8px 0;
    display: inline-block;
    font-weight: bold;
}
.testimonial-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.testimonial-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem auto 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: fit-content;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.highlight-percentage {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.highlight-text {
    color: #00ff88;
    font-weight:  bold;
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
}
.star-rating {
    color: #FFD700;
    margin-bottom: 0;
    font-size: 1.2rem;
}
.star-rating .fas {
    margin-right: 3px;
}
.service-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}
@media (max-width: 768px) {
    .highlight-percentage {
        white-space: normal;
        display: inline;
        font-size: 1.5rem;
    }
    .highlight-text {
        white-space: normal;
        display: inline;
        font-size: 1.2rem;
    }
    .service-tag {
        width: fit-content;
    }
}
.services-cta-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}
.services-cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}
.services-cta-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.services-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    scroll-margin-top: 100px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.services-grid > [class^="service-card-"] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.service-card-conversion {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(86, 227, 159, 0.3);
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.5s ease;
}
.service-card-audit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(118, 75, 162, 0.3);
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.5s ease 0.1s;
}
.service-card-pmax {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.5s ease 0.2s;
}
.service-card-leads {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(240, 147, 251, 0.3);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease 0.2s;
}
.service-card-search {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(86, 227, 159, 0.3);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease 0.1s;
}
.service-card-landing {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
}
.service-icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00ff88;
    flex-shrink: 0;
}
.service-card-conversion.animate,
.service-card-audit.animate,
.service-card-pmax.animate,
.service-card-leads.animate,
.service-card-search.animate,
.service-card-landing.animate {
    opacity: 1;
    transform: translateX(0);
}
.services-grid > [class^="service-card-"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.service-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #00ff88;
}
.faq-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    scroll-margin-top: 100px;
}
.faq-cta-mobile {
    display: none;
    text-align: center;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .faq-cta-mobile {
        display: block;
    }
}
.faq-accordion {
    margin-top: 2rem;
}
.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
    min-height: 44px;
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}
.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #00ff88;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
}
.faq-answer p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}
.contact-form-2 {
    max-width: 670px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}
.form-row-2, .name-email-row {
    display: flex;
    gap: 1.5rem;
}
.form-group {
    flex: 1;
    position: relative;
    margin-bottom: 1.5rem;
}
.form-group:last-of-type {
    margin-bottom: 0;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    min-height: 44px;
    transition: border-color 0.3s ease;
}
.form-group textarea {
     min-height: 120px;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}
.form-group input.error, .form-group textarea.error {
    border-color: #ff6b6b;
}
.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: bold;
}
.error-message.show {
    display: block;
}
.contact-form-2 button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00ff88;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
    min-height: 52px;
    margin-top: 1rem;
}
.contact-form-2 button[type="submit"]:hover {
    background: #00e078;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.contact-form-2 button[type="submit"]:disabled {
    background: rgba(0, 255, 136, 0.5);
    cursor: not-allowed;
}
.spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border-left-color: #1a1a1a;
    animation: spin 1s ease infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#form-status {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: none;
}
#form-status.success {
    background-color: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    display: block;
}
#form-status.error {
    background-color: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    display: block;
}
.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 5rem;
    text-align: center;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 12px 16px;
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.footer-link:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    padding: 12px;
    border-radius: 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}
.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}
.centered-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px 0;
}
.modal-content {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    max-width: 1000px;
    width: 90%;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}
.modal-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}
.modal-title {
    flex: 1;
    min-width: 0;
}
.modal-title h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #ffffff;
    line-height: 1.2;
}
.modal-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}
.modal-info-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex: 1;
    min-width: 120px;
    text-align: center;
}
.modal-info-box h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modal-info-box p {
    font-size: 0.95rem;
    margin: 0;
    color: #ffffff;
    font-weight: 500;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3000;
}
.close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}
.modal-body {
    padding: 30px;
}
.modal-summary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.modal-summary h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #00ff88;
}
.modal-summary p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}
.pricing-modal-content {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: gradient 15s ease infinite;
}
    
@media (min-width: 769px) {
    .pricing-modal-content {
        margin-top: 40px !important;
    }
    
    .hero-section {
        margin: 50px auto;
    }
    .mobile-break { display: none; }
}
    
.pricing-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.pricing-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #00ff88;
}
.pricing-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
}
.pricing-none {
    color: #ffffff;
    font-weight: bold;
}
@media (max-width: 768px) {
    .modal {
        padding: 10px 0;
    }
    .modal-content {
        width: 95%;
        margin: 20px auto;
        border-radius: 15px;
    }
    .modal-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    .modal-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    .modal-title h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        text-align: center;
    }
    .modal-info-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .modal-info-box {
        min-width: calc(50% - 8px);
        text-align: center;
        padding: 10px 12px;
        flex: none;
    }
    .modal-info-box h4 {
        font-size: 0.8rem;
    }
    .modal-info-box p {
        font-size: 0.9rem;
    }
    .modal-body {
        padding: 20px;
    }
    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        top: 15px;
        right: 15px;
    }
    .pricing-modal-content {
        margin: 20% auto;
        padding: 20px;
    }
    .pricing-section {
        padding: 15px;
    }
}
@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 10px auto;
    }
    .modal-header {
        padding: 15px;
    }
    .modal-body {
        padding: 15px;
    }
    .modal-title h3 {
        font-size: 1.3rem;
    }
    .modal-summary {
        padding: 15px;
    }
    .pricing-section {
        padding: 15px;
    }
}
/* --- HERO STYLES START --- */
.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.headshot-container {
    position: relative;
    width: 306px;
    height: 495px;
    border-radius: 15px;
    overflow: visible; /* Allow cards to overlay */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.headshot-container .hero-headshot {
    border-radius: 15px; /* Match container rounding */
}
.floating-card {
    position: absolute;
    background: rgb(255, 255, 255);
    color: #333; /* Dark text for readability on white */
    border-radius: 12px;
    padding: 0.7rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-align: center;
    width: 155px;
    height: 91.16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.floating-card h4 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #23a6d5; /* Using a theme color */
    margin: 0 0 0.35rem 0;
    text-shadow: none;
}
.floating-card p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
}
.floating-card-1 {
    top: 21px;
    right: -35px;
}
.floating-card-2 {
    bottom: 21px;
    left: -35px;
}
/* --- HERO STYLES END --- */

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        gap: 3rem; /* Increased gap */
    }
    .hero-left, .hero-right {
        flex: 1;
        width: 100%;
    }
    .hero-left {
        order: 2;
    }
    .hero-right {
        order: 1;
        min-height: auto;
        transform: none;
        margin-top: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .clients-scroll-track {
        padding-left: 0;
        justify-content: flex-start;
    }
    .hero-section .feature-list p {
        padding: 1em;
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
    }
   
    .floating-mobile-linkedin-icon { 
        display: flex; 
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1001;
    }
    .hero-section h1 .hero-title-linkedin-icon {
        display: none;
    }
    .footer .social-links {
        display: none;
    }
    .headshot-container {
        width: 100%;
        max-width: 215px;
        height: auto;
        aspect-ratio: 430 / 540;
        margin: 0 auto;
        overflow: visible;
    }
    .floating-card {
        width: 160px;
        height: 104px; /* Maintain aspect ratio */
        padding: 0.75rem;
    }
    .floating-card h4 {
        font-size: 1.5rem;
    }
    .floating-card p {
        font-size: 0.8rem;
    }
    .floating-card-1 {
        top: 20px;
        right: -10px;
    }
    .floating-card-2 {
        bottom: 20px;
        left: -10px;
    }
}
@media (max-width: 768px) {
    .hero-section {
        margin: 0 auto 30px;
        padding: 0 15px 15px;
        text-align: center;
    }
    .hero-left {
        align-items: center; /* Center content on mobile */
    }
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .hero-section h1 {
        text-align: center;
    }
    .hero-title-subtitle {
        justify-content: center;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.5rem;
        text-align: center;
        white-space: normal;
    }
    .form-row-2, .name-email-row {
        flex-direction: column;
        gap: 0;
    }
    .client-placeholder {
        max-width: 160px;
        max-height: 160px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-cta-buttons .cta-button-glass {
        width: 100%;
        max-width: 300px;
    }
    .clients-scroll-track {
        animation-duration: 20s;
    }
    .clients-scroll-container p {
        white-space: normal;
        display: block;
        text-align: center;
    }
    .content-block-4 {
        padding-left: 32px;
        padding-right: 32px;
    }
    .floating-card {
        width: 140px;
        height: 91px; /* Maintain aspect ratio */
    }
    .floating-card-1 {
        top: 10px;
        right: -25px;
    }
    .floating-card-2 {
        bottom: -40px;
        left: -25px;
    }
}
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .feature-list p {
        font-size: 1rem;
    }
    .clients-scroll-container p {
        font-size: 1.3rem;
    }
    .contact-form-2 {
        padding: 1.5rem;
    }
    .client-placeholder {
        max-width: 140px;
        max-height: 140px;
    }
    .floating-card {
        transform: scale(0.85);
    }
    .floating-card-1 {
        top: 10px;
        right: -95px;
    }
    .floating-card-2 {
        bottom: -40px;
        left: -95px;
    }
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.static-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.case-studies-wrapper {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    scroll-margin-top: 100px;
}
.case-studies-section {
    /* Styles moved to wrapper */
}
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}
.case-study-card-1,
.case-study-card-2,
.case-study-card-3 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 2s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.case-study-card-1.animate,
.case-study-card-2.animate,
.case-study-card-3.animate {
    opacity: 1;
    transform: translateX(0);
}
.case-study-tags-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.case-study-service-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}
.case-study-type-tag {
    display: inline-block;
    background: rgba(231, 60, 126, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(231, 60, 126, 0.5);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}
.case-study-logo-placeholder {
    width: 120px;
    height: 120px;
    background: transparent;
    border: none;
    border-radius: 8px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-study-logo-placeholder img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.case-study-text {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}
.scorecards-container {
    display: flex;
    justify-content: space-around;
    margin-top: 0rem;
    flex-wrap: wrap;
    gap: 1rem;
    flex-grow: 1;
}
.scorecard {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex: 1;
    min-width: 120px;
    text-align: center;
}
.scorecard h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.scorecard p {
    font-size: 0.95rem;
    margin: 0;
    color: #ffffff;
    font-weight: 500;
}

/* --- MOBILE CASE STUDY ACCORDION STYLES START --- */
.case-studies-section-mobile {
    display: none; /* Hide on desktop by default */
}
.case-studies-accordion {
    margin-top: 2rem;
}
.case-study-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.case-study-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
    min-height: 44px;
}
.case-study-question:hover {
    background: rgba(255, 255, 255, 0.1);
}
.case-study-question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.case-study-question-content img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
}
.case-study-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #00ff88;
    margin-left: 1rem;
    flex-shrink: 0;
}
.case-study-item.active .case-study-icon {
    transform: rotate(45deg);
}
.case-study-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background: rgba(0, 0, 0, 0.1);
    padding: 0;
}
.case-study-item.active .case-study-answer {
    max-height: 1000px; /* Adjust if content is larger */
}
.case-studies-sub-accordion {
    padding: 0.5rem;
}
.case-study-sub-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}
.case-study-sub-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
}
.case-study-sub-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: #00ff88;
}
.case-study-sub-item.active .case-study-sub-icon {
     transform: rotate(45deg);
}
.case-study-sub-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 1.5rem;
}
.case-study-sub-item.active .case-study-sub-answer {
     max-height: 600px;
     padding: 1.5rem;
     padding-top: 0;
}
.case-study-sub-answer .case-study-tags-container {
    justify-content: flex-start;
}
.case-study-sub-answer .scorecards-container {
    flex-direction: row;
    gap: 1rem;
}
.case-study-sub-answer .scorecard {
    text-align: left;
}
.case-study-sub-answer .services-cta-button {
    margin-top: 1.5rem;
    width: 100%;
}
/* --- MOBILE CASE STUDY ACCORDION STYLES END --- */


@media (max-width: 768px) {
    .scorecards-container {
        flex-direction: column;
    }
    .case-studies-section {
        display: none;
    }
    .case-studies-section-mobile {
        display: block;
    }
    .case-study-service-tag {
        display: none;
    }
}
@media (min-width: 769px) {
    .case-study-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .case-study-logo-placeholder {
        margin: 0;
        height: auto; 
    }

    .case-study-tags-container {
        margin-bottom: 0;
        justify-content: flex-end;
    }
}

/* --- NEW STYLES FOR NESTED FAQ ACCORDION --- */
.faq-item.active .faq-answer {
    /* Adjust padding for the container of the nested accordion */
    padding: 1rem; 
}
.faq-sub-accordion {
    width: 100%;
}
.faq-sub-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}
.faq-sub-item:last-child {
    margin-bottom: 0;
}
.faq-sub-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #00ff88; !important;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    min-height: 44px;
}
.faq-sub-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.faq-sub-item.active .faq-sub-icon {
    transform: rotate(45deg);
}
.faq-sub-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}
.faq-sub-item.active .faq-sub-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq-sub-answer p {
    margin-bottom: 1rem;
}
.faq-sub-answer p:last-child {
    margin-bottom: 0;
}


/* --- REVISED RULE FOR MOBILE SERVICE CARD TEXT ALIGNMENT --- */
@media screen and (max-width: 768px) {
    /* This forces the container of the service text to left-align its content... */
    [class^="service-card-"] > div:not(.service-icon-placeholder) {
      text-align: left;
    }
    
    /* ...while this rule ensures the H3 title within it remains centered. */
    [class^="service-card-"] .service-title {
      text-align: center;
    }
}
