* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* INFO CARDS ENHANCEMENTS */
.info-cards-section {
  position: relative;
}
.info-cards-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,106,0,0.12) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.info-cards-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(43,183,218,0.14) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.info-cards-section .section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.info-cards-section .section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #062a5e;
  letter-spacing: 0.2px;
}
.info-cards-section .section-header p {
  margin-top: 8px;
  color: #6b7280;
}
.info-cards-section .info-cards {
  position: relative;
  z-index: 1;
  margin-top: 14px;
}
.info-cards-section .cta-wrap {
  text-align: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
body {
    background: #f5f5f5;
    padding-top: 112px;
}
html { overflow-x: hidden; }
body { overflow-x: hidden; }

nav {
    width: 100%;
    min-height: 112px;
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: stretch;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav.nav-scrolled {
    background-color: #07132b;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 70%);
    background-size: 16px 16px, 16px 16px, 100% 100%;
    background-position: 0 0, 8px 8px, 0 0;
    box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

nav.nav-scrolled .menu a {
    color: #ffffff;
}

nav .container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 28px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
}

.logo img {
    display: block;
    height: 76px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.menu {
    display: flex;
    gap: 34px;
    margin-left: auto;
    justify-content: flex-end;
    padding-top: 19px;
    align-items: center;
    margin-right: 10px;
}

.menu a.menu-cta {
    background: #ff6a00;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
}

.menu a.menu-cta::after {
    display: none;
}

.menu a.menu-cta:hover {
    background: #e85f00;
}

.menu a.menu-cta:active {
    background: #d75600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.theme-icon {
    display: grid;
    place-items: center;
}

.theme-icon-sun {
    display: none;
}

body.theme-dark .theme-icon-sun {
    display: grid;
}

body.theme-dark .theme-icon-moon {
    display: none;
}

.nav-burger {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    cursor: pointer;
    display: none;
    place-items: center;
    padding: 0;
    position: relative;
}

.nav-burger span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 28px; }

nav.is-open .nav-burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
nav.is-open .nav-burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.menu a {
    position: relative;
    text-decoration: none;
    font-size: 20px;
    color: #333;
    font-weight: 600;
    padding-bottom: 5px;
    transition: 0.3s;
}

/* Hover underline animation */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 3px;           /* rectangle height */
    background: #ffae00;
    transition: 0.3s;
    border-radius: 2px;
}

.menu a:hover::after {
    width: 100%;
}

/* ACTIVE page = underline always shown */
.menu a.active::after {
    width: 100%;
}


/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;           /* full-width */
    height: 70vh;              /* taller, near full screen */
    margin: 0;                 /* no outer box spacing */
    overflow: hidden;
    background: #000;          /* subtle backdrop */
}

/* Hide horizontal scrollbar globally or for body/html */
body {
    overflow-x: hidden;
}

.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.6s ease;
}

.hero-slide {
    min-width: 100%;
    flex: 0 0 100%;
    height: 100%;              /* match slider height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* stretch to fill */
    display: block;
}

/* Specific adjustment for Full Team image to reduce stretch */
.hero-slide img[src*="full%20team"],
.hero-slide img[src*="full team"] {
    object-fit: contain;      /* fit within container without cropping/stretching too much */
    background: #000;         /* match slider background */
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.5);
    color: #111;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.hero-nav-btn:hover {
    background: rgba(255,255,255,0.9);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-slider { height: 55vh; }
    .hero-slide { height: 55vh; }
    .hero-nav-btn { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .hero-slider { height: 48vh; }
    .hero-slide { height: 48vh; }
    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }
}

@media (max-width: 860px) {
    nav {
        min-height: 80px;
    }
    body {
        padding-top: 80px;
    }
    nav .container {
        padding: 12px 18px;
    }
    .logo img {
        height: 56px;
    }
    .nav-burger {
        display: grid;
    }

    .menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 2000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        box-sizing: border-box;
        flex-direction: column;
        background: #ffffff;
        padding: 24px;
        gap: 18px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    nav.is-open .menu {
        display: flex;
    }

    .menu a {
        font-size: 17px;
        width: 100%;
        display: block;
    }
    
    /* Force readable link colors on white overlay when nav becomes scrolled */
    body:not(.theme-dark) nav.nav-scrolled .menu {
        background: #ffffff;
        border-top: 1px solid #eee;
    }
    body:not(.theme-dark) nav.nav-scrolled .menu a {
        color: #333;
    }
    
    .menu a.menu-cta {
        text-align: center;
        width: 100%;
    }

    /* Theme Dark Support for Mobile Menu */
    body.theme-dark .menu {
        background: #0b1220;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    body.theme-dark nav.nav-scrolled .menu a {
        color: #e5e7eb;
    }
}

body.theme-dark {
    background: #070b10;
    color: #e5e7eb;
}

body.theme-dark nav {
    background: #0b1220;
    box-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

body.theme-dark .logo {
    background: transparent;
}

body.theme-dark .menu {
    background: transparent;
}

body.theme-dark .menu a {
    color: #e5e7eb;
}

body.theme-dark .theme-toggle,
body.theme-dark .nav-burger {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
    color: #e5e7eb;
}

body.theme-dark .nav-burger span {
    background: #e5e7eb;
}

/* Optional: boxed variant if you prefer a big centered box */
.slider.boxed {
    max-width: 1400px;
    height: 600px;
    margin: 24px auto;
    border-radius: 16px;
}
.slider.boxed .slide { height: 600px; }


.feature-section {
    width: 100%;
    min-height: calc(100vh - 112px);
    padding: clamp(70px, 8vh, 110px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    display: flex;
    align-items: center;
}

.feature-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 90px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 4vw, 70px);
    flex-wrap: nowrap;
}

.feature-image {
    position: relative; /* for floating rectangle */
    flex: 0 0 auto;
    width: min(520px, 40vw);
}
.feature-image img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid #d29b4c; /* accent border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1; /* keep above rectangle */
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    will-change: transform, filter;
}

.feature-image:hover img {
    transform: translateY(-6px) scale(1.04) rotate(-0.8deg);
    box-shadow: 0 18px 42px rgba(0,0,0,0.18);
    filter: drop-shadow(0 10px 18px rgba(255, 106, 0, 0.18));
}

/* Floating stroke rectangle behind image */
.feature-image::before {
    content: "";
    position: absolute;
    left: -24px;
    top: -24px;
    width: calc(100% + 48px);
    height: calc(100% + 48px);
    border: 3px solid #ffae00; /* stroke only */
    border-radius: 14px;
    background: transparent; /* no fill */
    z-index: 0;
    animation: floatBox 10s ease-in-out infinite;
    will-change: transform;
    opacity: 0.9;
}

@keyframes floatBox {
    0%   { transform: translateY(-6px); }
    50%  { transform: translateY(6px); }
    100% { transform: translateY(-6px); }
}

.feature-content {
    flex: 1 1 620px;
    min-width: 320px;
}

.feature-content h2 {
    font-size: 38px; /* bigger heading */
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    color: #222;
}

.feature-content h2 .brand-accent {
    color: #ff6a00;
}

.feature-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 32px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.card {
    background: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }

.card:hover .icon {
    transform: rotateY(180deg);
}

.card .icon {
    transition: transform 0.6s ease;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fff6e0;
    border: 1px solid #ffd37a;
    color: #b86b00;
    margin-bottom: 10px;
}

.card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffae00;
}

.highlight-box {
    border: 2px dashed #ffae00;
    background: #fffdf5;
    padding: 18px;
    font-weight: 800;
    text-align: center;
    margin-top: 8px;
    border-radius: 10px;
}

/* Responsive for features */
@media (max-width: 900px) {
    .feature-section {
        min-height: auto;
        padding: 80px 0;
    }
    .feature-container {
        padding: 0 20px;
        gap: 30px;
        flex-wrap: wrap;
    }
    .feature-image {
        width: min(520px, 100%);
    }
    .feature-image::before {
        left: -16px; top: -16px; width: calc(100% + 32px); height: calc(100% + 32px);
    }
    .feature-cards { grid-template-columns: 1fr; }
    .feature-content h2 { font-size: 30px; }
}

.about-split {
    position: relative;
    padding: 95px 24px;
    background: #ffffff;
    overflow: visible;
}

.about-split::before {
    content: none;
}

.about-split__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-split__left {
    padding-right: 10px;
}

.about-split__title {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 900;
    color: #0b2a4a;
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

.about-split__title-accent {
    color: #ff6a00;
}

.about-split__body {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.9;
    color: #4b5563;
    max-width: 780px;
}

.about-split__points {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
}

.about-split__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #0b2a4a;
}

.about-split__points li::before {
    content: "✓";
    color: #ff6a00;
    font-weight: 900;
}

.about-split__sign {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(2, 6, 23, 0.10);
    max-width: 720px;
}

.about-split__sign-images {
    display: flex;
    align-items: flex-end;
    gap: 18px;
}

.about-split__sign-images img {
    display: block;
    height: 54px;
    width: auto;
    object-fit: contain;
}

.about-split__sign-text {
    display: grid;
    gap: 4px;
}

.about-split__sign-text strong {
    font-size: 12px;
    font-weight: 900;
    color: #0b2a4a;
}

.about-split__sign-text span {
    font-size: 11px;
    font-weight: 800;
    color: rgba(11, 42, 74, 0.70);
    letter-spacing: 0.2px;
}

.about-split__right {
    position: relative;
    justify-self: end;
}

.about-split__right::before {
    content: "";
    position: absolute;
    top: -18px;
    bottom: 32px;
    left: 18px;
    right: -120px;
    background-image: radial-gradient(circle, rgba(2, 6, 23, 0.20) 1.2px, transparent 1.4px);
    background-size: 14px 14px;
    opacity: 0.45;
    transform: translateY(-10px);
}

.about-split__photo {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    border: 1px solid rgba(2, 6, 23, 0.10);
    background: #fff;
}

.about-split__photo img {
    width: 100%;
    height: 440px;
    display: block;
    object-fit: contain;
    background: #fff;
}

@media (max-width: 980px) {
    .about-split {
        padding: 80px 20px;
    }

    .about-split__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-split__right { justify-self: center; }
    .about-split__right::before { right: -40px; }
    .about-split__title { font-size: 38px; }
    .about-split__photo img { height: 380px; }
}

@media (max-width: 560px) {
    .about-split__title { font-size: 32px; }
    .about-split__photo img { height: 320px; }
    .about-split__right::before { right: -18px; }
}

body.theme-dark .about-split {
    background: #070b10;
}

body.theme-dark .about-split__title,
body.theme-dark .about-split__points li,
body.theme-dark .about-split__sign-text strong {
    color: #e5e7eb;
}

body.theme-dark .about-split__body,
body.theme-dark .about-split__sign-text span {
    color: rgba(229, 231, 235, 0.76);
}

body.theme-dark .about-split__sign {
    border-top-color: rgba(229, 231, 235, 0.16);
}

body.theme-dark .about-split__right::before {
    background-image: radial-gradient(circle, rgba(229, 231, 235, 0.20) 1.2px, transparent 1.4px);
    opacity: 0.22;
}

body.theme-dark .about-split__photo {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}


.features-cards {
    padding: 110px 0;
    background: #f9f9f9;
}

