

body {
    margin: 0;
    padding: 0;
    background-color: #070707;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(0deg, #070707 0%, #000 100%);
    padding: 10px 40px;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 500px;
    gap: 20px;
}

ul li a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

ul li a:hover {
    opacity: 0.8;
}

ul li a.active {
    color: #07be97;
}

.contact {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 12px;
}

.contact.active {
    background-color: #07be97;
    color: #fff;
}

/* Hide all main sections by default */
main {
    display: none;
    min-height: 70vh;
}

/* Show only the active main section */
main.active {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    align-items: end;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
}

.hamburger span:nth-child(2) {
    width: 10px;
}

.hamburger span:nth-child(3) {
    width: 15px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        padding: 20px;
    }

    nav ul {
        display: none;
    }

    .logo img {
        height: 30px;
    }
}




.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px 40px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    border-top: 1px solid #1a1a1a;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1a1a1a;
}

.mobile-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.mobile-nav-close {
    width: 32px;
    height: 32px;
    border: none;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #888;
    font-size: 18px;
}

.mobile-nav-close:hover {
    background: #2a2a2a;
    color: #ffffff;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav ul li {
    width: 100%;
}

.mobile-nav ul li a {
    display: block;
    padding: 18px 4px;
    color: #888888;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 0;
    background: transparent;
}

.mobile-nav ul li a:hover {
    color: #ffffff;
    background: transparent;
}

.mobile-nav ul li a.active {
    color: #ffffff;
    background: transparent;
    font-weight: 500;
}

.mobile-nav ul li a.contact {
    background: #ffffff;
    color: #000000;
    margin-top: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
}

.mobile-nav ul li a.contact:hover {
    background: #f0f0f0;
    color: #000000;
}

.mobile-nav ul li a.contact.active {
    background: #0ABE97;
    color: #ffffff;
}

.mobile-nav ul li a.contact.active:hover {
    background: #089675;
    color: #ffffff;
}

/* Handle animation */
.mobile-nav-handle {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333333;
    border-radius: 2px;
}



.hero * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    display: flex;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    padding: 0 40px;
    padding-bottom: 80px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("images/hero.webp");
    background-size: cover;
    background-position: center;
}

.hero .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero .title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    display: inline-block;
}

.hero .subtitle {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.hero .underline {
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, #0ABE97, transparent);
    margin-top: 0.5rem;
}

.hero .description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    margin-bottom: 2rem;
}

.hero .cta-button {
    background-image: url("https://miro.medium.com/v2/resize:fit:1400/format:webp/1*HSfREwqAV5ihj2M1W2MgQg.gif");
    background-size: 360px;
    background-position: center;
    background-repeat: no-repeat;
    color: #373737;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 190, 151, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Add a gradient overlay to enhance text readability */
.hero .image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero .title {
        font-size: 2.5rem;
    }

    .hero .main-content {
        max-width: 100%;
    }

    .hero .container {
        padding: 0 20px;
        padding-bottom: 60px;
    }

    .hero h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding: 0 20px;
        padding-bottom: 40px;
    }

    .hero .title {
        font-size: 2rem;
    }

    .hero h3 {
        font-size: 0.9rem;
    }
}



.announcement {
    background: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.announcement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.announcement-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    min-height: 60vh;
}

.announcement-visual {
    position: relative;
    height: 500px;
}

.visual-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.visual-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.visual-element:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.visual-element:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

.partnership-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.partner-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.connection-line {
    width: 40px;
    height: 2px;
    background: #1a1a1a;
}

.announcement-content {
    color: #1a1a1a;
}

.announcement-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.announcement-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.announcement-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.4;
}

.announcement-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.detail-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: #1a1a1a;
    transform: translateY(-5px);
}

