@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');


:root {

    --sky: #0ea5e9;
    --sky-light: #38bdf8;
    --sky-dark: #0284c7;

    --navy: #082f49;

    --white: #ffffff;
    --off-white: #f8fbff;

    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;

    --radius: 24px;

    --shadow: 0 20px 60px rgba(14, 165, 233, 0.12);

}


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Inter', sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

}


body.modal-open {

    overflow: hidden;

}


h1,
h2,
h3,
h4 {

    font-family: 'Space Grotesk', sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


button {

    cursor: pointer;

}


.container {

    width: min(1240px, calc(100% - 48px));

    margin: auto;

}


/* PROGRESS BAR */

#progress-bar {

    position: fixed;

    top: 0;

    left: 0;

    height: 4px;

    width: 0;

    background: linear-gradient(90deg, var(--sky), #7dd3fc);

    z-index: 9999;

}


/* NAVIGATION */

.main-nav {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition: all .3s ease;

}


.main-nav.scrolled {

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(20px);

    box-shadow: 0 8px 30px rgba(15, 23, 42, .06);

}


.nav-container {

    width: min(1380px, calc(100% - 48px));

    margin: auto;

    height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-logo {

    width: 42px;

    height: 42px;

    border-radius: 12px;

    overflow: hidden;

    background: white;

    box-shadow: 0 8px 20px rgba(14, 165, 233, .18);

}


.brand-logo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.brand-name {

    font-family: 'Space Grotesk', sans-serif;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: -1px;

}


.brand-name strong {

    color: var(--sky);

}


.desktop-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}


.nav-link {

    position: relative;

    color: #64748b;

    font-size: 14px;

    font-weight: 600;

    transition: color .3s ease;

}


.nav-link:hover,
.nav-link.active {

    color: var(--sky-dark);

}


.nav-link::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--sky);

    transition: width .3s ease;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


.nav-actions {

    display: flex;

    align-items: center;

    gap: 20px;

}


.nav-cta {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: var(--text);

    color: white;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 600;

    transition: all .3s ease;

}


.nav-cta:hover {

    background: var(--sky);

    transform: translateY(-2px);

}


.mobile-menu-btn {

    display: none;

    border: none;

    background: transparent;

    font-size: 22px;

    color: var(--text);

}


.mobile-menu {

    display: none;

}


/* HERO */

.hero-section {

    min-height: 850px;

    padding: 170px 0 100px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(circle at 75% 25%, rgba(56, 189, 248, .18), transparent 30%),

        linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .45;

    background-image:

        linear-gradient(rgba(14, 165, 233, .06) 1px, transparent 1px),

        linear-gradient(90deg, rgba(14, 165, 233, .06) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(to bottom, black, transparent);

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

}


.hero-glow-one {

    width: 350px;

    height: 350px;

    background: rgba(56, 189, 248, .18);

    top: 150px;

    right: 10%;

}


.hero-glow-two {

    width: 250px;

    height: 250px;

    background: rgba(14, 165, 233, .12);

    bottom: 0;

    left: 15%;

}


.hero-container {

    width: min(1240px, calc(100% - 48px));

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

    position: relative;

    z-index: 2;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 15px;

    border: 1px solid #bae6fd;

    background: rgba(255, 255, 255, .75);

    color: var(--sky-dark);

    border-radius: 100px;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 28px;

}


.eyebrow i {

    font-size: 10px;

}


.status-dot {

    width: 8px;

    height: 8px;

    background: #22c55e;

    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(34, 197, 94, .12);

}


.hero-content h1 {

    max-width: 680px;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -4px;

    color: var(--text);

}


.hero-content h1 span {

    color: var(--sky);

}


.hero-description {

    max-width: 560px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 38px;

}


.primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 17px 24px;

    background: var(--sky);

    color: white;

    border: none;

    border-radius: 14px;

    font-size: 14px;

    font-weight: 700;

    transition: all .3s ease;

}


.primary-btn:hover {

    background: var(--sky-dark);

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(14, 165, 233, .25);

}


