
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:'Inter',sans-serif;
background-color:var(--bg-main);
color:var(--text-normal);
line-height:1.6;
overflow-x:hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}



 :root {
    --primary: #00d4aa;
    --primary-dark: #00b894;
    --primary-light: #26debc;
    --secondary: #6c5ce7;
    --accent: #fd79a8;
    --bg-main: #0a0e1a;
    --bg-alt: #111a2b;
    --bg-card: #1a1f35;
    --bg-card-hover: #202942;
    --text-bright: #ffffff;
    --text-normal: #cbd3e3;
    --text-dim: #8a92a3;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-primary: rgba(0, 212, 170, 0.15);
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-primary: rgba(0, 212, 170, 0.2);
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    height: 68px;
    background: linear-gradient(135deg, #0a0f18 0%, #1a1f2e 50%, #0c1220 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.logo {
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: -0.5px;
}


.logo em {
    font-style: normal;
    color: var(--primary);
}


.nav-links {
    display: flex;
    gap: 2px;
}


.nav-links a {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-dim);
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 0.25s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nav-links a:hover {
    color: var(--primary);
    background-color: var(--border-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow);
}


.nav-links a.active {
    color: var(--text-bright);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px var(--shadow-primary);
}


.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


.navbar.scrolled {
    background: linear-gradient(135deg, #0a0f18 0%, #1a1f2e 50%, #0c1220 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}



.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    letter-spacing: 0.3px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}


.btn-green {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.btn-green:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 6px 25px var(--shadow-primary);
    transform: translateY(-2px);
}


.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.5s;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(0, 212, 170, 0.05);
    box-shadow: 0 0 20px var(--shadow-primary);
}



.marquee {
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background-color: var(--bg-alt);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}


.marquee-track span::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}


@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 48px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(17, 26, 43, 0.82) 100%),
                url('images/home.jpg') center/cover no-repeat;
    z-index: -1;
    background-attachment: scroll;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@supports (animation: mix-blend-mode) {
    .hero::before {
        animation: hero-zoom 20s ease-in-out infinite alternate;
    }
}

@keyframes hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--shadow-primary), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding: 120px 60px 100px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 6px;
    background-color: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-tag .dot {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #000;
}


.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.5px;
    color: var(--text-bright);
    margin-bottom: 22px;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero-content p {
    font-size: 16px;
    color: var(--text-normal);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}


.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}







.diag-down {
    height: 80px;
    background-color: var(--bg-alt);
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
    margin-top: -1px;
}

.diag-up {
    height: 80px;
    background-color: var(--bg-alt);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    margin-top: -1px;
}



.section {
    padding: 120px 48px;
    position: relative;
}

.section-dark {
    background-color: var(--bg-alt);
}

.text-gradient-green {
    background: linear-gradient(90deg, var(--primary) 50%, var(--text-bright) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-green-light {
    background: linear-gradient(90deg, #4ade80 50%, #f8fafc 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-accent-green {
    background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(34, 197, 94, 0.03) 50%, var(--bg-main) 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.08);
    border-bottom: 1px solid rgba(34, 197, 94, 0.08);
}

.glow-green-subtle {
    box-shadow: 0 0 60px rgba(34, 197, 94, 0.08);
}

.border-green-accent {
    border-left: 3px solid var(--primary);
}

.stat-box-accent {
    position: relative;
}

.stat-box-accent::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.service-card-accent {
    position: relative;
}

.service-card-accent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card-accent:hover::before {
    opacity: 1;
}

.hero-bg-image {
    background-image: url('https://images.unsplash.com/photo-1531482615713-2afd69097998?w=1920&q=80');
    position: relative;
}

.hero-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 10, 16, 0.92) 0%, rgba(6, 10, 16, 0.85) 100%);
}

.cta-bg-image {
    background-image: url('https://images.unsplash.com/photo-1552664730-df6fe7f86bc8?w=1920&q=80');
    position: relative;
}

.cta-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 10, 16, 0.9) 0%, rgba(6, 10, 16, 0.8) 100%);
}

