:root {
    --primary: #00B4B4;
    --primary-dark: #008B8B;
    --dark: #000000;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --gray: #999999;
    --border: #333333;
    --footer-bg: #1a2b2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x:hidden;
    width: 100%;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #000000;
    color: #000000;
    line-height: 1.6;
    overflow-x: visible;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-center > li {
    position: relative;
}

.nav-center a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-center a:hover {
    color: #00B4B4;
}

.dropdown-arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(50, 50, 50, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    min-width: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    margin-top: 0.5rem;
}

.nav-center li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-center li:hover .dropdown-arrow {
    transform: rotate(135deg);
}

.dropdown-column h4 {
    color: #00B4B4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #00B4B4;
}

.dropdown-column ul {
    list-style: none;
}

.dropdown-column ul li {
    margin-bottom: 0.8rem;
}

.dropdown-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.dropdown-column ul li a:hover {
    color: #00B4B4;
}

.nav-cta {
    background: #00B4B4;
    color: #000000;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #00B4B4;
}

.nav-cta:hover {
    background: transparent;
    color: #00B4B4;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 80px 2rem 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 1.25rem 0;
}

.mobile-link:hover {
    color: #00B4B4;
}

.mobile-cta {
    background: #00B4B4;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #00B4B4;
    text-align: center;
    display: block;
    margin-top: 1.5rem;
}

.mobile-cta:hover {
    background: transparent;
    color: #00B4B4;
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    cursor: pointer;
    gap: 1rem;
    overflow: visible;
}

.mobile-dropdown-toggle:hover {
    color: #00B4B4;
}

.mobile-dropdown-arrow {
    display: inline-block;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #00B4B4;
}

.mobile-dropdown-toggle.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 180, 180, 0.1);
    border-left: 3px solid #00B4B4;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.mobile-dropdown-menu.active {
    max-height: 1000px;
    padding: 1rem 2rem;
}

.mobile-dropdown-section {
    margin-bottom: 1.5rem;
}

.mobile-dropdown-section:last-child {
    margin-bottom: 0;
}

.mobile-dropdown-section h5 {
    color: #00B4B4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #00B4B4;
}

.mobile-dropdown-section ul {
    list-style: none;
}

.mobile-dropdown-section ul li {
    margin-bottom: 0.6rem;
}

.mobile-dropdown-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding-left: 1rem;
}

.mobile-dropdown-section ul li a:hover {
    color: #00B4B4;
}

/* ===== HERO SECTION ===== */
.hero-wrapper {
    height: 700px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://neomarketingagency.com/images/heroBackground.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero {
    height: 543px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-top: 200px;
}

.hero-tagline {
    color: #00b4b4;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: #fff;
}

.hero h1 .primary {
    color: #00b4b4;
}

.hero h1 .secondary {
    color: #ffffff;
}

.hero p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: #00B4B4;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #00B4B4;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background: #008B8B;
    border-color: #008B8B;
    transform: translateY(-3px);
}

.cta-button-outline {
    background: transparent;
    color: #ffffff;
    border-color: #00B4B4;
}

.cta-button-outline:hover {
    background: #00B4B4;
    color: #000000;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 3rem;
    background: #000000;
}

.section-label {
    color: #00B4B4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

/* ===== MARQUEE SECTION ===== */
.marquee-section {
    background: #00C8C8;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    height: 62px;
    width: 100%;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
    padding: 0 2rem;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #001a1a;
}

.marquee-sep {
    margin: 0 1rem;
    font-size: 20px;
    color: #001a1a;
    display: flex;
    align-items: center;
}

/* ===== SERVICES CARDS SECTION ===== */
.services-cards-section {
    padding: 6rem 3rem;
    background: #000000;
    position: relative;
    z-index: 10;
    min-height: 800px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.services-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 10;
    min-height: 600px;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 100px;
    border-radius: 40px;
}

.card-image-container {
    width: 100%;
    height: 594px;
    overflow: hidden;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 40px;
}

.card-center {
    grid-column: 2;
    position: sticky;
    top: 100px;
    z-index: 2;
    animation: slideInUp 0.8s ease-out forwards;
    align-self: center;
    margin-top: 3rem;
}

.card-center .card-image-container {
    border-radius: 40px;
    overflow: hidden;
}

.card-left {
     grid-column: 1;
    justify-self: start;
    align-self: center;
    opacity: 1;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
    padding-left: 5rem;
    height: 594px;
    transition-delay: 0s;
}

.card-left.active {
    opacity: 1;
    transform: translateY(0);
}

.card-right {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    opacity: 1;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
    padding-right: 5rem;
    height: 594px;
    transition-delay: 0s;
}

.card-right.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== LOGO DIVIDER SECTION ===== */
.logo-divider {
    background: transparent;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.large-logo {
    font-size: 222px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 0.9;
}

.large-logo span {
    color: #00b4b4;
    font-size: 7rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(200px, 30vh, 350px);
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.7);
    z-index: 2;
}

.about-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 6vw, 3rem);}