.secondary-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 17px 24px;

    border: 1px solid var(--border);

    border-radius: 14px;

    font-size: 14px;

    font-weight: 600;

    transition: all .3s ease;

}


.secondary-btn:hover {

    border-color: var(--sky);

    color: var(--sky-dark);

    transform: translateY(-3px);

}


.hero-trust {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 48px;

}


.trust-avatars {

    display: flex;

    align-items: center;

}


.trust-avatars img,
.trust-avatars span {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    border: 3px solid white;

    margin-left: -8px;

}


.trust-avatars img:first-child {

    margin-left: 0;

}


.trust-avatars span {

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--sky);

    color: white;

    font-size: 11px;

    font-weight: 700;

}


.trust-stars {

    color: #f59e0b;

    font-size: 11px;

    margin-bottom: 4px;

}


.hero-trust p {

    color: var(--muted);

    font-size: 11px;

}


/* HERO VISUAL */

.hero-visual {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.dashboard-card {

    width: min(100%, 520px);

    background: rgba(255, 255, 255, .88);

    border: 1px solid rgba(255, 255, 255, .9);

    border-radius: 28px;

    box-shadow: 0 35px 90px rgba(14, 165, 233, .18);

    overflow: hidden;

    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);

    animation: dashboardFloat 6s ease-in-out infinite;

}


@keyframes dashboardFloat {

    0%,
    100% {

        transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(0);

    }

    50% {

        transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(-14px);

    }

}


.dashboard-top {

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 22px;

    border-bottom: 1px solid var(--border);

}


.window-dots {

    display: flex;

    gap: 6px;

}


.window-dots span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;

}


.dashboard-label {

    color: var(--muted);

    font-size: 11px;

    font-weight: 600;

}


.dashboard-top > i {

    color: #94a3b8;

}


.dashboard-content {

    padding: 28px;

}


.dashboard-welcome {

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.dashboard-welcome small {

    color: var(--muted);

    font-size: 11px;

}


.dashboard-welcome h3 {

    margin-top: 4px;

    font-size: 20px;

}


.dashboard-avatar {

    width: 38px;

    height: 38px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--sky);

    background: #e0f2fe;

}


.dashboard-stat {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-top: 32px;

}


.dashboard-stat small {

    display: block;

    color: var(--muted);

    font-size: 11px;

}


.dashboard-stat strong {

    display: block;

    margin-top: 6px;

    font-size: 38px;

    letter-spacing: -2px;

}


.stat-up {

    color: #16a34a;

    background: #f0fdf4;

    padding: 7px 10px;

    border-radius: 8px;

    font-size: 11px;

    font-weight: 700;

}


.chart {

    height: 160px;

    position: relative;

    margin-top: 20px;

    overflow: hidden;

    background: repeating-linear-gradient(

        to bottom,

        transparent 0,

        transparent 39px,

        #f1f5f9 40px

    );

}


.chart-bars {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: end;

    justify-content: space-around;

    gap: 14px;

    padding: 20px 10px 0;

}


.chart-bars span {

    width: 26px;

    background: linear-gradient(to top, #bae6fd, var(--sky));

    border-radius: 8px 8px 0 0;

    opacity: .7;

}


.chart-line {

    position: absolute;

    z-index: 2;

    width: 90%;

    height: 80px;

    left: 5%;

    top: 35px;

    border-top: 3px solid var(--sky);

    border-radius: 50%;

    transform: rotate(-8deg);

}


.dashboard-bottom {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 24px;

}


.mini-card {

    padding: 14px;

    background: #f8fafc;

    border: 1px solid #f1f5f9;

    border-radius: 12px;

}


.mini-card span {

    display: block;

    color: var(--muted);

    font-size: 10px;

}


.mini-card strong {

    display: block;

    margin-top: 6px;

    font-size: 18px;

}


.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow: 0 15px 35px rgba(15, 23, 42, .1);

    animation: floatCard 5s ease-in-out infinite;

}


.floating-card small {

    display: block;

    color: var(--muted);

    font-size: 10px;

}


.floating-card strong {

    display: block;

    margin-top: 3px;

    font-size: 12px;

}