.values-bg-image {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
    position: relative;
}

.values-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 24, 0.95) 0%, rgba(10, 15, 24, 0.85) 100%);
}

.testimonial-bg-image {
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f4727?w=1920&q=80');
    position: relative;
}

.testimonial-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 10, 16, 0.92) 0%, rgba(6, 10, 16, 0.82) 100%);
}


.section-heading {
    text-align: center;
    margin-bottom: 56px;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out;
}


.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.modal-profession {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-content-text {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}


.section-heading .label {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}


.section-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: -1.2px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-bright) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.section-heading p {
    font-size: 15px;
    color: var(--text-dim);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}



.bento-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: auto auto;
    gap: 20px;
}


.bento-image {
    grid-row: span 2;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    position: relative;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 440px;
}


.bento-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 10, 16, 0.6), transparent 40%);
}


.bento-image img {
    transition: transform 0.5s ease;
}

.bento-image:hover img {
    transform: scale(1.02);
}


.bento-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.35s;
}

.bento-card:hover {
    border-color: rgba(34, 197, 94, 0.15);
    background-color: var(--bg-card-hover);
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
}



.stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.4;
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
}

.stat-box p {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 600;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 18px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px 26px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}


.service-card:hover {
    border-color: var(--border-primary);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 25px 60px var(--shadow-primary);
}


.service-card.wide {
    grid-column: span 2;
}


.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    color: #000;
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.7;
}



.page-header {
    padding: 150px 48px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.03) 0%, transparent 100%);
}

.page-header.about-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(17, 26, 43, 0.82) 100%),
                url('images/about.jpg') center/cover no-repeat;
    background-attachment: scroll;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.page-header.services-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(17, 26, 43, 0.82) 100%),
                url('images/services.jpg') center/cover no-repeat;
    background-attachment: scroll;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.page-header.about-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.85) 0%, rgba(17, 26, 43, 0.75) 100%),
                url('images/about.jpg') center/cover fixed no-repeat;
    background-attachment: fixed;
    will-change: transform;
}

.page-header.services-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.85) 0%, rgba(17, 26, 43, 0.75) 100%),
                url('images/services.jpg') center/cover fixed no-repeat;
    background-attachment: fixed;
    will-change: transform;
}

.page-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 500px;
    background: radial-gradient(circle, var(--shadow-primary), transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}


.page-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06), transparent 65%);
    pointer-events: none;
}

.page-header.gallery-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(17, 26, 43, 0.82) 100%),
                url('images/teams.jpg') center/cover no-repeat;
    background-attachment: scroll;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.page-header.contact-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(17, 26, 43, 0.82) 100%),
                url('images/CEO.jpg') center/cover no-repeat;
    background-attachment: scroll;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.page-header.testimonials-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(17, 26, 43, 0.82) 100%),
                url('images/client.jpg') center/cover no-repeat;
    background-attachment: scroll;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.breadcrumb {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 18px;
    position: relative;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: var(--primary);
    cursor: pointer;
}

.breadcrumb i {
    font-style: normal;
    margin: 0 8px;
    opacity: 0.4;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-bright);
    position: relative;
}

.page-header p {
    font-size: 15px;
    color: var(--text-dim);
    margin-top: 10px;
    position: relative;
}



.about-row {
    display: grid;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}


.about-row.image-left {
    grid-template-columns: 1fr 1fr;
}


.about-row.image-right {
    direction: rtl;
}

.about-row.image-right > * {
    direction: ltr;
}

.about-image {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    height: 380px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 18px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-normal);
    line-height: 1.8;
    margin-bottom: 10px;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s;
}

.value-card:hover {
    border-color: rgba(34, 197, 94, 0.12);
    transform: translateY(-3px) scale(1.02);
}

.value-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 6px;
}

.value-card p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.7;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-card);
    transition: all 0.4s;
}

.team-card:hover {
    border-color: rgba(34, 197, 94, 0.15);
    transform: translateY(-5px) scale(1.03);
}

.team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover img {
    transform: scale(1.04);
}

.team-card .info {
    padding: 18px;
}