.features-cards .container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 90px);
    display: grid;
    grid-template-columns: repeat(4, minmax(320px, 1fr));
    gap: 34px;
    align-items: stretch;
}

.features-cards .card {
    background: #fff;
    padding: 66px 42px 46px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.features-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.features-cards .card .icon {
    position: absolute;
    top: -36px;
    left: 32px;
    background: linear-gradient(135deg, #ff6a00 0%, #ffae00 100%);
    color: #fff;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(255, 106, 0, 0.25);
}

.features-cards .card h3 {
    margin-top: 26px;
    margin-bottom: 14px;
    font-size: 1.45rem;
    line-height: 1.25;
    color: #222;
}

.features-cards .card p {
    font-size: 1.08rem;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.75;
}

.features-cards .card a {
    text-decoration: none;
    font-weight: bold;
    color: #222;
    border-bottom: 1px solid #ccc;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.features-cards .card a:hover {
    color: #d89c2b;
    border-color: #d89c2b;
}

@media (max-width: 1200px) {
    .features-cards .container {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }
}

@media (max-width: 720px) {
    .features-cards {
        padding: 90px 0;
    }

    .features-cards .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 18px;
    }

    .features-cards .card {
        padding: 56px 22px 34px;
    }

    .features-cards .card .icon {
        left: 22px;
    }
}

/* Modal Popup Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal.is-open {
    display: grid;
    place-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    transform-origin: center;
    animation: modalPop 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalPop {
    0% { opacity: 0; transform: translateY(10px) scale(0.96); }
    60% { opacity: 1; transform: translateY(0) scale(1.02); }
    100% { transform: scale(1); }
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#modal-title {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #ffae00;
    padding-bottom: 10px;
    display: inline-block;
}

#modal-text {
    margin-top: 20px;
    line-height: 1.6;
    color: #555;
}

#modal-more {
    margin-top: 16px;
    line-height: 1.7;
    color: #444;
}

#modal-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: #ff6a00;
    color: #ffffff;
    font-weight: 750;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
}

#modal-read-more:hover {
    background: #e85f00;
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(10, 37, 64, 0.16);
}

#modal-read-more:active {
    background: #d75600;
    transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

.our-projects__view-more {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 44, 61, 0.18);
  color: #0b2c3d;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(10, 37, 64, 0.10);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.our-projects__view-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.14);
}
.our-projects__view-more svg {
  width: 18px;
  height: 18px;
}

.our-projects {
  padding: clamp(60px, 6vw, 100px) 0px;
  background: #f8fafd;
}

.our-projects__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.our-projects__header {
  text-align: center;
  margin-bottom: 60px;
}

.our-projects__kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff6a00;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.our-projects__title {
  font-size: 42px;
  font-weight: 800;
  color: #0b2c3d;
}

.our-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 4.8vw, 84px);
}

.our-projects__card {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%),
    radial-gradient(1200px 600px at -20% -20%, rgba(11, 44, 61, 0.06) 0%, transparent 60%);
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border: 1px solid rgba(11, 44, 61, 0.10);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.our-projects__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.12);
  border-color: rgba(11, 44, 61, 0.18);
}

.our-projects__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ff8c00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.our-projects__card:hover::before {
  opacity: 1;
}

.our-projects__card-icon {
  width: 56px;
  height: 56px;
  background: rgba(11, 44, 61, 0.04);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #0b2c3d;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
}

.our-projects__card:hover .our-projects__card-icon {
  background: #0b2c3d;
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.16);
}

.our-projects__card-icon svg {
  width: 28px;
  height: 28px;
}

.our-projects__card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0b2c3d;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.our-projects__card-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #ff6a00;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.28);
}

.our-projects__card p:last-child {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Fullscreen-like cards to cover page height */
.our-projects__card {
  min-height: clamp(700px, calc(100vh - 200px), 1200px);
}

@media (max-width: 768px) {
  .our-projects__card {
    min-height: clamp(520px, 80vh, 900px);
  }
}

.our-projects__card {
  min-height: clamp(380px, 40vh, 560px);
}

.our-projects__card .our-projects__view-more {
  margin-top: auto;
  align-self: flex-start;
}

.our-projects__view-more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff6a00 0%, #ffae00 120%);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(10, 37, 64, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.our-projects__view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(10, 37, 64, 0.16);
}
.our-projects__view-more:active {
  transform: translateY(0);
}
.our-projects__view-more svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .our-projects {
    padding: 60px 20px;
  }
  
  .our-projects__title {
    font-size: 32px;
  }
}

.features {
  padding: 60px 6%;
  background: #fff;
}

.features-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.feature-box {
  text-align: center;
  max-width: 170px;
}

.feature-box img {
  width: 48px;
  margin-bottom: 18px;
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0b2a4a;
}

.feature-box p {
  font-size: 14px;
  color: #5a6b7b;
  line-height: 1.6;
}

.divider {
  height: 120px;
  border-left: 2px dotted #cfd8dc;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .features-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .divider {
    display: none;
  }

  .feature-box {
    max-width: 45%;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .feature-box {
    max-width: 100%;
  }
}

/* Infinite Image Carousel Styles */
.image-carousel-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    overflow: hidden; /* Hide overflow to create seamless effect */
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: calc(300px * 10); /* Estimate width: Slide width * Number of slides (5 original + 5 duplicate) */
    animation: scroll 20s linear infinite;
}

.carousel-slide {
    width: 300px;
    padding: 0 15px; /* Spacing between images */
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5)); /* Move by the width of original set of slides */
    }
}

/* Parallax Section Styles */
.parallax-section {
    background-image: url('images/Picture3.jpg'); /* Using existing image */
    min-height: 800px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); /* Dark overlay */
}

.parallax-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-parallax {
    display: inline-block;
    padding: 15px 40px;
    background: #ffae00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 174, 0, 0.4);
}

.btn-parallax:hover {
    background: #e69c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 174, 0, 0.6);
}

@media (max-width: 768px) {
    .parallax-content h2 {
        font-size: 2rem;
    }
    .parallax-section {
        background-attachment: scroll; /* Better performance on mobile */
    }
}

/* Stats Section Styles */
.stats-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffae00;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-number::after {
    content: "+";
    color: #ffae00;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}



.service-section {
  padding: 80px 6%;
  background: #fff;
}

.service-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sub-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: #ff6a21;
  font-weight: 600;
}

.service-left h2 {
  font-size: 42px;
  margin: 15px 0;
  color: #0b2a4a;
}

.service-left h2 span {
  color: #ff6a21;
}

.service-left p {
  font-size: 16px;
  color: #555;
  max-width: 420px;
  line-height: 1.7;
}

.steps {
  margin-top: 30px;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step span {
  width: 45px;
  height: 45px;
  background: #fff5ef;
  color: #ff6a21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
}

.step p {
  font-size: 15px;
  color: #222;
}

.service-image img {
  max-width: 700px;
}

.service-form {
  background: #f9f3ee;
  padding: 40px;
  border-radius: 6px;
  width: 320px;
}

.service-form h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #0b2a4a;
}

.service-form h3 span {
  color: #ff6a21;
}

.service-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
  margin-bottom: 20px;
  background: transparent;
  outline: none;
}

.service-form button {
  width: 100%;
  padding: 14px;
  background: #ff6a21;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1000px) {
  .service-container {
    flex-direction: column;
    text-align: center;
  }

  .steps {
    text-align: left;
  }

  .service-form {
    width: 100%;
  }
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0b2a4a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 3000;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}



/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  background: #f6f0ea;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

/* ===== MODERN TESTIMONIAL VARIANT ===== */
.testimonial-section--modern {
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 90px);
}

.testimonial-section--modern .tst-header {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}
.testimonial-section--modern .tst-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ff6a00;
  text-transform: uppercase;
}
.testimonial-section--modern .tst-title {
  margin-top: 6px;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.06;
  font-weight: 950;
  color: #0b2c3d;
}
.testimonial-section--modern .tst-sub {
  margin-top: 8px;
  font-size: 16px;
  color: #4b5563;
}