.about-label {
    color: #00B4B4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 0;
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem); /* was up to 1.5rem */
}

.about-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);   /* was 1.8rem–2.875rem */
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem); /* was up to 2rem */
    color: #FFFFFF;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-text {
    font-size: clamp(13px, 1.8vw, 16px);
    color: #ffffff;
    line-height: 1.8;
}

.about-button {
    display: inline-block;
    background: #00B4B4;
    color: #ffffff;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 5vw, 2.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    border: 2px solid #00B4B4;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: clamp(1rem, 2.5vw, 1.25rem); /* was up to 2rem */
}

.about-button:hover {
    background: #008B8B;
    border-color: #008B8B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 180, 180, 0.2);
}

.about-button:active {
    transform: translateY(-1px);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 3rem);
    background: #000000;
    position: relative;
    z-index: 10;
}
.services-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    max-width: 1400px;
    margin: clamp(0.5rem, 1.5vw, 1rem) auto;
    align-items: start;
    height: auto;
    min-height: clamp(220px, 25vw, 280px);
}
.services-grid-left h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: clamp(0.75rem, 2vw, 1.1rem);
    line-height: 1.2;
}
.services-grid-left h2 .primary {
    color: #00B4B4;
}
.services-grid-left p {
    color: #999999;
    font-size: clamp(12px, 1.4vw, 14px);
    line-height: 1.6;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.services-grid-right {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
}
.service-item {
    background: rgba(0, 180, 180, 0.08);
    padding: clamp(0.6rem, 1.5vw, 0.8rem);
    border-radius: clamp(8px, 1.5vw, 12px);
    border-left: 4px solid #00B4B4;
}
.service-icon {
    width: clamp(28px, 4vw, 34px);
    height: clamp(28px, 4vw, 34px);
    background: rgba(0, 180, 180, 0.2);
    border-radius: clamp(6px, 1.2vw, 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00B4B4;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}
.service-item h4 {
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: clamp(0.3rem, 0.8vw, 0.4rem);
    text-transform: uppercase;
    font-size: clamp(13px, 1.5vw, 14px);
}
.service-item p {
    color: #999999;
    font-size: clamp(11px, 1.3vw, 12px);
    font-weight: 300;
    line-height: clamp(1.3rem, 1.8vw, 1.45rem);
}
/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: #0d0d0d;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 3rem;
    position: relative;
    z-index: 10;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.stats-head {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.stats-head span {
    color: #00C8C8;
}

.stats-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
}

.stats-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 0.5px solid #1a1a1a;
}

.stat-block {
    padding: 2rem 2.5rem;
    border-right: 0.5px solid #1a1a1a;
}

.stat-block:last-child {
    border-right: none;
}

.stat-intro {
    padding: 2rem 2.5rem 2rem 0;
    border-right: 0.5px solid #1a1a1a;
}

.stat-intro h2 {
    margin-bottom: 0.75rem;
}

.stat-intro p {
    font-size: 13px;
    font-weight: 300;
    color: #999999;
    line-height: 1.7;
}

.stat-num {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #00C8C8;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 12px;
    color: #999999;
    letter-spacing: 0.3px;
}

#mobileStatsIntro { display: none; }
#mobileStatsGrid  { display: none; }

.mobile-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.mobile-stat {
    padding: 1.5rem 1rem;
    border-bottom: 0.5px solid #1a1a1a;
}

.mobile-stat:nth-child(even) {
    border-left: 0.5px solid #1a1a1a;
}

.mobile-stat:nth-last-child(1),
.mobile-stat:nth-last-child(2) {
    border-bottom: none;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 3rem);
    background: #F5F5F5;
    text-align: center;
    position: relative;
    z-index: 10;
    height: auto;
    min-height: clamp(420px, 55vw, 600px);
}
.testimonials-label {
    color: #000000;
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.1em;
    margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
}
.testimonials-section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #000000;
    font-weight: 700;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    text-transform: uppercase;
}
.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto clamp(1.5rem, 4vw, 3rem);
    height: auto;
    min-height: clamp(220px, 28vw, 300px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-card {
    background: #FFFFFF;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: clamp(8px, 1.5vw, 12px);
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(100px);
    pointer-events: none;
}
.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}
.testimonial-card.prev {
    transform: translateX(-100px);
}
.testimonial-quote {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: #000000;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.8;
}
.testimonial-author {
    color: #000000;
    font-weight: 700;
    margin-bottom: 0;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
}
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: clamp(1rem, 3vw, 2rem);
}
.nav-arrow {
    background: none;
    border: none;
    width: clamp(38px, 6vw, 50px);
    height: clamp(38px, 6vw, 50px);
    border-radius: 50%;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    cursor: pointer;
    color: #0D0D0D;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.nav-arrow:hover {
    background: #0D0D0D;
    color: #F5F5F5;
    transform: scale(1.1);
}
.nav-arrow:active {
    transform: scale(0.95);
}
.nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.nav-arrow:disabled:hover {
    background: none;
    color: #0D0D0D;
    transform: scale(1);
}
/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 3rem);
    background: #000000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 10;
    height: auto;
    min-height: clamp(450px, 60vw, 650px);
}
.contact-left h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #FFFFFF;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}
.contact-left h2 .primary {
    color: #00B4B4;
}
.contact-left p {
    color: #999999;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.6;
}
.contact-right {
    background: #FFFFFF;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: clamp(8px, 1.5vw, 12px);
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.5rem);
}
.contact-right h3 {
    color: #000000;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    font-weight: 900;
    margin-bottom: 0;
}
.contact-right > p {
    color: #999999;
    margin-bottom: 0;
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
}
.form-group {
    margin-bottom: 0;
}
.contact-form .form-group label {
    color: #000000;
    font-weight: 700;
    font-size: clamp(0.7rem, 1vw, 0.75rem);
    margin-bottom: clamp(0.35rem, 1vw, 0.5rem);
    display: block;
}
.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid #333333;
    color: #000000;
    padding: clamp(0.5rem, 1.5vw, 0.7rem) 0;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    width: 100%;
    font-family: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #00B4B4;
}
.contact-form textarea {
    resize: none;
    min-height: clamp(60px, 10vw, 80px);
}
.submit-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #00B4B4;
    padding: clamp(0.65rem, 2vw, 0.8rem) clamp(1.4rem, 4vw, 1.8rem);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: clamp(180px, 40vw, 220px);
    display: block;
    margin: clamp(0.75rem, 2vw, 1rem) auto 0;
    font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    align-self: center;
}
.submit-btn:hover {
    background: #00B4B4;
    color: #000000;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
}