.team-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-bright);
}

.team-card .role {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2px;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 260px);
    gap: 14px;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    position: relative;
    cursor: pointer;
    transition: all 0.4s;
}

.gallery-item:hover {
    border-color: rgba(34, 197, 94, 0.2);
    z-index: 1;
}


.gallery-item.tall {
    grid-row: span 2;
}


.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}


.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 10, 16, 0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-bright);
}

.gallery-overlay span {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}



.testimonial-featured {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    margin-bottom: 24px;
    background-color: var(--bg-card);
}

.testimonial-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 340px;
    transition: transform 0.5s ease;
}

.testimonial-featured:hover img {
    transform: scale(1.02);
}

.testimonial-featured .content {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.quote-mark {
    font-size: 36px;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 14px;
}

.quote-mark-small {
    font-size: 28px;
    color: var(--primary);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 12px;
}


.stars {
    color: #facc15;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}


.testimonial-text {
    font-size: 16px;
    color: var(--text-normal);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-text-small {
    font-size: 14px;
    color: var(--text-normal);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}


.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.testimonial-author h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-bright);
}

.testimonial-author p {
    font-size: 12px;
    color: var(--text-dim);
}


.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 30px 26px;
    transition: all 0.35s;
}

.testimonial-card:hover {
    border-color: rgba(34, 197, 94, 0.12);
    transform: translateY(-3px) scale(1.01);
}


.client-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 50px 0;
    opacity: 0.25;
}

.client-logos span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-bright);
}



.contact-section {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 14px;
}

.contact-info > p {
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 14.5px;
}


.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding: 16px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow);
    border-color: var(--border-primary);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    color: #000;
    box-shadow: 0 4px 15px var(--shadow-primary);
    transition: transform 0.3s ease;
}

.contact-row:hover .contact-icon {
    transform: scale(1.1);
}

.contact-row h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 2px;
}

.contact-row p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.contact-row p a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-row p a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}


.contact-form {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px var(--shadow);
}


.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-bright);
    font-size: 13.5px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
    opacity: 0.5;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--shadow-primary);
    background-color: var(--bg-alt);
}

.form-group textarea {
    height: 110px;
    resize: vertical;
}

.form-group select option {
    background-color: var(--bg-card);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


.map-container {
    margin-top: 50px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: brightness(0.9) contrast(1.05);
}



.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
}


.process-timeline::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.2;
}

.process-step {
    text-align: center;
    position: relative;
}


.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    background-color: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    padding: 0 6px;
}



.cta-section {
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.02), var(--bg-main));
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.05), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 12px;
    position: relative;
}

.cta-section p {
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 15px;
    position: relative;
}



.footer {
    background-color: #040710;
    border-top: 1px solid var(--border-subtle);
    padding: 60px 48px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 14px;
    display: inline-block;
}

.footer-about p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.7;
}

.footer h4 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-size: 13.5px;
    color: var(--text-dim);
    transition: all 0.25s;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 3px;
}


.footer-links .plain-text {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.6;
    cursor: default;
}


.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    margin: 0 15px;
}

.newsletter {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-alt) 100%);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.newsletter h4 {
    color: var(--text-bright);
    margin-bottom: 10px;
    font-size: 20px;
}

.newsletter p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--bg-main);
    color: var(--text-bright);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--shadow-primary);
}

.newsletter-form button {
    padding: 10px 20px;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}





@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .hero-content {
        padding: 120px 24px 40px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-image img {
        min-height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card.wide {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .testimonial-featured {
        grid-template-columns: 1fr;
    }

    .testimonial-featured img {
        min-height: 240px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .section {
        padding: 70px 24px;
    }

    .navbar {
        padding: 0 24px;
    }
}


@media (max-width: 640px) {
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background-color: var(--bg-main);
        padding: 14px 24px;
        gap: 2px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.open {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .services-grid,
    .values-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .service-card.wide {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-row.image-left,
    .about-row.image-right {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .page-header {
        padding: 130px 24px 50px;
    }

    .page-header h1 {
        font-size: 30px;
    }
}

.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}