.testimonial-section--modern .tst-container {
  max-width: 1100px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.testimonial-section--modern .arrow {
  width: 46px;
  height: 46px;
  font-size: 20px;
  border-radius: 14px;
  background: #0b2c3d;
  color: #fff;
  box-shadow: 0 14px 40px rgba(11, 44, 61, 0.16);
}
.testimonial-section--modern .arrow.prev { background: #163a52; }
.testimonial-section--modern .arrow:hover { opacity: 0.92; }

.testimonial-section--modern .tst-card-wrap {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.testimonial-section--modern .tst-card {
  display: none;
  background: #ffffff;
  border: 1px solid rgba(11, 44, 61, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.08);
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-section--modern .tst-card.active { display: block; }

.testimonial-section--modern .tst-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.testimonial-section--modern .tst-meta .tst-name {
  font-weight: 800;
  font-size: 28px;
  color: #0b2c3d;
  letter-spacing: -0.5px;
}
.testimonial-section--modern .tst-meta .tst-role {
  margin-top: 4px;
  font-size: 14px;
  color: #6b7280;
}
.testimonial-section--modern .tst-rating {
  font-size: 20px;
  color: #ffae00;
  letter-spacing: 2px;
}
.testimonial-section--modern .tst-quote {
  margin-top: 24px;
  font-size: 56px;
  font-weight: 900;
  color: #ff6a00;
  line-height: 0.8;
  opacity: 0.3;
}
.testimonial-section--modern .tst-text {
  margin-top: 12px;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.6;
  color: #0b2c3d;
  font-weight: 500;
}
.testimonial-section--modern .tst-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(11,44,61,0.08);
  padding-top: 12px;
}
.testimonial-section--modern .tst-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.testimonial-section--modern .tst-source {
  font-size: 14px;
  color: #4b5563;
}

@media (max-width: 680px) {
  .testimonial-section--modern { padding: 44px 16px; }
  .testimonial-section--modern .tst-title { font-size: 26px; }
  .testimonial-section--modern .tst-card { padding: 16px; }
  .testimonial-section--modern .tst-quote { font-size: 34px; }
  .testimonial-section--modern .arrow { width: 40px; height: 40px; font-size: 18px; }
}

.sub-title {
  color: #ff6a21;
  letter-spacing: 2px;
  font-size: 13px;
}

.title {
  font-size: 38px;
  color: #0b2a4a;
  margin-bottom: 60px;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  gap: 16px;
}

/* ===== ARROWS ===== */
.arrow {
  width: 70px;
  height: 70px;
  border: none;
  font-size: 26px;
  cursor: pointer;
  background: #ff6a21;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

@media (max-width: 768px) {
  .title { font-size: 30px; margin-bottom: 36px; }
  .arrow { width: 52px; height: 52px; font-size: 22px; }
  .testimonial-card { flex-basis: 100%; }
  .testimonial { padding: 28px 18px; }
  .quote { font-size: 48px; }
  .testimonial p { font-size: 16px; }
  .testimonial-section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .arrow { width: 44px; height: 44px; font-size: 20px; }
  .testimonial { padding: 24px 14px; }
  .quote { font-size: 42px; }
  .line { margin: 22px auto; }
}

.arrow.prev {
  background: #f3c7af;
}

.arrow:hover {
  opacity: 0.85;
}

/* ===== CARD ===== */
.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 120%);
  overflow: hidden;
  flex: 1 1 720px;
  margin: 0;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* ===== SLIDER TRACK ===== */
.testimonial {
  min-width: 100%;
  padding: 80px 100px;
  box-sizing: border-box;
  display: none;
}

.testimonial.active {
  display: block;
  animation: slideIn 0.6s ease;
}

/* ===== TEXT ===== */
.quote {
  font-size: 70px;
  color: #ff6a21;
  margin-bottom: 20px;
}

.testimonial p {
  font-size: 18px;
  color: #0b2a4a;
  line-height: 1.7;
}

.line {
  display: block;
  width: 40px;
  height: 2px;
  background: #ff6a21;
  margin: 30px auto;
}

.testimonial h4 {
  color: #0b2a4a;
  margin-bottom: 5px;
}

.testimonial small {
  color: #ff6a21;
}

/* ===== SLIDE ANIMATION ===== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== TESTIMONIAL – RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 860px) {
  .testimonial-section {
    padding: 60px 16px;
  }
  .title {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .testimonial-container {
    max-width: 680px;
    margin: 0 auto;
    flex-direction: column;
    gap: 18px;
  }
  .arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 12px;
  }
  .testimonial-card {
    margin: 0;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(11, 42, 74, 0.10);
    border: 1px solid rgba(11, 42, 74, 0.08);
    max-height: 420px;
    overflow-y: auto;
  }
  .testimonial {
    padding: 28px 22px;
  }
  .quote {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .testimonial p {
    font-size: 16px;
    line-height: 1.65;
  }
  .line {
    margin: 16px auto;
  }
}

@media (max-width: 520px) {
  .title {
    font-size: 24px;
  }
  .arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .testimonial {
    padding: 20px 16px;
  }
  .quote {
    font-size: 36px;
  }
  .testimonial p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 720px) {
  .testimonial-section {
    padding: 54px 14px;
  }
  .title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .sub-title {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .testimonial-card {
    max-height: 360px;
    overflow-y: auto;
  }
  .testimonial {
    padding: 24px 18px;
  }
  .quote {
    font-size: 38px;
    margin-bottom: 8px;
  }
  .testimonial p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial h4 { font-size: 16px; }
  .testimonial small { font-size: 12px; }
}

@media (max-width: 420px) {
  .testimonial-section {
    padding: 42px 12px;
  }
  .title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .sub-title {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .testimonial-card {
    max-height: 300px;
    overflow-y: auto;
  }
  .testimonial {
    padding: 16px 12px;
  }
  .quote {
    font-size: 30px;
    margin-bottom: 6px;
  }
  .testimonial p {
    font-size: 14px;
    line-height: 1.55;
  }
  .line {
    display: none;
  }
  .testimonial h4 { font-size: 15px; }
  .testimonial small { font-size: 11px; }
}

@media (max-width: 360px) {
  .title {
    font-size: 20px;
  }
  .quote {
    font-size: 26px;
  }
  .testimonial p {
    font-size: 13.5px;
  }
}


.service-section {
    padding: 140px 0;   /* ⬅ section height increase */
    background: #fff;
}

.service-container {
    max-width: 1400px;  /* ⬅ wider container */
    margin: auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 1.1fr;
    gap: 80px;          /* ⬅ more breathing space */
    align-items: center;
}

/* LEFT CONTENT */
.service-left .tag {
    font-size: 14px;
    letter-spacing: 3px;
    color: #ff6a00;
    font-weight: 600;
}

.service-left h2 {
    font-size: 56px;   /* ⬅ BIG heading */
    line-height: 1.15;
    color: #0a2540;
    margin: 25px 0;
}

.service-left h2 span {
    color: #ff6a00;
}

.service-left p {
    font-size: 18px;   /* ⬅ readable paragraph */
    color: #5f6c7b;
    line-height: 1.8;
    margin-bottom: 10px;
    max-width: 520px;
}







/* =========================
   ABOUT SECTION – FULL SIZE
========================= */

.about-section {
  padding: 120px 0;
  background: #f5f5f5;
}

.about-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 90px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.about-content h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #0b2c3d;
  margin-bottom: 35px;
}

.about-content .highlight {
  color: #ff6a00;
}

.about-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 22px;
  max-width: 95%;
}

/* =========================
   BULLET POINTS
========================= */

.about-points {
  margin-top: 35px;
  list-style: none;
  padding: 0;
}

.about-points li {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c3d;
  margin-bottom: 16px;
  padding-left: 34px;
  position: relative;
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6a00;
  font-size: 18px;
}

/* =========================
   SIGNATURE SECTION
========================= */

.signature-block {
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 35px;
}

.signature-block img {
  width: min(480px, 100%);
  object-fit: contain;
}

.signature-text {
  font-size: 16px;
  line-height: 1.7;
  color: #0b2c3d;
}

.signature-text strong {
  font-size: 18px;
  font-weight: 700;
}

/* =========================
   RIGHT IMAGE
========================= */

.about-image {
  position: relative;
  overflow: visible;
}

.about-image img {
  width: 100%;
  height: 540px;              /* BIG IMAGE */
  object-fit: cover;          /* LEFT–RIGHT CROP */
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.25);
}

/* =========================
   DOTTED BACKGROUND (RIGHT)
========================= */

.about-image::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -70px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(#cfcfcf 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  z-index: -1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .about-content h2 {
    font-size: 42px;
  }

  .about-content p,
  .about-points li {
    font-size: 17px;
  }

  .about-image img {
    height: 480px;
  }
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-content h2 {
    font-size: 38px;
  }

  .about-image img {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 80px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }

  .signature-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-section--pro {
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vh, 120px) clamp(18px, 5vw, 90px);
  background:
    radial-gradient(1100px 540px at 18% 20%, rgba(255, 106, 0, 0.12) 0%, rgba(255, 106, 0, 0) 62%),
    radial-gradient(900px 520px at 84% 24%, rgba(43, 183, 218, 0.14) 0%, rgba(43, 183, 218, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.about-pro {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 4vw, 70px);
  align-items: center;
}

.about-pro__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 44, 61, 0.12);
  box-shadow: 0 18px 52px rgba(10, 37, 64, 0.10);
  font-weight: 900;
  letter-spacing: 2.8px;
  font-size: 12px;
  color: #0b2c3d;
  text-transform: uppercase;
  width: fit-content;
}

.about-pro__title {
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  font-weight: 950;
  color: #0b2c3d;
  letter-spacing: -0.5px;
}

.about-pro__title-accent {
  color: #ff6a00;
}

.about-pro__lead {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.95;
  color: #4b5563;
  font-weight: 650;
  max-width: 62ch;
}

.about-pro__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pro__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(11, 44, 61, 0.12);
  color: rgba(11, 44, 61, 0.92);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 42px rgba(10, 37, 64, 0.10);
  backdrop-filter: blur(10px);
}

.about-pro__points {
  margin-top: 18px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 62ch;
}

.about-pro__points li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 750;
  color: rgba(11, 44, 61, 0.92);
}

.about-pro__points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6a00;
  font-size: 18px;
}

.about-pro__footer {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(2, 6, 23, 0.10);
  max-width: 62ch;
}

.about-pro__stamp {
  display: block;
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}

.about-pro__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11, 44, 61, 0.12);
  box-shadow: 0 30px 100px rgba(10, 37, 64, 0.16);
  background: rgba(255, 255, 255, 0.70);
}

.about-pro__image {
  width: 100%;
  height: min(620px, 64vh);
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 300ms ease, filter 300ms ease;
}

.about-pro__media:hover .about-pro__image {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.06);
}

.about-pro__media-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 44, 61, 0.16);
  box-shadow: 0 22px 64px rgba(10, 37, 64, 0.18);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 10px;
}

.about-pro__media-title {
  font-weight: 950;
  letter-spacing: -0.2px;
  font-size: 16px;
  color: #0b2c3d;
}

.about-pro__media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pro__media-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 44, 61, 0.14);
  font-weight: 850;
  font-size: 12px;
  color: rgba(11, 44, 61, 0.92);
}

@media (max-width: 980px) {
  .about-section--pro {
    min-height: auto;
    display: block;
    padding: 86px 20px;
  }

  .about-pro {
    grid-template-columns: 1fr;
  }

  .about-pro__media {
    max-width: 680px;
    justify-self: center;
  }

  .about-pro__image {
    height: min(520px, 66vh);
  }
}

@media (max-width: 560px) {
  .about-pro__media-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

body.theme-dark .about-section--pro {
  background:
    radial-gradient(1100px 540px at 18% 20%, rgba(255, 106, 0, 0.16) 0%, rgba(255, 106, 0, 0) 62%),
    radial-gradient(900px 520px at 84% 24%, rgba(43, 183, 218, 0.18) 0%, rgba(43, 183, 218, 0) 60%),
    linear-gradient(180deg, #070b10 0%, #070b10 100%);
}

body.theme-dark .about-pro__kicker,
body.theme-dark .about-pro__chip,
body.theme-dark .about-pro__media-card,
body.theme-dark .about-pro__media-tags span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.40);
}

body.theme-dark .about-pro__title,
body.theme-dark .about-pro__kicker,
body.theme-dark .about-pro__media-title {
  color: #e5e7eb;
}

body.theme-dark .about-pro__lead,
body.theme-dark .about-pro__points li,
body.theme-dark .about-pro__chip,
body.theme-dark .about-pro__media-tags span {
  color: rgba(229, 231, 235, 0.82);
}

body.theme-dark .about-pro__footer {
  border-top-color: rgba(229, 231, 235, 0.16);
}

body.theme-dark .about-pro__media {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
  background: rgba(255, 255, 255, 0.03);
}

.text-carousel {
  width: 100%;
  overflow: hidden;
  background: #0b2c3d;
  padding: 35px 0;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollText 30s linear infinite;
}

.carousel-track span {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-right: 80px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
}

/* ⭐ 4-SIDE STAR AFTER EACH WORD */
.carousel-track span::after {
  content: "✦";
  margin-left: 40px;
  color: #ffffff;
  font-size: 28px;
  opacity: 0.9;
}

/* Hover effect */
.carousel-track span:hover {
  color: #ffffff;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track span {
    font-size: 30px;
    margin-right: 50px;
  }

  .carousel-track span::after {
    font-size: 18px;
    margin-left: 25px;
  }
}

.services-showcase {
  padding: 120px 40px;
  background:
    radial-gradient(1200px 520px at 18% 18%, rgba(255, 106, 0, 0.14) 0%, rgba(255, 106, 0, 0.00) 62%),
    radial-gradient(900px 520px at 82% 35%, rgba(255, 174, 0, 0.12) 0%, rgba(255, 174, 0, 0.00) 60%),
    linear-gradient(180deg, #fbfcff 0%, #f6f7fb 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services-showcase::before,
.services-showcase::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.55;
  z-index: -1;
  will-change: transform;
}

.services-showcase::before {
  left: -180px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 106, 0, 0.45), rgba(255, 106, 0, 0.00) 62%);
  animation: servicesBlobA 18s ease-in-out infinite;
}