.detail-number {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.detail-text {
    color: #666;
    font-size: 0.9rem;
}

.read-more-container {
    padding: 0 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.read-more-toggle {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    margin: 30px 0;
    display: inline-block;
}

.read-more-toggle:hover {
    color: #1a1a1a;
}

.read-more-content {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.read-more-content.expanded {
    max-height: 1000px;
    opacity: 1;
}

.read-more-content p:last-child {
    margin-bottom: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1024px) {
    .announcement-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .announcement-visual {
        height: 300px;
        order: 2;
    }
}

@media (max-width: 768px) {
    .announcement {
        padding: 80px 0;
    }

    .announcement-container {
        padding: 0 20px;
    }

    .read-more-container {
        padding: 0 20px;
    }

    .announcement-title {
        font-size: 2.5rem;
    }

    .announcement-details {
        gap: 10px;
    }

    .partner-circle {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }

    .connection-line {
        width: 20px;
    }

    .read-more-content {
        font-size: 1rem;
    }
}



.whatMakesUsDifferent {
    background: #000;
    padding: 0;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.diff-left {
    background: #000;
    background-image: url('https://images.unsplash.com/photo-1695779539236-362815cf2df1?q=80&w=2533&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: 300%;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: background-size 0.3s ease-out;
}

.diff-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.diff-left>* {
    position: relative;
    z-index: 2;
}

.diff-right {
    background: #fff;
    color: #1a1a1a;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diff-header h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.diff-left .diff-header h2 {
    color: #fff;
}

.diff-right .diff-header h2 {
    color: #1a1a1a;
}

.diff-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 50px;
}

.diff-left .diff-subtitle {
    color: #ccc;
}

.diff-right .diff-subtitle {
    color: #666;
}

.value-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-right .value-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.value-item:nth-child(1) {
    animation-delay: 0.1s;
}

.value-item:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-number {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.diff-left .value-number {
    color: #07be97;
}

.diff-right .value-number {
    color: #07be97;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.diff-left .value-item h3 {
    color: #fff;
}

.diff-right .value-item h3 {
    color: #1a1a1a;
}

.value-item p {
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 300;
}

.diff-left .value-item p {
    color: #ccc;
}

.diff-right .value-item p {
    color: #666;
}

.floating-elements {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.floating-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #4CAF50;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-dot:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-dot:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: -2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) translateX(5px);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .whatMakesUsDifferent {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .diff-left,
    .diff-right {
        padding: 60px 30px;
    }

    .diff-header h2 {
        font-size: 1.8rem;
    }

    .floating-elements {
        width: 100%;
    }
}



.experience-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.experience-content {
    color: #fff;
}

.experience-header {
    margin-bottom: 40px;
}

.experience-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.experience-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #0ABE97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    border-left: 2px solid #0ABE97;
    padding-left: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0ABE97;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    height: 40px;
    margin-bottom: 8px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(88%) saturate(384%) hue-rotate(120deg) brightness(94%) contrast(94%);
}

.experience-image-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.experience-image-card:hover {
    transform: translateY(-8px);
}

.experience-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(10, 190, 151, 0.2) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(10, 190, 151, 0.1) 100%);
    z-index: 2;
    opacity: 0.4;
    transition: opacity 0.2s ease-out;
}

.experience-image-card:hover::before {
    opacity: 0.6;
}

.experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.experience-image-card:hover .experience-image {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .experience-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .experience-image-card {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 80px 0;
    }

    .experience-container {
        padding: 0 20px;
    }

    .experience-title {
        font-size: 2.5rem;
    }

    .experience-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



.about-hero {
    background: #000;
    color: #fff;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 190, 151, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.about-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Ensure video works on mobile */
    -webkit-playsinline: true;
    -webkit-video-playable-inline: true;
    /* Control video playback speed */
    filter: brightness(0.8);
}

/* Fallback for iOS devices */
@supports (-webkit-touch-callout: none) {
    .about-hero-video {
        object-position: center;
    }
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #0ABE97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-hero-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }
}



.services-hero {
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(10, 190, 151, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(10, 190, 151, 0.1) 0%, transparent 50%),
        radial-gradient(circle at center bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%),
        url('images/GCBTopography.webp');
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 190, 151, 0.08) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(10, 190, 151, 0.05) 100%);
    z-index: 2;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 20%, rgba(10, 190, 151, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(10, 190, 151, 0.02) 0%, transparent 25%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1400px;
    padding: 0 40px;
}

.services-hero-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.services-hero-label::before,
.services-hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0ABE97, transparent);
}

.services-hero-label::before {
    right: 100%;
    margin-right: 20px;
}

.services-hero-label::after {
    left: 100%;
    margin-left: 20px;
}

.services-hero h1 {
    font-size: 5.5rem;
    font-weight: 100;
    line-height: 1.0;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #fff 0%, #0ABE97 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    text-shadow: 0 0 40px rgba(10, 190, 151, 0.3);
    letter-spacing: -2px;
}

.services-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-decorative-elements::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(10, 190, 151, 0.2);
    border-radius: 50%;
}

.hero-decorative-elements::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(10, 190, 151, 0.15);
    border-radius: 50%;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(10, 190, 151, 0.4);
    border-radius: 50%;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
}

.particle:nth-child(2) {
    top: 60%;
    left: 85%;
}