.floating-card-one {

    top: 70px;

    left: 0;

}


.floating-card-two {

    right: 0;

    bottom: 70px;

    animation-delay: 1s;

}


@keyframes floatCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}


.floating-icon {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #e0f2fe;

    color: var(--sky);

}


.floating-icon.green {

    color: #16a34a;

    background: #f0fdf4;

}


.visual-orbit {

    position: absolute;

    border: 1px solid rgba(14, 165, 233, .12);

    border-radius: 50%;

}


.orbit-one {

    width: 560px;

    height: 560px;

}


.orbit-two {

    width: 680px;

    height: 680px;

}


.scroll-indicator {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 15px;

    color: #94a3b8;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


.scroll-line {

    width: 50px;

    height: 1px;

    background: #cbd5e1;

    position: relative;

    overflow: hidden;

}


.scroll-line span {

    position: absolute;

    width: 20px;

    height: 1px;

    background: var(--sky);

    animation: scrollLine 2s infinite;

}


@keyframes scrollLine {

    0% {

        left: -20px;

    }

    100% {

        left: 50px;

    }

}


/* TRUSTED */

.trusted-section {

    padding: 28px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    background: white;

}


.trusted-label {

    text-align: center;

    color: #94a3b8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 24px;

}


.trusted-logos {

    display: flex;

    align-items: center;

    justify-content: space-around;

    flex-wrap: wrap;

    gap: 30px;

    color: #94a3b8;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 20px;

    font-weight: 700;

}


/* SECTIONS */

.section {

    padding: 130px 0;

}


.section-intro {

    max-width: 760px;

}


.section-tag {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--sky-dark);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

}


.section-tag span {

    color: #94a3b8;

}


.section-intro h2,
.section-heading h2,
.impact-header h2 {

    margin-top: 24px;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -3px;

}


.section-intro h2 span,
.section-heading h2 span,
.impact-header h2 span {

    color: var(--sky);

}


.about-section {

    background: var(--off-white);

}


.about-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

    margin-top: 80px;

}


.about-text {

    max-width: 460px;

}


.large-text {

    font-size: 23px;

    line-height: 1.5;

    color: var(--text) !important;

}


.about-text p {

    color: var(--muted);

    line-height: 1.8;

    margin-bottom: 25px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--sky-dark);

    font-size: 14px;

    font-weight: 700;

}


.text-link i {

    transition: transform .3s ease;

}


.text-link:hover i {

    transform: translateX(5px);

}


.about-cards {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}


.about-card {

    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: all .3s ease;

}


.about-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

    border-color: #bae6fd;

}


.about-card-icon {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: #e0f2fe;

    color: var(--sky);

    margin-bottom: 24px;

}


.about-card h3 {

    font-size: 20px;

    margin-bottom: 10px;

}


.about-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

}


/* SERVICES */

.services-section {

    background: white;

}


.section-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 60px;

}


.section-heading > p {

    max-width: 340px;

    color: var(--muted);

    line-height: 1.7;

}


.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.service-card {

    position: relative;

    padding: 36px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: white;

    overflow: hidden;

    cursor: pointer;

    transition: all .4s ease;

}


.service-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: var(--sky);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .4s ease;

}


.service-card:hover {

    transform: translateY(-10px);

    border-color: #bae6fd;

    box-shadow: var(--shadow);

}


.service-card:hover::before {

    transform: scaleX(1);

}


.service-number {

    position: absolute;

    top: 28px;

    right: 30px;

    color: #cbd5e1;

    font-size: 12px;

    font-weight: 700;

}


.service-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    font-size: 22px;

    margin-bottom: 80px;

}


.service-icon.blue {

    color: var(--sky);

    background: #e0f2fe;

}


.service-icon.purple {

    color: #8b5cf6;

    background: #f5f3ff;

}


.service-icon.orange {

    color: #f97316;

    background: #fff7ed;

}


.service-card h3 {

    font-size: 25px;

    margin-bottom: 14px;

}


.service-card p {

    color: var(--muted);

    line-height: 1.7;

    font-size: 14px;

}