.services-showcase::after {
  right: -220px;
  bottom: -140px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 174, 0, 0.40), rgba(255, 174, 0, 0.00) 62%);
  animation: servicesBlobB 22s ease-in-out infinite;
}

.services-container {
  max-width: 1600px;
  margin: auto;
  text-align: center;
}

/* Heading */
.services-title {
  font-size: 44px;
  font-weight: 800;
  color: #0b2c3d;
  margin-bottom: 80px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.services-title span {
  color: #ff6a00;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: clamp(22px, 3vw, 60px);
  align-items: stretch;
}

/* Card */
.services-showcase .service-card {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #fff7f0 140%);
  padding-bottom: 42px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 60px rgba(10, 37, 64, 0.10);
  border: 1px solid rgba(11, 44, 61, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform: translateZ(0);
  will-change: transform;
}

.services-showcase .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.00) 20%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0.00) 62%);
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.services-showcase .service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(10, 37, 64, 0.18);
  border-color: rgba(255, 106, 0, 0.22);
}

.services-showcase .service-card:hover::after {
  transform: translateX(120%) skewX(-12deg);
}

/* Image */
.services-showcase .service-image {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #0b2c3d;
}

.services-showcase .service-image img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 280px;
  object-fit: cover;
  clip-path: inset(0 round 18px 18px 0 0);
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.services-showcase .service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 44, 61, 0.00) 20%, rgba(11, 44, 61, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 18px 18px 0 0;
}

.services-showcase .service-card:hover .service-image img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.03);
}

/* Icon */
.services-showcase .service-icon {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #fff6ed 60%, #ffffff 100%);
  color: #ff6a00;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow:
    0 14px 40px rgba(10, 37, 64, 0.20),
    0 0 0 8px rgba(255, 255, 255, 0.55);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
  animation: serviceIconFloat 7.5s ease-in-out infinite;
}

.services-showcase .service-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.32), rgba(255, 106, 0, 0.00) 62%);
  opacity: 0.75;
  animation: serviceIconPulse 2.6s ease-in-out infinite;
  pointer-events: none;
}

.services-showcase .service-card:hover .service-icon {
  transform: translateX(-50%) translateY(-6px) scale(1.06);
  box-shadow:
    0 20px 55px rgba(10, 37, 64, 0.26),
    0 0 0 10px rgba(255, 255, 255, 0.60);
}

/* Text */
.services-showcase .service-card h3 {
  margin-top: 62px;
  font-size: 18px;
  font-weight: 700;
  color: #0b2c3d;
  padding: 0 25px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.services-showcase .service-card a {
  display: inline-block;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff6a00 0%, #ff8a00 55%, #ffae00 120%);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform;
}

.services-showcase .service-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 106, 0, 0.26);
  filter: saturate(1.05);
}

.services-showcase .service-card a:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.35);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-showcase {
    padding: 90px 20px;
  }

  .services-title {
    font-size: 34px;
    margin-bottom: 48px;
  }

  .services-showcase .service-image img {
    height: 220px;
  }
}

/* Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Remove old keyframes if not used elsewhere, but keeping them safe is fine. 
   Overwriting the previous [data-reveal].is-visible rule. */

@keyframes servicesBlobA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, 28px, 0) scale(1.06); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes servicesBlobB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-46px, -30px, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes serviceIconFloat {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
  100% { transform: translateX(-50%) translateY(0); }
}

@keyframes serviceIconPulse {
  0% { transform: scale(0.92); opacity: 0.50; }
  55% { transform: scale(1.06); opacity: 0.90; }
  100% { transform: scale(0.92); opacity: 0.50; }
}

@media (prefers-reduced-motion: reduce) {
  .services-showcase::before,
  .services-showcase::after,
  .services-showcase .service-icon,
  .services-showcase .service-icon::before,
  [data-reveal].is-visible {
    animation: none !important;
  }

  .services-showcase .service-card,
  .services-showcase .service-image img,
  .services-showcase .service-icon,
  .services-showcase .service-card::after,
  .services-showcase .service-card a {
    transition: none !important;
  }
}

.team-hero {
  padding: clamp(70px, 8.5vw, 130px) 24px;
  background:
    radial-gradient(1200px 520px at 18% 18%, rgba(255, 106, 0, 0.16) 0%, rgba(255, 106, 0, 0.00) 62%),
    radial-gradient(900px 520px at 82% 35%, rgba(255, 174, 0, 0.12) 0%, rgba(255, 174, 0, 0.00) 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.team-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.team-hero__title {
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  color: #0b2c3d;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.team-hero__subtitle {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-section {
  padding: clamp(70px, 7.5vw, 120px) 24px;
}

.team-section__inner {
  max-width: 1520px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: clamp(20px, 2.6vw, 40px);
  align-items: stretch;
}

.team-card {
  background: #ffffff;
  border: 1px solid rgba(11, 44, 61, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(10, 37, 64, 0.10);
  padding: clamp(36px, 2.6vw, 46px) clamp(28px, 2.2vw, 40px);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(10, 37, 64, 0.14);
}

.team-avatar {
  width: clamp(175px, 13vw, 220px);
  height: clamp(175px, 13vw, 220px);
  margin: 0 auto 20px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 174, 0, 0.10);
  border: 1px solid rgba(255, 106, 0, 0.20);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.10);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-size: 26px;
  font-weight: 900;
  color: #0b2c3d;
  margin: 0;
}

.team-role {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ff6a00;
}

.team-social {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.team-social__link {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #0b2c3d;
  background: rgba(11, 44, 61, 0.06);
  border: 1px solid rgba(11, 44, 61, 0.10);
  box-shadow: 0 10px 26px rgba(10, 37, 64, 0.10);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-social__link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.team-social__link:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(255, 106, 0, 0.55);
  background: linear-gradient(135deg, #ff6a00 0%, #ffae00 120%);
  box-shadow: 0 16px 38px rgba(255, 106, 0, 0.22);
}

body.theme-dark .team-social__link {
  color: rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
}

body.theme-dark .team-hero {
  background:
    radial-gradient(1200px 520px at 18% 18%, rgba(255, 106, 0, 0.14) 0%, rgba(255, 106, 0, 0.00) 62%),
    radial-gradient(900px 520px at 82% 35%, rgba(255, 174, 0, 0.10) 0%, rgba(255, 174, 0, 0.00) 60%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.95) 0%, rgba(7, 11, 16, 1) 100%);
}

body.theme-dark .team-hero__title {
  color: #e5e7eb;
}

body.theme-dark .team-hero__subtitle {
  color: rgba(229, 231, 235, 0.78);
}

body.theme-dark .team-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

body.theme-dark .team-name {
  color: #e5e7eb;
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

body.theme-dark .feature-section {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.96) 0%, rgba(7, 11, 16, 1) 100%);
}

body.theme-dark .feature-content h2,
body.theme-dark .feature-content p,
body.theme-dark .feature-content li,
body.theme-dark .card h4 {
  color: #e5e7eb;
}

body.theme-dark .feature-content p,
body.theme-dark .feature-content li {
  color: rgba(229, 231, 235, 0.78);
}

body.theme-dark .feature-section .card {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

body.theme-dark .card ul li {
  color: rgba(229, 231, 235, 0.78);
}

body.theme-dark .card .icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(229, 231, 235, 0.92);
}

body.theme-dark .highlight-box {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 174, 0, 0.85);
  color: #e5e7eb;
}

body.theme-dark .about-section {
  background: #070b10;
}

body.theme-dark .about-content h2,
body.theme-dark .about-content p,
body.theme-dark .about-points li {
  color: rgba(229, 231, 235, 0.86);
}

body.theme-dark .about-content h2 {
  color: #e5e7eb;
}

body.theme-dark .about-image::after {
  background-image: radial-gradient(rgba(229, 231, 235, 0.18) 1.5px, transparent 1.5px);
}

body.theme-dark .features-cards {
  background: #070b10;
}

body.theme-dark .features-cards .card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.38);
}

body.theme-dark .features-cards .card h3,
body.theme-dark .features-cards .card a {
  color: #e5e7eb;
}

body.theme-dark .features-cards .card p {
  color: rgba(229, 231, 235, 0.78);
}

body.theme-dark .features-cards .card a {
  border-bottom-color: rgba(229, 231, 235, 0.28);
}

body.theme-dark .modal-content {
  background-color: #0b1220;
  border-color: rgba(255, 255, 255, 0.12);
}

body.theme-dark .close-btn {
  color: rgba(229, 231, 235, 0.70);
}

body.theme-dark .close-btn:hover,
body.theme-dark .close-btn:focus {
  color: #e5e7eb;
}

body.theme-dark #modal-title {
  color: #e5e7eb;
}

body.theme-dark #modal-text {
  color: rgba(229, 231, 235, 0.78);
}

body.theme-dark .stats-section {
  background-color: #070b10;
}

body.theme-dark .stat-item {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

body.theme-dark .stat-number {
  color: #e5e7eb;
}

body.theme-dark .stat-item p {
  color: rgba(229, 231, 235, 0.72);
}

body.theme-dark .testimonial-section {
  background: #070b10;
}

body.theme-dark .title,
body.theme-dark .testimonial p,
body.theme-dark .testimonial h4 {
  color: #e5e7eb;
}

body.theme-dark .testimonial small {
  color: rgba(255, 174, 0, 0.92);
}

body.theme-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

body.theme-dark .service-section {
  background: #070b10;
}

body.theme-dark .service-left h2,
body.theme-dark .service-form h3,
body.theme-dark .step p {
  color: #e5e7eb;
}

body.theme-dark .service-left p {
  color: rgba(229, 231, 235, 0.78);
}

body.theme-dark .step span {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 174, 0, 0.92);
}

body.theme-dark .service-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

body.theme-dark .service-form input {
  border-bottom-color: rgba(229, 231, 235, 0.28);
  color: #e5e7eb;
}

body.theme-dark .service-form input::placeholder {
  color: rgba(229, 231, 235, 0.58);
}

body.theme-dark .services-showcase {
  background:
    radial-gradient(1200px 520px at 18% 18%, rgba(255, 106, 0, 0.14) 0%, rgba(255, 106, 0, 0.00) 62%),
    radial-gradient(900px 520px at 82% 35%, rgba(255, 174, 0, 0.10) 0%, rgba(255, 174, 0, 0.00) 60%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.95) 0%, rgba(7, 11, 16, 1) 100%);
}



.contact-section {
  background: #ffffff;
  padding: 80px 10%;
  text-align: center;
}

.contact-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.location {
  font-size: 14px;
  color: #777;
  margin-bottom: 60px;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ---------------- ENVELOPE ---------------- */
.contact-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
}

.envelope-card {
  cursor: pointer;
  width: 100%;
  max-width: 520px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.envelope-card svg {
  display: block;
  width: min(460px, 100%);
  height: auto;
}

/* Letter hidden initially */
.letter {
  transform: translateY(90px);
  opacity: 0;
  transition:
    transform 0.6s ease 0.35s,
    opacity 0.3s ease 0.35s;
}

/* Top flap */
.top-flap {
  transform-origin: top center;
  transform: rotateX(0deg);
  transition: transform 0.5s ease;
}

/* Hover sequence */
.envelope-card:hover .top-flap {
  transform: rotateX(160deg);
}

.envelope-card:hover .letter {
  transform: translateY(0);
  opacity: 1;
}

/* ---------------- FORM ---------------- */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  height: 120px;
  border-radius: 20px;
  resize: none;
}