.particle:nth-child(3) {
    top: 80%;
    left: 25%;
}

.particle:nth-child(4) {
    top: 30%;
    left: 75%;
}

.particle:nth-child(5) {
    top: 50%;
    left: 5%;
}

.services-grid {
    background: #fff;
    color: #000;
    padding: 120px 0 160px;
    overflow: hidden;
}

.services-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5vw;
}

.services-header {
    text-align: center;
    margin-bottom: 120px;
}

.services-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.services-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    display: grid;
    gap: 0;
    margin-top: 80px;
}

.service-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 60px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 10px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 190, 151, 0.03), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    background: rgba(10, 190, 151, 0.02);
    transform: translateY(-5px);
}

.service-number {
    font-size: 5rem;
    color: #0ABE97;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-item h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    background: black;
    padding: 10px;
    border-radius: 20px;
    margin-top: 0;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: #888;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #0ABE97;
    font-weight: normal;
}

.service-item:hover .service-features li {
    color: #555;
}

.stats-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #0ABE97;
    margin-bottom: 16px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item-content {
    width: 100%;
}

@media (max-width: 1200px) {
    .service-item {
        padding: 50px 30px;
    }

    .services-hero h1 {
        font-size: 4.5rem;
    }

    .service-number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: calc(100vh - 70px);
    }

    .services-hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .services-hero-subtitle {
        font-size: 1.2rem;
    }

    .services-hero-label::before,
    .services-hero-label::after {
        display: none;
    }

    .hero-decorative-elements::before,
    .hero-decorative-elements::after {
        display: none;
    }

    .particle {
        display: none;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-grid {
        padding: 80px 0 120px;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-header {
        margin-bottom: 80px;
    }

    .services-list {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .service-item {
        padding: 40px 20px;
    }

    .service-item h3 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-number {
        font-size: 3rem;
    }
}



.contact-page {
    background: #000;
    color: #fff;
    min-height: 100vh;
}

/* Hero Section */
.contact-hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.583) 50%, rgb(0, 0, 0) 100%),
        url('images/dotWaveMatrix.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1200px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #0ABE97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    width: 1200px;
    max-width: 90vw;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-image-section {
    background: linear-gradient(135deg, #0ABE97 0%, #089575 100%);
    position: relative;
    display: flex;
    justify-content: center;
    padding: 60px 40px;
    overflow: hidden;
    padding-top: 100px;
}

.contact-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/officeBuilding.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
}

.contact-image-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 39px;
    margin-top: 147px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-info-text {
    font-size: 1rem;
    text-align: left;
}

.contact-form-section-inner {
    padding: 60px 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0;
}

.form-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.form-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 100%;
}

.form-container iframe {
    width: 100% !important;
    height: 650px !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-card {
        grid-template-columns: 1fr;
        width: 95vw;
    }

    .contact-image-section {
        min-height: 300px;
        padding: 40px 30px;
    }

    .contact-image-content h2 {
        font-size: 2rem;
    }

    .contact-form-section-inner {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content {
        padding: 0 20px;
    }

    .contact-card {
        margin: 0 20px;
        border-radius: 16px;
    }

    .contact-image-section {
        padding: 30px 20px;
    }

    .contact-image-content h2 {
        font-size: 1.8rem;
    }

    .contact-form-section-inner {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }

    .contact-info {
        gap: 15px;
    }

    .contact-info-item {
        padding: 12px;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .contact-info-text {
        font-size: 0.9rem;
    }
}

footer {
    background-size: 200% 200%;
    animation: orbAnimation 8s ease-in-out infinite;
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid rgba(10, 190, 151, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    min-height: 350px;
}

.footer-map {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 24px;
        overflow: hidden;
        z-index: 0;
    }

    .footer-map iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: invert(90%) hue-rotate(180deg) saturate(80%) contrast(1.2);
        pointer-events: all;
    }

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    z-index: 1;
    border-radius: 24px;
    pointer-events: none;
}

.footer-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    height: 100%;
    min-height: 300px;
    pointer-events: none;
}

.footer-logo {
    height: 50px;
    object-fit: contain;
    object-position: left;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
    pointer-events: all;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #0ABE97;
    margin-bottom: 20px;
}

.footer-address {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #ccc;
}

.footer-address h3 {
    color: #0ABE97;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    pointer-events: all;
}

.footer-links a:hover {
    color: #0ABE97;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.powered-by {
    color: #666;
    font-size: 0.8rem;
    margin-top: 10px;
}