.service-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: var(--sky-dark);

    font-size: 12px;

    font-weight: 700;

}


/* IMPACT */

.impact-section {

    background: var(--navy);

    color: white;

}


.impact-section .section-tag {

    color: #7dd3fc;

}


.impact-section .section-tag span {

    color: #64748b;

}


.impact-header {

    text-align: center;

}


.impact-header h2 span {

    color: #7dd3fc;

}


.impact-header p {

    max-width: 500px;

    margin: 20px auto 0;

    color: #bae6fd;

}


.impact-stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 80px;

}


.impact-stat {

    padding: 30px 0;

    border-top: 1px solid rgba(255, 255, 255, .15);

}


.impact-stat strong {

    font-family: 'Space Grotesk', sans-serif;

    font-size: 64px;

    letter-spacing: -3px;

}


.impact-stat span {

    color: #7dd3fc;

    font-size: 40px;

    font-weight: 700;

}


.impact-stat p {

    margin-top: 8px;

    color: #bae6fd;

    font-size: 13px;

}


/* PORTFOLIO */

.portfolio-section {

    background: var(--off-white);

}


.portfolio-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

}


.project-card {

    cursor: pointer;

}


.project-large {

    grid-row: span 2;

}


.project-image {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    aspect-ratio: 1.4;

}


.project-large .project-image {

    aspect-ratio: .95;

}


.project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;

}


.project-card:hover .project-image img {

    transform: scale(1.08);

}


.project-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: rgba(2, 132, 199, .78);

    color: white;

    font-size: 13px;

    font-weight: 700;

    opacity: 0;

    transition: opacity .4s ease;

}


.project-card:hover .project-overlay {

    opacity: 1;

}


.project-info {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 4px;

}


.project-info span {

    color: var(--sky-dark);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.project-info h3 {

    margin-top: 6px;

    font-size: 22px;

}


.project-info > i {

    color: var(--sky);

}


/* TESTIMONIALS */

.testimonials-section {

    background: white;

}


.section-heading.centered {

    justify-content: center;

    text-align: center;

}


.testimonial-slider {

    max-width: 900px;

    margin: 60px auto 0;

    display: flex;

    align-items: center;

    gap: 30px;

}


.testimonial-content {

    flex: 1;

    text-align: center;

}


.quote-mark {

    color: var(--sky);

    font-family: Georgia, serif;

    font-size: 80px;

    line-height: .5;

}


.testimonial-content > p {

    margin: 30px auto;

    max-width: 720px;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 27px;

    line-height: 1.45;

    letter-spacing: -.8px;

}


.testimonial-author {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

}


.testimonial-author img {

    width: 46px;

    height: 46px;

    border-radius: 50%;

}


.testimonial-author strong,
.testimonial-author span {

    display: block;

    text-align: left;

}


.testimonial-author strong {

    font-size: 13px;

}


.testimonial-author span {

    color: var(--muted);

    font-size: 11px;

    margin-top: 3px;

}


.slider-btn {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--border);

    background: white;

    border-radius: 50%;

    color: var(--sky);

    transition: all .3s ease;

}


.slider-btn:hover {

    background: var(--sky);

    color: white;

    border-color: var(--sky);

}


/* FAQ */

.faq-section {

    background: var(--off-white);

}


.faq-list {

    max-width: 850px;

    margin: 60px auto 0;

}


.faq-item {

    border-bottom: 1px solid var(--border);

}


.faq-item button {

    width: 100%;

    padding: 28px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: transparent;

    border: none;

    color: var(--text);

    text-align: left;

    font-size: 18px;

    font-weight: 600;

}


.faq-item button i {

    color: var(--sky);

    transition: transform .3s ease;

}


.faq-item.open button i {

    transform: rotate(45deg);

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease;

}


.faq-answer p {

    padding-bottom: 28px;

    max-width: 700px;

    color: var(--muted);

    line-height: 1.7;

}


/* CONTACT */

.contact-section {

    position: relative;

    padding: 130px 0;

    background: linear-gradient(135deg, #e0f2fe, #f8fbff);

    overflow: hidden;

}


.contact-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .2);

    filter: blur(100px);

    right: -150px;

    top: -150px;

}