.contact-form button {
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg, #8f7cf4, #2bb7da);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .envelope-card {
    padding: 18px;
    max-width: 460px;
  }
}

.submit-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  display: none;
  padding: 0 18px 18px;
  justify-content: center;
}

.submit-overlay.is-open {
  display: flex;
  animation: submitOverlayIn 0.35s ease-out both;
}

.submit-overlay__card {
  width: min(520px, 100%);
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(18, 24, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.submit-overlay__confetti {
  position: absolute;
  inset: -18px -18px auto -18px;
  height: 190px;
  pointer-events: none;
}

.submit-overlay__confetti span {
  position: absolute;
  left: 50%;
  top: 110px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #ffae00;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.submit-overlay.is-open .submit-overlay__confetti span {
  animation: confettiBurst 900ms ease-out forwards;
}

.submit-overlay__confetti span:nth-child(1)  { background: #ffae00; animation-delay: 40ms;  }
.submit-overlay__confetti span:nth-child(2)  { background: #2bb7da; animation-delay: 90ms;  }
.submit-overlay__confetti span:nth-child(3)  { background: #8f7cf4; animation-delay: 120ms; }
.submit-overlay__confetti span:nth-child(4)  { background: #22c55e; animation-delay: 170ms; }
.submit-overlay__confetti span:nth-child(5)  { background: #ff6a00; animation-delay: 210ms; }
.submit-overlay__confetti span:nth-child(6)  { background: #f43f5e; animation-delay: 250ms; }
.submit-overlay__confetti span:nth-child(7)  { background: #ffffff; animation-delay: 290ms; }
.submit-overlay__confetti span:nth-child(8)  { background: #ffae00; animation-delay: 70ms;  }
.submit-overlay__confetti span:nth-child(9)  { background: #2bb7da; animation-delay: 140ms; }
.submit-overlay__confetti span:nth-child(10) { background: #8f7cf4; animation-delay: 190ms; }
.submit-overlay__confetti span:nth-child(11) { background: #22c55e; animation-delay: 230ms; }
.submit-overlay__confetti span:nth-child(12) { background: #ff6a00; animation-delay: 270ms; }
.submit-overlay__confetti span:nth-child(13) { background: #f43f5e; animation-delay: 310ms; }
.submit-overlay__confetti span:nth-child(14) { background: #ffffff; animation-delay: 350ms; }

.submit-overlay__confetti span:nth-child(1)  { --dx: -170px; --dy: -90px;  --rot: 18deg;  }
.submit-overlay__confetti span:nth-child(2)  { --dx: -120px; --dy: -130px; --rot: 92deg;  }
.submit-overlay__confetti span:nth-child(3)  { --dx: -70px;  --dy: -160px; --rot: 140deg; }
.submit-overlay__confetti span:nth-child(4)  { --dx: -15px;  --dy: -170px; --rot: 220deg; }
.submit-overlay__confetti span:nth-child(5)  { --dx: 40px;   --dy: -160px; --rot: 330deg; }
.submit-overlay__confetti span:nth-child(6)  { --dx: 95px;   --dy: -135px; --rot: 22deg;  }
.submit-overlay__confetti span:nth-child(7)  { --dx: 150px;  --dy: -95px;  --rot: 70deg;  }
.submit-overlay__confetti span:nth-child(8)  { --dx: -155px; --dy: -35px;  --rot: 44deg;  }
.submit-overlay__confetti span:nth-child(9)  { --dx: -105px; --dy: -55px;  --rot: 120deg; }
.submit-overlay__confetti span:nth-child(10) { --dx: -45px;  --dy: -75px;  --rot: 200deg; }
.submit-overlay__confetti span:nth-child(11) { --dx: 25px;   --dy: -75px;  --rot: 260deg; }
.submit-overlay__confetti span:nth-child(12) { --dx: 85px;   --dy: -55px;  --rot: 320deg; }
.submit-overlay__confetti span:nth-child(13) { --dx: 140px;  --dy: -35px;  --rot: 20deg;  }
.submit-overlay__confetti span:nth-child(14) { --dx: 0px;    --dy: -185px; --rot: 0deg;   }

.submit-overlay__tick svg {
  display: block;
  margin: 0 auto 14px;
}

.submit-overlay__circle {
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: submitStroke 0.6s ease forwards;
}

.submit-overlay__check {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: submitStroke 0.45s ease 0.2s forwards;
}

.submit-overlay__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

@keyframes submitStroke {
  to { stroke-dashoffset: 0; }
}

@keyframes submitOverlayIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes confettiBurst {
  0% { transform: translate(-50%, -50%) scale(0.2) rotate(0deg); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1) rotate(var(--rot)); opacity: 0; }
}

.site-footer {
  background: radial-gradient(1200px 420px at 15% -10%, rgba(255, 174, 0, 0.22), transparent 60%),
    radial-gradient(1000px 380px at 85% 0%, rgba(43, 183, 218, 0.20), transparent 55%),
    #0b2c3d;
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
}

.site-footer__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 88px clamp(22px, 5vw, 70px) 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 46px;
  align-items: start;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__brand-logo {
  width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.site-footer__brand-name {
  margin-top: 14px;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.site-footer__brand-tagline {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 16px;
}

.site-footer__title {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin: 8px 0;
  font-weight: 700;
  width: fit-content;
  font-size: 16px;
}

.site-footer__link:hover {
  color: #ffae00;
}

.site-footer__link--email {
  margin-top: 14px;
}

.site-footer__address {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  line-height: 1.7;
  margin-top: 2px;
  font-size: 16px;
}

.site-footer__link,
.site-footer__address {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer__link svg,
.site-footer__address svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
}

.site-footer__social {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer__social-link {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-footer__social-link svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.92);
}

.site-footer__social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 174, 0, 0.16);
  border-color: rgba(255, 174, 0, 0.35);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.12);
}

.site-footer__bottom-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px clamp(22px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__copy {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  font-size: 15px;
}

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

.about-hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  place-items: center;
  padding: 90px clamp(18px, 5vw, 80px);
  background:
    radial-gradient(900px 480px at 18% 24%, rgba(43, 183, 218, 0.18) 0%, rgba(43, 183, 218, 0) 62%),
    radial-gradient(900px 480px at 78% 18%, rgba(255, 174, 0, 0.14) 0%, rgba(255, 174, 0, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  overflow: hidden;
  isolation: isolate;
  perspective: 900px;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  text-align: center;
}

.about-hero__title {
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.05;
  font-weight: 950;
  color: #0b2c3d;
  letter-spacing: -0.6px;
}

.about-hero__subtitle {
  margin-top: 18px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.9;
  color: #4b5563;
  font-weight: 650;
}

.about-hero__title.is-visible {
  animation-delay: 0ms;
}

.about-hero__subtitle.is-visible {
  animation-delay: 160ms;
}

.about-hero__actions.is-visible {
  animation-delay: 320ms;
}

.about-hero__actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(11, 44, 61, 0.18);
  color: #0b2c3d;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(10, 37, 64, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.about-hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(10, 37, 64, 0.16);
}

.about-hero__btn--primary {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a00 0%, #ffae00 120%);
}

.about-hero__btn--ghost {
  background: transparent;
  border-color: rgba(11, 44, 61, 0.24);
}

.about-hero__globe {
  position: absolute;
  left: 50%;
  top: 56%;
  width: clamp(420px, 44vw, 720px);
  height: clamp(420px, 44vw, 720px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.about-hero__globe::before {
  content: none;
}

.about-hero__globe::after {
  content: none;
}

.about-hero__globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  filter: none;
}

.about-hero__floaters {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.about-hero__floater {
  position: absolute;
  width: 190px;
  transform: translateZ(0);
  perspective: 900px;
  animation: aboutFloater 8.8s ease-in-out infinite;
}

.about-hero__floater-card {
  width: 100%;
  padding: 12px 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 44, 61, 0.14);
  box-shadow: 0 22px 60px rgba(10, 37, 64, 0.14);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 10px;
  justify-items: center;
  transform-style: preserve-3d;
}

.about-hero__floater.is-flipping .about-hero__floater-card {
  animation: aboutHeroFlip 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-hero__floater-card img {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 174, 0, 0.35);
  background: rgba(255, 174, 0, 0.10);
}

.about-hero__floater-name {
  font-weight: 850;
  color: #0b2c3d;
  font-size: 14px;
  text-align: center;
}

.about-hero__floater--1 {
  left: clamp(16px, 6vw, 90px);
  top: 18%;
  animation-duration: 9.4s;
}

.about-hero__floater--2 {
  left: clamp(16px, 10vw, 170px);
  bottom: 16%;
  animation-duration: 8.6s;
  animation-delay: 0.4s;
}

.about-hero__floater--3 {
  right: clamp(16px, 9vw, 170px);
  top: 20%;
  animation-duration: 9.1s;
  animation-delay: 0.2s;
}

.about-hero__floater--4 {
  right: clamp(16px, 5vw, 90px);
  bottom: 14%;
  animation-duration: 8.2s;
  animation-delay: 0.6s;
}

@keyframes aboutGlobeSpin {
  0% { transform: translate(-50%, -50%) rotateX(18deg) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(18deg) rotateY(360deg); }
}

@keyframes aboutGlobeDots {
  0% { background-position: 0 0; }
  100% { background-position: 140px 140px; }
}

@keyframes aboutFloater {
  0% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-14px) rotate(0.8deg); }
  100% { transform: translateY(0) rotate(-0.6deg); }
}

@keyframes aboutHeroFlip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(90deg); }
  100% { transform: rotateY(0deg); }
}

@media (max-width: 900px) {
  .about-hero {
    padding: 70px 18px;
  }

  .about-hero__globe {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: min(520px, 96vw);
    height: min(520px, 96vw);
  }

  .about-hero__floater {
    width: 168px;
  }
}

@media (max-width: 640px) {
  .about-hero__floater--1,
  .about-hero__floater--4 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__globe,
  .about-hero__floater,
  .about-hero__floater-card,
  .about-hero__title.is-visible,
  .about-hero__subtitle.is-visible {
    animation: none !important;
  }
}



.about-punch-section {
  position: relative;
  height: 100vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

/* Globe */
.globe {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #dff6ff, #0aa0c8);
  opacity: 0.18;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotateGlobe 30s linear infinite;
}

@keyframes rotateGlobe {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Content */
.about-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
}

.about-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.about-content h1 span {
  color: #0aa0c8;
}

.about-content p {
  margin-top: 20px;
  font-size: 16px;
  color: #555;
  max-width: 520px;
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.delay {
  transition-delay: 0.3s;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.floating-card img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.floating-card span {
  font-size: 14px;
  font-weight: 500;
}

.card-1 { top: 20%; left: 65%; animation-delay: 0s; }
.card-2 { top: 55%; left: 75%; animation-delay: 2s; }
.card-3 { top: 70%; left: 55%; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .about-content h1 {
    font-size: 38px;
  }
  .globe {
    width: 300px;
    height: 300px;
  }
}

.who-split {
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vh, 130px) clamp(18px, 5vw, 90px);
  min-height: calc(100vh - 112px);
  background:
    radial-gradient(1000px 520px at 16% 30%, rgba(43, 183, 218, 0.12) 0%, rgba(43, 183, 218, 0) 60%),
    radial-gradient(900px 520px at 86% 22%, rgba(255, 106, 0, 0.10) 0%, rgba(255, 106, 0, 0) 62%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.who-split__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: clamp(26px, 5vw, 86px);
  align-items: center;
}

.who-split__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(10, 37, 64, 0.16);
  border: 1px solid rgba(11, 44, 61, 0.10);
  background: rgba(255, 255, 255, 0.70);
}

.who-split__image {
  width: 100%;
  height: min(620px, 64vh);
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 300ms ease, filter 300ms ease;
}

.who-split__media::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -70%;
  width: 55%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

.who-split__media:hover .who-split__image {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.06);
}

.who-split__media:hover::after {
  opacity: 1;
  animation: whoSplitShine 900ms ease-in-out both;
}

.who-split__content {
  padding: 10px 0 10px clamp(12px, 2.4vw, 44px);
}

.who-split__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 44, 61, 0.12);
  box-shadow: 0 18px 52px rgba(10, 37, 64, 0.10);
  font-weight: 900;
  letter-spacing: 2.8px;
  font-size: 12px;
  color: #0b2c3d;
  text-transform: uppercase;
}

.who-split__title {
  margin-top: 16px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
  font-weight: 950;
  color: #0b2c3d;
  letter-spacing: -0.5px;
}

.who-split__text {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.95;
  color: #4b5563;
  font-weight: 650;
  max-width: 62ch;
}

.who-split__points {
  margin-top: 18px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 62ch;
}

.who-split__points li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 750;
  color: rgba(11, 44, 61, 0.92);
}

.who-split__points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6a00;
  font-size: 18px;
}

.who-split__reveal-left,
.who-split__reveal-right {
  opacity: 0;
}

.who-split__reveal-left {
  transform: translateX(-44px);
}

.who-split__reveal-right {
  transform: translateX(44px);
}

.who-split__reveal-left.is-visible {
  animation: whoSplitInLeft 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.who-split__reveal-right.is-visible {
  animation: whoSplitInRight 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes whoSplitInLeft {
  from { opacity: 0; transform: translateX(-44px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes whoSplitInRight {
  from { opacity: 0; transform: translateX(44px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes whoSplitShine {
  from { transform: translateX(0) rotate(18deg); }
  to { transform: translateX(280%) rotate(18deg); }
}

@media (max-width: 980px) {
  .who-split__inner {
    grid-template-columns: 1fr;
  }

  .who-split__content {
    padding-left: 0;
  }

  .who-split__image {
    height: min(420px, 56vh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .who-split__reveal-left,
  .who-split__reveal-right,
  .who-split__reveal-left.is-visible,
  .who-split__reveal-right.is-visible {
    animation: none !important;
    transition: none !important;
  }

  .who-split__reveal-left,
  .who-split__reveal-right {
    opacity: 1;
    transform: none;
  }
}

body.theme-dark .who-split {
  background:
    radial-gradient(1000px 520px at 16% 30%, rgba(43, 183, 218, 0.12) 0%, rgba(43, 183, 218, 0) 60%),
    radial-gradient(900px 520px at 86% 22%, rgba(255, 106, 0, 0.10) 0%, rgba(255, 106, 0, 0) 62%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.95) 0%, rgba(7, 11, 16, 1) 100%);
}

body.theme-dark .who-split__kicker {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(229, 231, 235, 0.90);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

body.theme-dark .who-split__title {
  color: #e5e7eb;
}

body.theme-dark .who-split__text {
  color: rgba(229, 231, 235, 0.78);
}

body.theme-dark .who-split__media {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.what-we-do {
  padding: clamp(84px, 9vw, 140px) clamp(18px, 5vw, 90px);
  background:
    radial-gradient(900px 520px at 14% 18%, rgba(255, 106, 0, 0.12) 0%, rgba(255, 106, 0, 0) 62%),
    radial-gradient(900px 520px at 86% 70%, rgba(43, 183, 218, 0.14) 0%, rgba(43, 183, 218, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.what-we-do__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.what-we-do__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 44, 61, 0.12);
  box-shadow: 0 18px 52px rgba(10, 37, 64, 0.10);
  font-weight: 900;
  letter-spacing: 2.8px;
  font-size: 12px;
  color: #0b2c3d;
  text-transform: uppercase;
}

.what-we-do__title {
  margin-top: 16px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.06;
  font-weight: 950;
  color: #0b2c3d;
  letter-spacing: -0.5px;
}

.what-we-do__panels {
  margin-top: clamp(30px, 3.5vw, 56px);
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1.4vw, 18px);
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.what-we-do__panel {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 190px;
  height: clamp(300px, 44vh, 520px);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(11, 44, 61, 0.08);
  box-shadow: 0 22px 60px rgba(10, 37, 64, 0.12);
  scroll-snap-align: start;
  transform: translateZ(0);
  transition: flex-grow 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.what-we-do__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(11, 44, 61, 0.14) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(43, 183, 218, 0.18) 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 106, 0, 0.18) 1px, transparent 1.8px),
    radial-gradient(900px 520px at 20% 22%, rgba(255, 106, 0, 0.14) 0%, rgba(255, 106, 0, 0) 60%),
    radial-gradient(900px 520px at 80% 78%, rgba(43, 183, 218, 0.14) 0%, rgba(43, 183, 218, 0) 60%);
  background-size: 22px 22px, 28px 28px, 36px 36px, 100% 100%, 100% 100%;
  background-position: 0 0, 12px 8px, -10px 18px, 0 0, 0 0;
  animation: whatWeDoParticles 18s linear infinite;
  z-index: 0;
}

.what-we-do__panel:hover {
  flex-grow: 2.6;
  transform: translateY(-6px);
  box-shadow: 0 30px 78px rgba(10, 37, 64, 0.18);
  border-color: rgba(255, 106, 0, 0.28);
}

.what-we-do__panel-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 420ms ease;
}

.what-we-do__panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.02);
  transition: transform 650ms ease, filter 650ms ease;
}

.what-we-do__panel:hover .what-we-do__panel-media {
  opacity: 1;
}

.what-we-do__panel:hover .what-we-do__panel-media img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.06);
}

.what-we-do__panel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.80) 100%);
  z-index: 1;
}

.what-we-do__panel-title {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-transform: uppercase;
}

.what-we-do__panel-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  line-height: 1.55;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.what-we-do__panel:hover .what-we-do__panel-desc {
  opacity: 1;
  transform: translateY(0);
}

.what-we-do__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  transition: transform 320ms ease, background 320ms ease;
  z-index: 2;
}

.what-we-do__arrow svg {
  width: 22px;
  height: 22px;
}

.what-we-do__panel:hover .what-we-do__arrow {
  transform: translateY(-3px) scale(1.04);
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 760px) {
  .what-we-do__panel {
    min-width: 220px;
    height: clamp(260px, 42vh, 420px);
  }
}

@keyframes whatWeDoParticles {
  0% { background-position: 0 0, 12px 8px, -10px 18px, 0 0, 0 0; }
  100% { background-position: 220px 260px, -240px -220px, 160px -180px, 0 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .what-we-do__panel::before {
    animation: none;
  }
}

body.theme-dark .what-we-do {
  background:
    radial-gradient(900px 520px at 14% 18%, rgba(255, 106, 0, 0.12) 0%, rgba(255, 106, 0, 0) 62%),
    radial-gradient(900px 520px at 86% 70%, rgba(43, 183, 218, 0.14) 0%, rgba(43, 183, 218, 0) 60%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.95) 0%, rgba(7, 11, 16, 1) 100%);
}

body.theme-dark .what-we-do__panel::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(43, 183, 218, 0.16) 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 106, 0, 0.16) 1px, transparent 1.8px),
    radial-gradient(900px 520px at 20% 22%, rgba(255, 106, 0, 0.16) 0%, rgba(255, 106, 0, 0) 60%),
    radial-gradient(900px 520px at 80% 78%, rgba(43, 183, 218, 0.16) 0%, rgba(43, 183, 218, 0) 60%);
  opacity: 0.82;
}

body.theme-dark .what-we-do__kicker {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(229, 231, 235, 0.90);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

body.theme-dark .what-we-do__title {
  color: #e5e7eb;
}

.our-team {
  padding: clamp(84px, 9vw, 140px) clamp(18px, 5vw, 90px);
  background: #ffffff;
}

.our-team__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.our-team__brand {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.06;
  font-weight: 950;
  color: #0b2c3d;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.our-team__brand-accent {
  color: #ff6a00;
}

.our-team__subtitle {
  margin: 12px auto 0;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(11, 44, 61, 0.70);
}

.our-team__grid {
  margin-top: clamp(32px, 3.8vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(18px, 2.6vw, 40px);
  align-items: start;
}

.our-team__card {
  text-align: left;
}

.our-team__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 44, 61, 0.10);
  box-shadow: 0 22px 60px rgba(10, 37, 64, 0.10);
  background: rgba(255, 174, 0, 0.10);
  height: clamp(320px, 32vw, 420px);
}

.our-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.our-team__card:hover .our-team__photo img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.04);
}

.our-team__actions {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.our-team__burger {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 44, 61, 0.14);
  box-shadow: 0 16px 44px rgba(10, 37, 64, 0.16);
  color: #0b2c3d;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
  backdrop-filter: blur(10px);
}

.our-team__burger-line {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 240ms ease, opacity 240ms ease;
}

.our-team__burger-line:nth-child(1) {
  transform: translateX(-50%) translateY(-7px);
}

.our-team__burger-line:nth-child(2) {
  transform: translateX(-50%) translateY(0);
}

.our-team__burger-line:nth-child(3) {
  transform: translateX(-50%) translateY(7px);
}

.our-team__actions.is-open .our-team__burger {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 106, 0, 0.35);
}

.our-team__actions.is-open .our-team__burger-line:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
}

.our-team__actions.is-open .our-team__burger-line:nth-child(2) {
  opacity: 0;
}

.our-team__actions.is-open .our-team__burger-line:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
}

.our-team__social {
  position: absolute;
  top: 42px;
  right: 0;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 44, 61, 0.12);
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.18);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(10px);
}