.powered-by a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .footer-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
    }

    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

.get-directions-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    pointer-events: all;
}

.get-directions-btn:hover {
    transform: translateY(-2px);
    background-color: #0ABE97;
    color: #ffffff;
}

.get-directions-btn img {
    height: 20px;
    transition: transform 0.3s ease-in-out;
}

.get-directions-btn:hover .arrow {
    transform: rotate(45deg);
}

.contact-btn {
    background-color: #0ABE97;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    pointer-events: all;
    text-decoration: none;
}

.contact-btn:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
    color: #000000;
}

.our-story {
    background: #fff;
    color: #000;
    padding: 120px 0;
    position: relative;
}

.our-story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.our-story-header {
    text-align: center;
    margin-bottom: 80px;
}

.our-story-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.our-story-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.our-story-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.story-text p {
    margin-bottom: 24px;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.story-stat {
    text-align: center;
}

.story-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ABE97;
    margin-bottom: 8px;
}

.story-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .our-story-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .our-story {
        padding: 80px 0;
    }

    .our-story-title {
        font-size: 2.5rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.our-team {
    background: #000;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.our-team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: center;
}

.team-content {
    color: #fff;
}

.team-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #0ABE97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.team-highlights {
    list-style: none;
    padding: 0;
}

.team-highlights li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.team-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ABE97;
    font-weight: bold;
}

.team-image-card {
    position: relative;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0ABE97 0%, #000 100%);
    box-shadow: 0 30px 60px rgba(10, 190, 151, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease-out;
}

.team-image-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
}

.team-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(10, 190, 151, 0.2) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(10, 190, 151, 0.1) 100%);
    z-index: 2;
    opacity: 0.4;
    transition: opacity 0.2s ease-out;
}

.team-image-card:hover::before {
    opacity: 0.6;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.team-image-card:hover .team-image {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .our-team-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .team-image-card {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }

    .team-image-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .our-team {
        padding: 80px 0;
    }

    .team-title {
        font-size: 2.5rem;
    }
}




.our-founders {
    background: #fff;
    color: #000;
    padding: 120px 0;
    position: relative;
}

.our-founders-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.our-founders-header {
    text-align: center;
    margin-bottom: 80px;
}

.our-founders-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.founders-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #000 0%, #0ABE97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founders-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.founder-card {
    text-align: center;
    position: relative;
}

.founder-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 5px solid #0ABE97;
}

.founder-card:hover .founder-image {
    transform: translateY(-8px);
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.founder-title {
    font-size: 1rem;
    color: #0ABE97;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: left;
}

@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        max-width: 500px;
        margin: 80px auto 0;
    }

    .our-founders-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .our-founders {
        padding: 80px 0;
    }

    .founders-title {
        font-size: 2.5rem;
    }

    .founder-image {
        width: 250px;
        height: 250px;
    }
}


.why-us {
    background: #000;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(10, 190, 151, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%),
        url('');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.why-us-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.why-us-header {
    margin-bottom: 80px;
}

.why-us-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.why-us-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #0ABE97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-us-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease-out;
}

.why-us-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(10, 190, 151, 0.2);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ABE97, #00d4aa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: #fff;
}

.why-us-item h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 600;
}

.why-us-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 80px 0;
    }

    .why-us-container {
        padding: 0 20px;
    }

    .why-us-title {
        font-size: 2.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.our-mission {
    background: #f8f9fa;
    color: #000;
    padding: 120px 0;
    position: relative;
}

.our-mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image-card {
    position: relative;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0ABE97 0%, #000 100%);
    box-shadow: 0 30px 60px rgba(10, 190, 151, 0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.3s ease-out;
}

.mission-image-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
}

.mission-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(10, 190, 151, 0.2) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(10, 190, 151, 0.1) 100%);
    z-index: 2;
    opacity: 0.4;
    transition: opacity 0.2s ease-out;
}

.mission-image-card:hover::before {
    opacity: 0.6;
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.mission-image-card:hover .mission-image {
    transform: scale(1.05);
}

.mission-content {
    color: #000;
}

.mission-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #0ABE97;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.mission-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.mission-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-value {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-out;
}

.mission-value:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-value h4 {
    color: #0ABE97;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.mission-value p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .our-mission-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .mission-image-card {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
        transform: none;
        order: -1;
    }

    .mission-image-card:hover {
        transform: translateY(-8px);
    }

    .mission-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .our-mission {
        padding: 80px 0;
    }

    .mission-title {
        font-size: 2.5rem;
    }
}