.contact-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: start;

}


.contact-content h2 {

    margin-top: 24px;

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1;

    letter-spacing: -3px;

}


.contact-content h2 span {

    display: block;

    color: var(--sky);

}


.contact-content > p {

    max-width: 450px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;

}


.contact-details {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 40px;

}


.contact-details a {

    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--sky-dark);

    font-size: 14px;

    font-weight: 600;

}


.contact-details i {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: white;

    color: var(--sky);

}


.contact-form {

    padding: 40px;

    background: rgba(255, 255, 255, .75);

    border: 1px solid rgba(255, 255, 255, .9);

    border-radius: 28px;

    box-shadow: 0 20px 60px rgba(14, 165, 233, .1);

    backdrop-filter: blur(20px);

}


.form-row {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}


.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    color: var(--text);

    font-size: 12px;

    font-weight: 700;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 16px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: rgba(255, 255, 255, .85);

    outline: none;

    color: var(--text);

    font-size: 14px;

    transition: all .3s ease;

}


.form-group textarea {

    resize: vertical;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--sky);

    box-shadow: 0 0 0 4px rgba(14, 165, 233, .1);

}


.form-submit {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 20px;

    border: none;

    border-radius: 13px;

    background: var(--text);

    color: white;

    font-weight: 700;

    transition: all .3s ease;

}


.form-submit:hover {

    background: var(--sky);

    transform: translateY(-3px);

}


.form-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 16px;

    color: #94a3b8;

    font-size: 11px;

}


/* FOOTER */

.footer {

    padding: 80px 0 25px;

    background: #071827;

    color: white;

}


.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}


.footer .brand-name {

    color: white;

}


.footer-brand > p {

    max-width: 300px;

    margin-top: 24px;

    color: #94a3b8;

    line-height: 1.7;

    font-size: 14px;

}


.social-links {

    display: flex;

    gap: 10px;

    margin-top: 30px;

}


.social-links a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 10px;

    color: #94a3b8;

    transition: all .3s ease;

}


.social-links a:hover {

    background: var(--sky);

    color: white;

    border-color: var(--sky);

}


.footer-column h4 {

    margin-bottom: 22px;

    color: white;

    font-size: 13px;

}


.footer-column a {

    display: block;

    margin-bottom: 14px;

    color: #94a3b8;

    font-size: 13px;

    transition: color .3s ease;

}


.footer-column a:hover {

    color: #7dd3fc;

}


.footer-location {

    display: flex;

    align-items: start;

    gap: 14px;

}


.location-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: rgba(14, 165, 233, .15);

    color: #7dd3fc;

}


.footer-location strong {

    display: block;

    font-size: 14px;

}


.footer-location p {

    margin-top: 10px;

    color: #94a3b8;

    font-size: 13px;

    line-height: 1.7;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    color: #64748b;

    font-size: 11px;

}


.footer-bottom i {

    color: #f43f5e;

}


/* MODALS */

.modal {

    position: fixed;

    inset: 0;

    z-index: 3000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 24px;

}


.modal.show {

    display: flex;

}


.modal-backdrop {

    position: absolute;

    inset: 0;

    background: rgba(2, 6, 23, .6);

    backdrop-filter: blur(8px);

}


.modal-box {

    position: relative;

    z-index: 2;

    width: min(560px, 100%);

    padding: 45px;

    background: white;

    border-radius: 28px;

    box-shadow: 0 30px 100px rgba(0, 0, 0, .2);

    animation: modalIn .3s ease;

}


@keyframes modalIn {

    from {

        opacity: 0;

        transform: translateY(20px) scale(.96);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}


.modal-close {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 38px;

    height: 38px;

    border: none;

    border-radius: 50%;

    background: #f1f5f9;

    color: var(--muted);

}


.modal-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: #e0f2fe;

    color: var(--sky);

    font-size: 24px;

    margin-bottom: 28px;

}