.our-team__actions.is-open .our-team__social {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.our-team__social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #0b2c3d;
  background: rgba(11, 44, 61, 0.06);
  border: 1px solid rgba(11, 44, 61, 0.10);
  box-shadow: 0 10px 26px rgba(10, 37, 64, 0.10);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.our-team__social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.our-team__social-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(255, 106, 0, 0.55);
  background: linear-gradient(135deg, #ff6a00 0%, #ffae00 120%);
  box-shadow: 0 16px 38px rgba(255, 106, 0, 0.22);
}

.our-team__actions.is-force-closed .our-team__social {
  opacity: 0 !important;
  transform: translateY(-6px) scale(0.98) !important;
  pointer-events: none !important;
}

.our-team__actions.is-force-closed .our-team__burger {
  transform: none !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(11, 44, 61, 0.14) !important;
}

.our-team__actions.is-force-closed .our-team__burger-line:nth-child(1) {
  transform: translateX(-50%) translateY(0) !important;
}

.our-team__actions.is-force-closed .our-team__burger-line:nth-child(2) {
  opacity: 1 !important;
}

.our-team__actions.is-force-closed .our-team__burger-line:nth-child(3) {
  transform: translateX(-50%) translateY(7px) !important;
}

.our-team--board .our-team__inner {
  text-align: center;
}
.our-team--board .our-team__grid {
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

/* Board Members: unify photo box size with other cards */
.our-team--board .our-team__photo {
  height: clamp(360px, 30vw, 420px);
}

/* Board Members: stack vertically earlier on responsive */
@media (max-width: 900px) {
  .our-team--board .our-team__grid {
    grid-template-columns: 1fr;
  }
  .our-team--board .our-team__photo {
    height: clamp(300px, 60vw, 420px);
  }
}


.our-team__name {
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.2px;
  color: #0b2c3d;
}

@media (max-width: 1200px) {
  .our-team__grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  .our-team__grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 680px) {
  .our-team__grid {
    grid-template-columns: 1fr;
  }

  .our-team__photo {
    height: clamp(320px, 72vw, 460px);
  }
}

body.theme-dark .our-team {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.95) 0%, rgba(7, 11, 16, 1) 100%);
}