/* ===== FOOTER ===== */
footer {
    background: #000000;
    padding: 5rem 3rem 2rem;
    color: #999999;
    position: relative;
    z-index: 10;
}

.footer-logo-large {
    display: none;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-about img {
    width: 120px;
    height: auto;
    display: block;
}

.footer-about p {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-top: 1px solid #333333;
    padding-top: 3rem;
}

.footer-column h4 {
    color: #00B4B4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #00B4B4;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #00B4B4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #008B8B;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #999999;
    font-size: 0.9rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: #000;
    padding: 120px 0 180px;
    overflow: hidden;
}

.card-1 {
    width: 600px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}

.card-1 img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.process-row {
    display: flex;
    justify-content: space-between;
    margin-top: -100px;
    padding: 0 5%;
}

.process-card {
    width: 420px;
}

.process-card img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.reveal-left,
.reveal-right {
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.reveal-left  { transform: translateX(-200px); }
.reveal-right { transform: translateX(200px); }

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================================
   RESPONSIVE
=================================================== */

/* ── TABLET: ≤ 1024px ── */
@media (max-width: 1024px) {
    body{
        overflow: hidden;
    }

    /* Hero */
    .hero {
        padding: 0 3rem;
        height: auto;
        min-height: 500px;
    }
    .hero-content {
        margin-top: 140px;
        max-width: 100%;
    }
    .hero-tagline {
        font-size: 14px;
        letter-spacing: 0.3em;
        margin-bottom: 1.5rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
/* Services cards - TABLET */
.services-cards-section {
    min-height: unset;
    padding: 4rem 2rem;
}
.services-cards-container {
    display: grid;  /* KEEP THIS */
    grid-template-columns: 1fr 1fr 1fr;  /* CHANGED: 3 columns instead of 1fr */
    min-height: unset;
    gap: 2.5rem;  /* CHANGED: add gap */
    max-width: 600px;
    margin: 0 auto;  /* ADD THIS */
}
.card-center,
.card-left,
.card-right {
    grid-column: auto;  /* CHANGED: was grid-column: 1 */
    position: static;
    justify-self: center;
    align-self: center;
    width: auto;  /* CHANGED: was 100% */
    min-width: 0;  /* ADD THIS */
    height: auto;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
    transform: none;
    animation: none;
}
.card-image-container {
    height: 450px;
    margin-bottom: 27px;
}
    .large-logo span{
        color: #00b4b4;
    }

    /* Services grid */
    .services-grid-content {
        grid-template-columns: 1fr;
        height: auto;
    }

    /* Contact */
    .contact-section {
        height: auto;
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    .contact-right {
        max-width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    /* Testimonials */
    .testimonials-section {
        height: auto;
        padding: 5rem 2rem;
    }
    .testimonials-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    .testimonials-container {
        height: 350px;
    }
    .testimonial-card {
        padding: 2.5rem;
    }
    .testimonial-quote {
        font-size: 1rem;
    }
}

/* ── MOBILE: ≤ 768px ── */
@media (max-width: 768px) {

        body{
        overflow: hidden;
    }
    /* Nav */
    nav {
        padding: 0.8rem 1rem;
        top: 15px;
    }
    .nav-logo img {
        height: 30px;
    }
    .nav-center,
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .dropdown-menu {
        display: none;
    }

    /* Mobile menu */
    .mobile-menu {
        padding: 70px 1rem 2rem;
    }
    .mobile-link {
        font-size: 16px;
        padding: 1rem 0;
    }
    .mobile-dropdown-toggle {
        font-size: 16px;
        padding: 1rem 0;
    }
    .mobile-dropdown-section ul li a {
        font-size: 13px;
    }
    .mobile-cta {
        font-size: 13px;
        padding: 0.8rem 1.5rem;
    }

    /* Hero */
    .hero-wrapper {
        height: auto;
        min-height: 282px;
    }
    .hero {
        padding: 0 1.5rem;
        padding-top: 100px;
        height: auto;
        min-height: 282px;
        align-items: flex-start;
    }
    .hero-content {
        margin-top: 0;
        max-width: 100%;
        padding-bottom: 3rem;
    }
    .hero-tagline {
        font-size: 12px;
        letter-spacing: 0.25em;
        margin-bottom: 1.25rem;
    }
    .hero h1 {
        font-size: 20px;
        line-height: 1.0;
        margin-bottom: 1.5rem;
    }
    .hero p {
        font-size: 12px;
    }

    /* Logo divider */
    .large-logo {
        font-size: 4rem;
    }
    .large-logo span {
        font-size: 3.5rem;
        color: #00B4B4 ;
    }

   
    /* Services cards - UPDATED FOR HORIZONTAL LAYOUT */
    .services-cards-section {
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    .services-cards-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;  /* CHANGED: 3 columns horizontal */
        gap: 1.5rem;  /* CHANGED: reduced gap */
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    .card-center,
    .card-left,
    .card-right {
        grid-column: auto;  /* CHANGED: removed the 1 constraint */
        position: static;
        justify-self: center;
        align-self: center;
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        transform: none;
        animation: none;
        border-radius:20px;
    }
    .card-image-container {
        height: 250px;  /* CHANGED: reduced from 350px */
        border-radius: 20px;
        margin-bottom: 0;  /* CHANGED: removed margin since horizontal */
    }
    .service-card img {
        border-radius: 20px;
    }
    /* Process */
    .card-1 {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    .process-card {
        width: 90%;
        max-width: 100%;
    }

    /* Sections */
    .section {
        padding: 4rem 2rem;
    }
    .section-title {
        font-size: 2.5rem;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Marquee */
    .marquee-section {
        height: 40px;
    }
    .marquee-track {
        padding: 0 1rem;
        gap: 0.75rem;
        animation: marquee 40s linear infinite;
    }
    .marquee-text {
        font-size: 10px;
        letter-spacing: 1px;
    }
    .marquee-sep {
        margin: 0 0.75rem;
        font-size: 16px;
    }

    /* Testimonials */
    .testimonials-section {
        height: auto;
        padding: 4rem 1.5rem;
    }
    .testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .testimonials-container {
        height: 320px;
    }
    .testimonial-card {
        padding: 2rem;
    }
    .testimonial-quote {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    .testimonial-nav {
        gap: 1.5rem;
    }
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    /* Stats */
    .stats-section {
        height: auto;
        padding: 3rem 1.5rem;
    }
    #desktopStatsTop,
    #desktopStatsBottom { display: none; }
    #mobileStatsIntro {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
    }
    #mobileStatsIntro h2 {
        font-family: 'Open Sans', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
    }
    #mobileStatsIntro h2 span { color: #00C8C8; }
    #mobileStatsIntro p { font-size: 13px; color: #666; line-height: 1.7; }
    #mobileStatsGrid { display: grid; }

    /* Services grid */
    .services-grid {
        padding: 3rem 1.5rem;
    }
    .services-grid-content {
        height: auto;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 3rem 1.5rem 1.5rem;
    }
    .footer-about {
        align-items: center;
    }
    .footer-about img {
        margin: 0 auto;
    }
    .footer-about p {
        max-width: 100%;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }
    .footer-column h4,
    .footer-column ul li a {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

/* ── SMALL MOBILE: ≤ 600px ── */
@media (max-width: 600px) {

    body{
        overflow: hidden;
    }
    /* Nav */
    nav {
        top: 15px;
    }
    .nav-logo img {
        height: 30px;
    }

    /* Mobile menu */
    .mobile-menu {
        padding: 70px 1rem 2rem;
    }
    .mobile-link {
        font-size: 16px;
        padding: 1rem 0;
    }
    .mobile-dropdown-toggle {
        font-size: 16px;
        padding: 1rem 0;
    }
    .mobile-dropdown-section ul li a {
        font-size: 13px;
    }
    .mobile-cta {
        font-size: 13px;
        padding: 0.8rem 1.5rem;
    }

    /* Hero */
    .hero-wrapper {
        height: auto;
        min-height: 482px;
    }
    .hero {
        padding: 0 1.25rem;
        padding-top: 150px;
        min-height: 482px;
        align-items: flex-start;
    }
    .hero-content {
        margin-top: 0;
        max-width: 100%;
        padding-bottom: 2rem;
    }
    .hero-tagline {
        font-size: 11px;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }
    .hero h1 {
        font-size: 2rem;
        line-height: 1.0;
        margin-bottom: 1.25rem;
    }
    .hero p {
        font-size: 10px;
    }

    /* Logo divider */
    .large-logo {
        font-size: 3rem;
    }
    .large-logo span {
        font-size: 2.5rem;
        color: #00B4B4 ;
    }

    /* About */
    .about-section h2 {
        font-size: 2rem;
    }
    .about-content {
        padding: 4rem 1.5rem;
    }

    /* Services cards */
    .services-cards-section {
        padding: 3rem 1rem;
    }
    .services-cards-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    .card-center,
    .card-left,
    .card-right {
        grid-column: auto;
        position: static;
        justify-self: center;
        align-self: center;
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        transform: none;
        animation: none;
    }
    .card-image-container {
        height: 300px;
        border-radius: 16px;
        margin-bottom: 0;
    }
    .service-card img {
        border-radius: 16px;
    }

    /* Services grid */
    .services-grid {
        padding: 3rem 1rem;
    }
    .services-grid-content {
        height: auto;
    }

    /* Testimonials */
    .testimonials-section {
        height: auto;
        padding: 3rem 1rem;
    }
    .testimonials-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .testimonials-container {
        height: auto;
        min-height: 280px;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .testimonial-quote {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    .testimonial-nav {
        gap: 1rem;
    }
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

   /* Contact */
    .contact-section {
        height: auto;
        padding: 2rem 1rem;
    }
    .contact-left h2 {
        font-size: 1.8rem;
    }
    .contact-right {
        padding: 1.5rem;
        border-radius: 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .contact-right h3 {
        font-size: 1.1rem;
    }
    .contact-form input,
    .contact-form textarea {
        background: #E8E8E8;
        border: none;
        border-radius: 8px;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
    .contact-form textarea {
        min-height: 100px;
    }
    .contact-form .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    .submit-btn {
        width: 100%;
        max-width: 220px;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 2rem 1rem 1rem;
    }
    .footer-about {
        align-items: center;
    }
    .footer-about img {
        margin: 0 auto;
    }
    .footer-about p {
        max-width: 100%;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    .footer-column h4,
    .footer-column ul li a {
        text-align: center;
    }
    .footer-column ul li {
        margin-bottom: 0.75rem;
    }
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    .footer-bottom {
        padding-top: 1.5rem;
    }
}