.modal-label {

    color: var(--sky-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.modal-box h2 {

    margin-top: 12px;

    font-size: 38px;

    letter-spacing: -1px;

}


.modal-box > p {

    margin-top: 18px;

    color: var(--muted);

    line-height: 1.7;

}


.modal-list {

    margin: 25px 0;

}


.modal-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 0;

    border-bottom: 1px solid var(--border);

    color: var(--text);

    font-size: 14px;

}


.modal-list i {

    color: var(--sky);

}


.modal-btn {

    margin-top: 20px;

}


.project-result {

    margin-top: 25px;

    padding: 18px;

    border-radius: 14px;

    background: #f0fdf4;

    color: #15803d;

    font-size: 14px;

    font-weight: 700;

}


/* TOAST */

.toast {

    position: fixed;

    top: 25px;

    right: 25px;

    z-index: 5000;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 20px;

    background: #071827;

    color: white;

    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

    font-size: 13px;

    transform: translateX(150%);

    transition: transform .4s ease;

}


.toast.show {

    transform: translateX(0);

}


.toast i {

    color: #4ade80;

}


/* BACK TO TOP */

#back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--sky);

    color: white;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: all .3s ease;

    z-index: 500;

}


#back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* REVEAL */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition: opacity .8s ease, transform .8s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .desktop-nav,
    .nav-cta {

        display: none;

    }


    .mobile-menu-btn {

        display: block;

    }


    .mobile-menu {

        display: block;

        max-height: 0;

        overflow: hidden;

        background: white;

        transition: max-height .4s ease;

    }


    .mobile-menu.open {

        max-height: 500px;

        border-top: 1px solid var(--border);

    }


    .mobile-menu-inner {

        display: flex;

        flex-direction: column;

        gap: 22px;

        padding: 28px 24px;

    }


    .mobile-menu-inner > a {

        color: var(--muted);

        font-weight: 600;

    }


    .mobile-cta {

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 16px;

        background: var(--sky);

        color: white !important;

        border-radius: 12px;

    }


    .hero-container {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .hero-content {

        text-align: center;

    }


    .hero-content h1,
    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons,
    .hero-trust {

        justify-content: center;

    }


    .hero-visual {

        min-height: 520px;

    }


    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-text {

        max-width: 700px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .impact-stats {

        grid-template-columns: repeat(2, 1fr);

    }


    .footer-top {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 650px) {

    .container,
    .hero-container,
    .nav-container {

        width: min(100% - 32px, 1240px);

    }


    .hero-section {

        padding-top: 140px;

        min-height: auto;

        padding-bottom: 100px;

    }


    .hero-content h1 {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .hero-description {

        font-size: 16px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .primary-btn,
    .secondary-btn {

        width: 100%;

    }


    .hero-trust {

        flex-direction: column;

    }


    .hero-visual {

        min-height: 430px;

    }


    .dashboard-card {

        transform: none;

    }


    .floating-card-one {

        left: -8px;

        top: 20px;

    }


    .floating-card-two {

        right: -8px;

        bottom: 30px;

    }


    .orbit-one,
    .orbit-two {

        display: none;

    }


    .scroll-indicator {

        display: none;

    }


    .section {

        padding: 90px 0;

    }


    .section-heading {

        display: block;

    }


    .section-heading > p {

        margin-top: 25px;

    }


    .about-cards {

        grid-template-columns: 1fr;

    }


    .impact-stats {

        grid-template-columns: 1fr 1fr;

        gap: 15px;

    }


    .impact-stat strong {

        font-size: 48px;

    }


    .portfolio-grid {

        grid-template-columns: 1fr;

    }


    .project-large {

        grid-row: auto;

    }


    .project-large .project-image {

        aspect-ratio: 1.4;

    }


    .testimonial-slider {

        gap: 10px;

    }


    .testimonial-content > p {

        font-size: 20px;

    }


    .slider-btn {

        width: 38px;

        height: 38px;

        flex-shrink: 0;

    }


    .contact-form {

        padding: 24px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 12px;

    }


    .modal-box {

        padding: 30px 24px;

    }


    .modal-box h2 {

        font-size: 30px;

    }

}