body.theme-dark .our-team__brand {
  color: #e5e7eb;
}

body.theme-dark .our-team__subtitle {
  color: rgba(229, 231, 235, 0.70);
}

body.theme-dark .our-team__photo {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

body.theme-dark .our-team__burger {
  background: rgba(11, 18, 32, 0.62);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(229, 231, 235, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

body.theme-dark .our-team__social {
  background: rgba(11, 18, 32, 0.75);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

body.theme-dark .our-team__social-link {
  color: rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
}

body.theme-dark .our-team__name {
  color: #e5e7eb;
}



/* SECTION */
.how-think-section {
  width: 100%;
  padding: 120px 8%;
  background: #ffffff;
}

/* HEADING */
.section-title {
  font-size: 68px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 100px;
  text-align: center;
}

.section-title span {
  color: #f97316; /* ORANGE */
}

/* CARD WRAPPER */
.think-cards {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity .45s ease, visibility .45s ease;
}
body.theme-dark #preloader { background: #070b10; }
.preload-active { overflow: hidden; }
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .plogo-wrap {
  position: relative;
  display: grid;
  place-items: center;
}
#preloader .plogo {
  width: 90px;
  max-width: 32vw;
  height: auto;
  animation: heartbeat 1.2s ease-in-out infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.08));
}
@keyframes heartbeat {
  0% { transform: scale(1); }
  20% { transform: scale(1.08); }
  35% { transform: scale(1); }
  55% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
#preloader .waves {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}
#preloader .waves span {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255,106,0,0.22);
  border-radius: 999px;
  transform: scale(0.6);
  opacity: 1;
  animation: ripple 1.8s ease-out infinite;
  animation-delay: var(--d);
}
body.theme-dark #preloader .waves span { background: rgba(255,174,0,0.26); }
@keyframes ripple {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  #preloader .plogo,
  #preloader .waves span {
    animation: none !important;
  }
}

/* CARD */
.think-card {
  width: 46%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 42px;
  border-radius: 32px;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 18px 36px rgba(0,0,0,0.06);
}

/* ZIG ZAG ALIGNMENT */
.think-card.left {
  align-self: flex-start;
}

.think-card.right {
  align-self: flex-end;
}

/* CARD NUMBER */
.card-number {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 54px;
  height: 54px;
  background: #f97316;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(249,115,22,0.35);
}

/* CONNECTING LINE */
.think-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, #f97316, transparent);
}

.think-card.left::after {
  right: -120px;
}

.think-card.right::after {
  left: -120px;
  transform: scaleX(-1);
}

.think-card:last-child::after {
  display: none;
}

/* ICON */
.icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.icon {
  width: 36px;
  height: 36px;
  fill: #2563eb;
  transition: all 0.35s ease;
}

/* TEXT */
.think-card h3 {
  font-size: 28px;
  color: #111827;
  margin-bottom: 14px;
}

.think-card p {
  font-size: 17px;
  line-height: 1.65;
  color: #374151;
  max-width: 460px;
}

/* HOVER EFFECT */
.think-card:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
  box-shadow: 0 32px 60px rgba(0,0,0,0.1);
}

.think-card:hover .icon {
  filter: drop-shadow(0 0 8px rgba(37,99,235,0.45));
  transform: scale(1.1);
}

.think-card:hover .icon-wrap {
  box-shadow: 0 0 0 5px rgba(37,99,235,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .section-title {
    font-size: 44px;
  }

  .think-card {
    width: 100%;
    padding: 36px;
  }

  .think-cards {
    gap: 60px;
  }

  .think-card::after {
    display: none;
  }
}




.service-slider {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.service-slider {
  height: 85vh;
}
@media (max-width: 1200px) {
  .service-slider { height: 75vh; }
}
@media (max-width: 992px) {
  .service-slider { height: 65vh; }
}
@media (max-width: 768px) {
  .service-slider { height: 55vh; }
}
@media (max-width: 560px) {
  .service-slider { height: 50vh; }
}
@media (max-width: 420px) {
  .service-slider { height: 45vh; }
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}





.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 100px 8%;
  background-color: #f8fafc;
  align-items: stretch;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
    grid-template-columns: 1fr;
  }
}

.service-card1 {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-card1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #21C0D6, #358DCC);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card1:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-card1:hover::before {
  opacity: 1;
}

.service-card1 .service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #f0f9ff;
  color: #0ea5e9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  box-shadow: inset 0 0 20px rgba(14, 165, 233, 0.1);
  transition: all 0.4s ease;
}

.service-card1:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #21C0D6, #358DCC);
  color: #fff;
  box-shadow: 0 15px 30px rgba(33, 192, 214, 0.3);
}

.service-card1 h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1e293b;
  transition: color 0.3s ease;
}

.service-card1:hover h3 {
  color: #0284c7;
}

.service-card1 p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}
/* mian */
.engineering-section {
  --engineering-sticky-top: 112px;
  font-family: Arial, sans-serif;
  position: relative;
}

.engineering-section .hero-wrapper {
  position: relative;
  height: 100vh;
}

.engineering-section .hero-image-container {
  position: sticky;
  top: var(--engineering-sticky-top);
  width: min(1800px, 96vw);
  height: calc(100vh - var(--engineering-sticky-top));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 26px;
  border-bottom-left-radius: 26px;
  z-index: 0;
}

.engineering-section .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(35%);
  transition: transform 0.5s ease, filter 0.5s ease;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
}

.engineering-section .hero-heading-stage {
  position: sticky;
  top: var(--engineering-sticky-top);
  height: calc(100vh - var(--engineering-sticky-top));
  margin-top: calc(-1 * (100vh - var(--engineering-sticky-top)));
  width: min(1480px, 96vw);
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  pointer-events: none;
}

.engineering-section .hero-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0 20px;
  color: #fff;
  font-size: 5rem;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.engineering-section .content-section {
  display: flex;
  max-width: 1200px;
  margin: 8px auto 44px;
  padding: 0 20px;
  gap: 40px;
}

.engineering-section .content-left,
.engineering-section .content-right {
  flex: 1;
}

.engineering-section .content-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.engineering-section .content-right p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.engineering-section + .engineering-section {
  margin-top: 60px;
}

.engineering-section--alt .content-section {
  flex-direction: row-reverse;
}

.engineering-section .engineering-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.engineering-section .engineering-points li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 44, 61, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  color: #0b2c3d;
  font-weight: 650;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.engineering-section .engineering-points li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 14px 36px rgba(10, 37, 64, 0.14);
}

@media (min-width: 769px) {
  .remote-support-gap-fix .content-left {
    text-align: right;
    padding-right: 60px;
  }
}

@media screen and (max-width: 768px) {
  .engineering-section .hero-wrapper {
    height: 64vh;
  }

  .engineering-section .hero-image-container,
  .engineering-section .hero-heading-stage {
    top: var(--engineering-sticky-top);
    height: calc(64vh - var(--engineering-sticky-top));
  }
  .engineering-section .hero-heading-stage {
    margin-top: calc(-1 * (64vh - var(--engineering-sticky-top)));
  }

  .engineering-section .hero-heading {
    font-size: 2rem;
  }

  .engineering-section .content-section {
    flex-direction: column;
    margin: 8px auto 36px;
  }

  .engineering-section .content-left,
  .engineering-section .content-right {
    flex: unset;
  }
}

@media screen and (max-width: 480px) {
  .engineering-section .hero-wrapper {
    height: 56vh;
  }

  .engineering-section .hero-image-container,
  .engineering-section .hero-heading-stage {
    height: calc(56vh - var(--engineering-sticky-top));
  }
  .engineering-section .hero-heading-stage {
    margin-top: calc(-1 * (56vh - var(--engineering-sticky-top)));
  }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.hero-banner {
  height: 65vh;
  background: linear-gradient(135deg, #4f6bff, #7bd5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner h1 {
  font-size: 56px;
  color: #fff;
}

.hero-inner p {
  color: #eaf3ff;
  margin-top: 10px;
}

/* FAQ */
.faq-area {
  padding: 100px 10%;
  background: #f2f4f8;
}

.faq-wrap {
  background: #fff;
  padding: 70px;
  border-radius: 24px;
  display: flex;
  gap: 80px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.faq-intro {
  width: 45%;
}

.faq-intro span {
  color: #5a67ff;
  font-weight: 600;
}

.faq-intro h2 {
  font-size: 42px;
  margin: 15px 0;
}

.faq-intro p {
  color: #666;
  line-height: 1.7;
}

.faq-list {
  width: 55%;
}

.faq-card {
  background: #f9fafc;
  border-radius: 16px;
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-head {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 34px;
  height: 34px;
  background: #5a67ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  transition: 0.3s;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.5s ease;
}

.faq-body p {
  padding-bottom: 22px;
  color: #555;
}

.faq-card.active .faq-body {
  max-height: 240px;
  animation: faqBounce 0.6s ease;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

@keyframes faqBounce {
  0% { transform: translateY(-8px); }
  50% { transform: translateY(4px); }
  100% { transform: translateY(0); }
}

/* CONTACT */
.contact-area {
  padding: 100px 10%;
  background: #e9f4fb;
}

.contact-wrap {
  background: #fff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.contact-form-box {
  width: 50%;
  padding: 50px;
}

.contact-form-box h2 {
  margin-bottom: 25px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: none;
  border-radius: 30px;
  background: #f2f8fc;
}

.contact-form-box textarea {
  height: 120px;
  border-radius: 16px;
}

.contact-form-box button {
  padding: 14px 36px;
  background: #00bcd4;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.map-frame {
  margin-top: 25px;
  border-radius: 14px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 220px;
  border: none;
}

.contact-visual {
  width: 50%;
  background: #f4fbff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-visual img {
  width: 85%;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .faq-wrap,
  .contact-wrap {
    flex-direction: column;
  }
  .faq-intro,
  .faq-list,
  .contact-form-box,
  .contact-visual {
    width: 100%;
  }
}


.info-cards-section {
  padding: 100px 8%;
  background:
    radial-gradient(900px 480px at 10% 20%, rgba(255, 174, 0, 0.05), transparent 60%),
    radial-gradient(900px 480px at 90% 20%, rgba(43, 183, 218, 0.05), transparent 55%),
    #f8fafc;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* CARD */
.wave-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* WAVE BACKGROUND */
.wave-bg {
  position: absolute;
  bottom: -100%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(135deg, #ff6a00 0%, #ffae00 100%);
  border-radius: 45%;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.1;
  z-index: 0;
}

/* CONTENT */
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease;
}

.card-icon {
  font-size: 32px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ff6a00;
  background: #fff7ed;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: inset 0 0 20px rgba(255, 106, 0, 0.05);
}

.wave-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
  transition: color 0.3s ease;
}

.wave-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.wave-card a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

/* HOVER EFFECT */
.wave-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.wave-card:hover .wave-bg {
  bottom: -20%;
  opacity: 1;
  transform: rotate(10deg);
}

.wave-card:hover .card-icon {
  background: #ffffff;
  color: #ff6a00;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wave-card:hover h4,
.wave-card:hover p,
.wave-card:hover a {
  color: #ffffff;
}

/* Specific Gradients for each card */
.wave-card:nth-child(1) .wave-bg {
  background: linear-gradient(135deg, #ff6a00 0%, #ffae00 100%);
}
.wave-card:nth-child(2) .wave-bg {
  background: linear-gradient(135deg, #2bb7da 0%, #7dd3fc 100%);
}
.wave-card:nth-child(3) .wave-bg {
  background: linear-gradient(135deg, #0a66c2 0%, #5fa8e3 100%);
}
.wave-card:nth-child(4) .wave-bg {
  background: linear-gradient(135deg, #1877f2 0%, #66a6ff 100%);
}

.wave-card:nth-child(2) .card-icon { color: #2bb7da; background: #e0f2fe; }
.wave-card:nth-child(3) .card-icon { color: #0a66c2; background: #e0e7ff; }
.wave-card:nth-child(4) .card-icon { color: #1877f2; background: #eff6ff; }

.wave-card:nth-child(2):hover .card-icon { color: #2bb7da; }
.wave-card:nth-child(3):hover .card-icon { color: #0a66c2; }
.wave-card:nth-child(4):hover .card-icon { color: #1877f2; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
  .info-cards-section {
    padding: 60px 20px;
  }
}



* {
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

/* HERO */
.shyci-contact-hero {
  background: #062a5e;
  padding: 100px 6%;
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
}

.hero-image .dot {
  position: absolute;
  bottom: -22px;
  right: 70px;
  width: 56px;
  height: 56px;
  background: #ff3b4d;
  border-radius: 50%;
}

.shyci-contact-hero--overlay {
  padding: 0;
  background: #0b2c3d;
}
.shyci-contact-hero--overlay .hero-image {
  position: relative;
  height: clamp(340px, 52vw, 560px);
}
.shyci-contact-hero--overlay .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shyci-contact-hero--overlay .hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.45), rgba(0,0,0,0.30));
}
.shyci-contact-hero--overlay .hero-overlay h1 {
  color: #ffffff;
  font-size: clamp(36px, 6.5vw, 68px);
  font-weight: 950;
  letter-spacing: 0.6px;
}

/* CARDS SECTION */
.shyci-contact-cards {
  background: #f8fafc;
  padding: 120px 6% 100px;
  position: relative;
  overflow: hidden;
}

.orange-shape {
  position: absolute;
  top: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,106,0,0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* INFO CARD */
.info-card {
  position: relative;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(255, 106, 0, 0.15);
  border-color: transparent;
}

/* ICON BOX */
.card-icon-box {
  width: 64px;
  height: 64px;
  background: #fff7ed;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #ff6a00;
  transition: all 0.4s ease;
}

.info-card:hover .card-icon-box {
  background: #ffffff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.info-card p {
  font-size: 15px;
  color: black;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

/* WAVY HOVER FILL */
.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(135deg, #ff6a00 0%, #ff8a00 100%);
  clip-path: polygon(
    0% 20%,
    10% 18%,
    25% 22%,
    40% 18%,
    55% 22%,
    70% 18%,
    85% 22%,
    100% 20%,
    100% 100%,
    0% 100%
  );
  transition: all 0.6s ease-in-out;
  z-index: 0;
}

.info-card:hover::before {
  bottom: -20%;
}

.info-card:hover h3,
.info-card:hover p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .cards-wrapper {
    grid-template-columns: 1fr;
  }
}



* {
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  margin: 0;
  background: #f9fafb;
}

/* LAYOUT */
.shyci-contact-area {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 90px;
  padding: 110px 6%;
}

/* FORM */
.shyci-form-panel {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.shyci-form-panel h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
}

.shyci-form-panel p {
  color: #666;
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.shyci-form input,
.shyci-form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 15px;
  transition: all 0.2s ease;
  color: #1f2937;
}

.shyci-form input:focus,
.shyci-form textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #ff6a00;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.shyci-form textarea {
  min-height: 140px;
  margin-top: 0;
  resize: vertical;
}

/* CHECKBOX 2x2 FIX */
.service-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
  background: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
}

.service-checks span {
  grid-column: span 2;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  display: block;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
  color: #4b5563;
  transition: color 0.2s;
}

.check-item:hover {
  color: #111;
}

.check-item input {
  width: 18px;
  height: 18px;
  accent-color: #ff6a00;
  cursor: pointer;
}

/* BUTTON */
.shyci-form button {
  width: 100%;
  margin-top: 10px;
  padding: 18px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #ff6a00 0%, #ff8a00 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

.shyci-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 106, 0, 0.3);
}

.shyci-form button:active {
  transform: translateY(1px);
}

/* ART */
.shyci-art-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shyci-art-3d {
  width: 100%;
  max-width: 600px;
}

/* CHARACTER ENHANCEMENTS */
.face {
  transform-box: fill-box;
  transform-origin: 250px 175px;
  animation: breathe 6s ease-in-out infinite;
}

.brow {
  transform-box: fill-box;
  transform-origin: center;
  animation: browLift 5s ease-in-out infinite;
}

.mouth {
  transform-box: fill-box;
  transform-origin: center;
  animation: mouthSmile 4.5s ease-in-out infinite;
}

.pupil {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.1s ease-out;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

@keyframes browLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.2px); }
}

@keyframes mouthSmile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(1px); }
}

/* HEAD FOLLOW */
.head-follow {
  transition: transform 0.25s ease-out;
  transform-origin: center;
}

/* BLINK */
.lid {
  height: 0;
  animation: blink 5.5s infinite;
}

@keyframes blink {
  0%, 94%, 100% { height: 0; }
  95%, 97% { height: 12px; }
}

/* 3D HEADPHONE */
.headphone-3d {
  transform-origin: center;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25));
}

/* HOVER LIFT */
.head-follow:hover + .headphone-3d {
  transform: translateY(-14px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .shyci-contact-area {
    grid-template-columns: 1fr;
  }
}

/* OUR JOURNEY SECTION */
.our-journey {
  padding: clamp(80px, 6vw, 120px) 30px;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  overflow: hidden;
}

.our-journey__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.our-journey__header {
  text-align: center;
  margin-bottom: 72px;
}

.our-journey__kicker {
  font-size: 14px;
  font-weight: 700;
  color: #ff6a00;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 20px;
}

.our-journey__title {
  font-size: 48px;
  font-weight: 800;
  color: #0b2c3d;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.our-journey__timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 5vw, 120px);
  position: relative;
}

@media (min-width: 768px) {
  .our-journey__timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .our-journey__timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

.our-journey__item {
  background: #ffffff;
  padding: clamp(48px, 5vw, 80px);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  min-height: clamp(420px, 42vh, 620px);
}

.our-journey__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff6a00, #ff8c00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.our-journey__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 44, 61, 0.08);
}

.our-journey__item:hover::before {
  opacity: 1;
}

.our-journey__year {
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(11, 44, 61, 0.15);
  position: absolute;
  top: -20px;
  right: -10px;
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 0;
}

.our-journey__item:hover .our-journey__year {
  transform: scale(1.05) translate(-5px, 5px);
  -webkit-text-stroke: 2px rgba(255, 106, 0, 0.3);
  color: rgba(255, 106, 0, 0.05);
}

.our-journey__icon {
  width: 64px;
  height: 64px;
  background: rgba(11, 44, 61, 0.04);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #0b2c3d;
  transition: all 0.3s ease;
}

.our-journey__item:hover .our-journey__icon {
  background: #0b2c3d;
  color: #ffffff;
  transform: rotate(-5deg);
}

.our-journey__icon svg {
  width: 32px;
  height: 32px;
}

.our-journey__content {
  position: relative;
  z-index: 1;
}

.our-journey__content h3 {
  font-size: 26px;
  font-weight: 800;
  color: #0b2c3d;
  margin-bottom: 16px;
}

.our-journey__content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* JOURNEY CTA */
.our-journey__cta-wrapper {
  margin-top: 64px;
  text-align: center;
}

.our-journey__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #0b2c3d 0%, #062a5e 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(11, 44, 61, 0.15);
  position: relative;
  overflow: hidden;
}

.our-journey__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c00 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.our-journey__btn span,
.our-journey__btn svg {
  position: relative;
  z-index: 1;
}

.our-journey__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 44, 61, 0.25);
}

.our-journey__btn:hover::before {
  opacity: 1;
}

.our-journey__btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.our-journey__btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .our-journey {
    padding: 60px 20px;
  }
  
  .our-journey__title {
    font-size: 36px;
  }
  
  .our-journey__timeline {
    grid-template-columns: 1fr;
  }
}

/* OUR PROJECTS SECTION */
.our-projects {
  padding: 100px 6%;
  background: #f8fafd;
}

.our-projects__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.our-projects__header {
  text-align: center;
  margin-bottom: 60px;
}

.our-projects__kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff6a00;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.our-projects__title {
  font-size: 42px;
  font-weight: 800;
  color: #0b2c3d;
}

.our-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 4vw, 60px);
}

@media (min-width: 768px) {
  .our-projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .our-projects__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.our-projects__card {
  background: #ffffff;
  padding: clamp(44px, 4.8vw, 64px);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border: 1px solid rgba(11, 44, 61, 0.10);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: clamp(420px, 42vh, 580px);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.our-projects__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 44, 61, 0.08);
}

.our-projects__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ff8c00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.our-projects__card:hover::before {
  opacity: 1;
}

.our-projects__card-icon {
  width: 56px;
  height: 56px;
  background: rgba(11, 44, 61, 0.04);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #0b2c3d;
  transition: all 0.3s ease;
}

.our-projects__card:hover .our-projects__card-icon {
  background: #0b2c3d;
  color: #ffffff;
}

.our-projects__card-icon svg {
  width: 28px;
  height: 28px;
}

.our-projects__card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0b2c3d;
  margin-bottom: 8px;
}

.our-projects__card-location {
  font-size: 13px;
  font-weight: 700;
  color: #ff6a00;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our-projects__card p:last-child {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .our-projects {
    padding: 60px 20px;
  }
  
  .our-projects__title {
    font-size: 32px;
  }
}
