/* Reset and Base Styles */
:root {
    --f--filter--blur--xl: 24px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: linear-gradient(135deg, 
        #d8dedf 0%,
        #c2e5e6 25%,
        #e1f1f2 50%,
        #afb3b3 75%,
        #ffffff 100%
    );
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(var(--f--filter--blur--xl));
    -webkit-backdrop-filter: blur(var(--f--filter--blur--xl));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0) translateZ(0);
    will-change: transform, opacity;
    height: 70px;
    display: flex;
    align-items: center;
    opacity: 1;
}

.navbar.hidden {
    transform: translateY(-100%) translateZ(0);
    opacity: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 0 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    position: fixed;
    top: 20px;
    left: 40px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    backdrop-filter: blur(var(--f--filter--blur--xl));
    -webkit-backdrop-filter: blur(var(--f--filter--blur--xl));
    padding: 15px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 80px;
    height: 80px;
    box-shadow: 0 4px 20px rgba(135, 132, 132, 0.014);
    opacity: 1;
    transform: scale(1) translateZ(0);
    will-change: width, height, top, left, transform;
}

.nav-logo.scrolled {
    width: 50px;
    height: 50px;
    padding: 10px;
    top: 15px;
    left: 30px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.nav-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.logo-popup {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateX(0);
    background: rgba(37, 42, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.nav-logo:hover .logo-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.popup-content h3 {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
    text-align: center;
}

.popup-content p {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 2;
    justify-content: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: #007bff;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-contact {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.contact-btn {
    background: rgb(131 242 32 / 53%);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    z-index: 1 !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Ensure video plays on mobile */
    -webkit-playsinline: true;
    /* Prevent video from being clickable */
    pointer-events: none;
    /* Smooth loading */
    transition: opacity 0.3s ease;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-section-semantics.jpg') center/cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 10%) 0%, rgb(0 0 0 / 10%) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 120px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex: 1;
    z-index: 3 !important;
    min-height: calc(100vh - 200px);
    position: relative !important;
}

.hero-left {
    padding-bottom: 40px;
    padding-left: 20px;
    flex: 1;
    max-width: 50%;
    z-index: 4;
}

.hero-brand {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 2px;
    text-align: left;
    margin-left: -30px;
}

.infinity-x {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    vertical-align: baseline;
    margin-left: 1px;
    margin-right: 1px;
    display: inline-block;
}

.tm-symbol {
    position: relative;
    vertical-align: super;
    margin-left: 3px;
    display: inline-block;
}

.tm-logo {
    width: 0.6em;
    height: 0.6em;
    object-fit: contain;
    display: block;
}

.title-part-1 {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.5s forwards;
    margin-left: 0;
    padding-left: 0;
}

.title-part-2 {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 1.2s forwards;
    margin-left: 0;
    padding-left: 0;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 7rem !important;
    font-weight: 200 !important;
    color: #b0d8d7 !important;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
    text-align: left !important;
    margin-left: -30px !important;
}

.hero-subtitle {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 1.2rem !important;
    font-weight: 300 !important;
    background: linear-gradient(135deg, #1e90ff 0%, #10b981 50%, #3b82f6 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-top: 16px !important;
    display: block !important;
    letter-spacing: 0.5px !important;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out 2.5s forwards, gradientShift 3s ease 3.3s infinite !important;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.highlight {
    background: linear-gradient(135deg, #1e90ff 0%, #10b981 50%, #3b82f6 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 50;
    color: #1e90ff !important;
    animation: gradientShift 3s ease infinite !important;
    display: inline-block;
}

.smart-glow {
    background: linear-gradient(135deg, #82ec3b 0%, #fbbf24 20%, #ffffff 40%, #fef08a 50%, #dbcb1d 70%, #c9e836 90%, #5de8b9 100%);
    background-size: 300% 300% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 400 !important;
    animation: smartGlowCycle 6s ease-in-out infinite !important;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
    
}

@keyframes smartGlowCycle {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.8)) drop-shadow(0 0 25px rgba(251, 191, 36, 0.6));
    }
    25% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8)) drop-shadow(0 0 30px rgba(16, 185, 129, 0.5));
    }
    50% {
        background-position: 200% 50%;
        filter: drop-shadow(0 0 15px rgba(192, 132, 252, 0.8)) drop-shadow(0 0 25px rgba(251, 191, 36, 0.6));
    }
    75% {
        background-position: 300% 50%;
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 30px rgba(192, 132, 252, 0.5));
    }
}

@keyframes colorShift {
    0% { 
        background-position: 0% 50%;
    }
    25% { 
        background-position: 100% 50%;
    }
    50% { 
        background-position: 200% 50%;
    }
    75% { 
        background-position: 300% 50%;
    }
    100% { 
        background-position: 400% 50%;
    }
}

.hero-right {
    padding-bottom: 40px;
    flex: 1;
    max-width: 45%;
    z-index: 4;
}

.hero-description-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.hero-description-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hero-description-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.hero-description-glass:hover::before {
    opacity: 1;
}

.hero-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out 1.7s forwards;
}

.description-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out 1.8s forwards;
}

.flip-clock-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out 2.1s forwards;
    line-height: 1.6;
    min-height: 2.5em;
    width: 100%;
}

.flip-clock {
    display: inline-block;
    height: 2.5em;
    overflow: hidden;
    vertical-align: middle;
    position: relative;
    line-height: 1.6;
    top: 0;
    padding-top: 0;
    padding-bottom: 0.4em;
    min-height: 2.5em;
}

.flip-clock-inner {
    display: inline-block;
    animation: smoothRotate 9s infinite;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-clock-word {
    display: block;
    min-height: 2.2em;
    line-height: 1.8em;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    padding: 0 6px;
    margin: 0;
    background: linear-gradient(135deg, #1e90ff 0%, #10b981 50%, #3b82f6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    box-sizing: border-box;
    white-space: nowrap;
}

@keyframes smoothRotate {
    0% {
        transform: translateY(0);
    }
    27% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-33.33%);
    }
    57% {
        transform: translateY(-33.33%);
    }
    60% {
        transform: translateY(-66.66%);
    }
    87% {
        transform: translateY(-66.66%);
    }
    90% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out 2.4s forwards;
    margin-top: 10px;
}

.cta-button {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-arrow {
    background: #ff6b35;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.forbes-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out 2.8s forwards;
    margin-bottom: 30px;
}

.forbes-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.forbes-logo {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    z-index: 1;
    margin-top: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-footer-left,
.hero-footer-center,
.hero-footer-right {
    flex: 1;
}

.hero-footer-left {
    text-align: left;
}

.hero-footer-center {
    text-align: center;
}

.hero-footer-right {
    text-align: right;
}

.hero-footer span {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-label {
    display: inline-block;
    background: rgba(137, 137, 139, 0.2);
    color: #131414;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(224, 224, 255, 0.3);
}

.benefits-title {
    font-size: 3rem;
    font-weight: 700;
    color: #140101;
    margin-bottom: 30px;
    line-height: 1.2;
}

.benefits-description {
    font-size: 1.1rem;
    color: #080707;
    line-height: 1.8;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-rows: repeat(3, auto);
}

.benefits-grid > *:nth-child(1) { grid-row: 1; grid-column: 1; }
.benefits-grid > *:nth-child(2) { grid-row: 2; grid-column: 1; }
.benefits-grid > *:nth-child(3) { grid-row: 1; grid-column: 2; }
.benefits-grid > *:nth-child(4) { grid-row: 2; grid-column: 2; }
.benefits-grid > *:nth-child(5) { grid-row: 3; grid-column: 2; }
.benefits-grid > *:nth-child(6) { grid-row: 1; grid-column: 3; }
.benefits-grid > *:nth-child(7) { grid-row: 2; grid-column: 3; }
.benefits-grid > *:nth-child(8) { grid-row: 3; grid-column: 3; }

.benefit-card {
    background: #3A3A6B;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 224, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(224, 224, 255, 0.3);
    background: linear-gradient(135deg, #3A3A6B 0%, #4A4A7B 100%);
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-title {
    color: #E0E0FF;
    transform: translateY(-2px);
}

.benefit-card:hover .benefit-description {
    color: #fff;
    transform: translateY(-1px);
}

.benefit-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-description {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-card {
    background: linear-gradient(135deg, #3A3A6B 0%, #4A4A7B 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.special-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #4A4A7B 0%, #5A5A8B 100%);
}

.special-card:hover::before {
    left: 100%;
}

.special-card:hover .big-number {
    transform: scale(1.1);
    color: #E0E0FF;
}

.special-card:hover .special-description {
    color: #fff;
    transform: translateY(-2px);
}

.special-card-content {
    position: relative;
    z-index: 2;
}

.dots-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #E0E0FF;
    border-radius: 50%;
}

.dot:first-child {
    width: 8px;
    height: 8px;
    background: #E0E0FF;
    border-radius: 50%;
}

.big-number {
    font-size: 4rem;
    font-weight: 700;
    color: #E0E0FF;
    margin: 20px 0;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-description {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.background-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
    z-index: 1;
}

.stat-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.stat-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 224, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-display:hover {
    transform: translateY(-6px) scale(1.05);
    background: rgba(224, 224, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-display:hover::before {
    left: 100%;
}

.stat-display:hover .stat-number {
    transform: scale(1.1);
    color: #E0E0FF;
}

.stat-display:hover .stat-description {
    color: #fff;
    transform: translateY(-2px);
}

.stat-display:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.stat-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-description {
    font-size: 1rem;
    color: #fff;
    margin: 10px 0 0 0;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design for Benefits */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .contact-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        grid-template-rows: auto;
    }
    
    .benefits-grid > * {
        grid-row: auto !important;
        grid-column: 1 !important;
    }
    
    .benefits-title {
        font-size: 2.2rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .nav-container {
        padding: 0 20px 0 100px;
    }
    
    .nav-logo {
        top: 15px;
        left: 20px;
        width: 60px;
        height: 60px;
        padding: 12px;
    }
    
    .nav-logo.scrolled {
        width: 40px;
        height: 40px;
        padding: 8px;
        top: 12px;
        left: 15px;
    }
    
    .logo-popup {
        min-width: 250px;
        max-width: 280px;
        padding: 15px;
        margin-top: 8px;
    }
    
    .popup-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .popup-content p {
        font-size: 13px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #111;
    position: relative;
}

.about-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.about-text {
    font-size: 1.3rem;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-number {
    position: absolute;
    top: -20px;
    right: -50px;
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    opacity: 0.3;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #000;
}

.portfolio .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-counter {
    text-align: center;
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.portfolio-item {
    background: #111;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
    border-color: #007bff;
}

.portfolio-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

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

.portfolio-item p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #0056b3;
}

.view-all-btn {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: #007bff;
    color: #fff;
}

/* Areas Section */
.areas {
    padding: 100px 0;
    background: #111;
}

.areas .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.areas .section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.areas-description {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-counter {
    text-align: center;
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 60px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.area-item {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.area-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.area-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: #000;
}

.partners .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.partners .section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.partners-description {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-item {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
}

.partner-item p {
    color: #ccc;
    font-size: 1.1rem;
}


/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #1a1a2e;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    z-index: -2;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.working-hours {
    margin-top: 40px;
}

.working-hours-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.working-hours-text,
.appointment-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 00px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1rem;
    padding: 12px 15px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: #fff;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.phone-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.flag {
    font-size: 1.2rem;
}

.country-code {
    color: #fff;
    font-weight: 500;
}

.dropdown-arrow {
    color: #fff;
    font-size: 0.8rem;
    margin-left: 5px;
}

.phone-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.submit-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.submit-arrow {
    background: #fff;
    color: #ff6b35;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.contact-form h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    padding: 10px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

.form-group:has(select) input {
    padding-right: 70px;
}

.submit-btn {
    width: 100%;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Human Capital Growth Section */
.growth-mindset {
    position: relative;
    background: #0d3938;
    min-height: 100vh;
    overflow: hidden;
}

.growth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/photo-1753952253421-3f4bcdd697ee.avif') center/cover;
    z-index: 1;
}

.growth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 57, 56, 0.9) 0%,
        rgba(0, 36, 71, 0.8) 50%,
        rgba(13, 57, 56, 0.9) 100%
    );
    z-index: 2;
}

.growth-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 40px;
}

/* Header */
.growth-header {
    text-align: center;
    margin-bottom: 30px;
}

.growth-badge {
    display: inline-block;
    background: rgba(30, 144, 255, 0.2);
    color: #1e90ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.growth-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b0d8d7;
    margin-bottom: 15px;
    line-height: 1.2;
}

.growth-highlight {
    background: linear-gradient(45deg, #1e90ff, #49d3ce, #30c9c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorShift 4s ease-in-out infinite;
}

.growth-subtitle {
    font-size: 16px;
    color: #83e1de;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.growth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
    align-items: start;
}

/* Philosophy Cards */
.growth-philosophy {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 144, 255, 0.05) 0%,
        rgba(73, 211, 206, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.philosophy-card:hover::before {
    opacity: 1;
}

.philosophy-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #1e90ff, #49d3ce);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #fff;
}

.philosophy-icon svg {
    width: 24px;
    height: 24px;
}

.philosophy-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #b0d8d7;
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 15px;
    color: #83e1de;
    line-height: 1.5;
}

/* Impact Section */
.growth-impact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.impact-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.growth-circle {
    position: relative;
    width: 140px;
    height: 140px;
}

.progress-ring {
    transform: rotate(-90deg);
    width: 160px;
    height: 160px;
}

.progress-ring-circle {
    stroke-dasharray: 452.39;
    stroke-dashoffset: 452.39;
    transition: stroke-dashoffset 2s ease-in-out;
    stroke-linecap: round;
    stroke-width: 6;
    fill: transparent;
    r: 72;
    cx: 80;
    cy: 80;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 5px;
}

.progress-label {
    font-size: 14px;
    color: #83e1de;
    font-weight: 500;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 144, 255, 0.3);
    background: rgba(30, 144, 255, 0.1);
}

.stat-number {
    font-size: 26px;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: #83e1de;
    font-weight: 500;
}

/* Quote */
.growth-quote {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.growth-quote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 25px;
    font-size: 60px;
    color: rgba(30, 144, 255, 0.3);
    font-family: serif;
}

.growth-quote blockquote {
    font-size: 18px;
    color: #b0d8d7;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
}

.growth-quote cite {
    font-size: 14px;
    color: #83e1de;
    font-weight: 500;
}

/* CTA Section */
.growth-cta {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #b0d8d7;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 15px;
    color: #83e1de;
    margin-bottom: 20px;
}

.growth-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #1e90ff, #49d3ce);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.growth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 144, 255, 0.4);
    background: linear-gradient(135deg, #49d3ce, #1e90ff);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.growth-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .growth-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .growth-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .growth-container {
        padding: 80px 20px 60px;
    }
    
    .growth-title {
        font-size: 2.5rem;
    }
    
    .growth-subtitle {
        font-size: 18px;
    }
    
    .philosophy-card {
        padding: 30px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .growth-quote {
        padding: 30px;
    }
    
    .growth-quote blockquote {
        font-size: 18px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .growth-container {
        padding: 60px 15px 40px;
    }
    
    .growth-title {
        font-size: 2rem;
    }
    
    .philosophy-card {
        padding: 25px;
    }
    
    .philosophy-icon {
        width: 50px;
        height: 50px;
    }
    
    .philosophy-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .growth-quote {
        padding: 25px;
    }
    
    .growth-quote blockquote {
        font-size: 16px;
    }
}

.footer-background {
    position: absolute;
   
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2029&q=80') center/cover;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 57, 56, 0.85) 0%,
        rgba(13, 57, 56, 0.7) 30%,
        rgba(0, 36, 71, 0.6) 60%,
        rgba(0, 36, 71, 0.8) 100%
    );
    z-index: 2;
}

.footer-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.footer-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(13, 57, 56, 0.3) 20%,
        rgba(30, 144, 255, 0.4) 50%,
        rgba(0, 36, 71, 0.3) 80%,
        transparent 100%
    );
    border-radius: 2px;
    z-index: 1;
    animation: gradientPulse 3s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scaleY(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleY(1.1);
    }
}

/* Footer Info Section */
.footer-info {
    padding-right: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-company-name {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.footer-description {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 500px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    color: #10b981;
    flex-shrink: 0;
}

.contact-item span {
    font-family: 'Roboto', 'Google Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.footer-info::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(
        135deg,
        rgba(13, 57, 56, 0.2) 0%,
        rgba(13, 57, 56, 0.1) 50%,
        rgba(0, 36, 71, 0.05) 100%
    );
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.footer-description {
    font-size: 18px;
    line-height: 1.6;
    color: #83e1de;
    margin-bottom: 40px;
    max-width: 500px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(30, 144, 255, 0.1);
    border-color: rgba(30, 144, 255, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.2);
    border-radius: 50%;
}

.contact-item span {
    color: #b0d8d7;
    font-size: 16px;
    font-weight: 500;
}

/* Footer Form Section */
.footer-form-container {
    background: linear-gradient(
        135deg,
        rgba(0, 36, 71, 0.4) 0%,
        rgba(0, 36, 71, 0.6) 50%,
        rgba(0, 36, 71, 0.8) 100%
    );
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.footer-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(30, 144, 255, 0.05) 0%,
        rgba(73, 211, 206, 0.05) 50%,
        rgba(48, 201, 196, 0.05) 100%
    );
    border-radius: 25px;
    z-index: -1;
}

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

.form-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #b0d8d7;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: #83e1de;
    line-height: 1.5;
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #b0d8d7;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(176, 216, 215, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1e90ff;
    background: rgba(30, 144, 255, 0.1);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23b0d8d7' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #1e90ff, #49d3ce);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 144, 255, 0.4);
    background: linear-gradient(135deg, #49d3ce, #1e90ff);
}

.submit-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .submit-arrow {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links a {
    color: #83e1de;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e90ff;
}

.footer-copyright {
    color: rgba(176, 216, 215, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content::after {
        display: none;
    }
    
    .footer-info {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-form-container {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 40px 15px 20px;
    }
    
    .footer-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .form-submit-btn {
        padding: 16px 25px;
        font-size: 14px;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-details h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-details p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #007bff;
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .nav-contact {
        margin-left: auto;
    }
    
    .contact-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-right: 10px;
    }
    
    .hero-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left;
        gap: 30px;
        padding: 0 20px 80px;
        min-height: auto;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-left {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0;
        padding-bottom: 30px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-right {
        max-width: 100% !important;
        width: 100%;
    }
    
    .hero-brand {
        font-family: 'Roboto', 'Google Sans', sans-serif;
        font-size: 1.2rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.7);
        margin-left: 0;
        margin-bottom: 0.8rem;
        text-transform: lowercase;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: 3rem !important;
        line-height: 1.1;
        text-align: left;
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        margin-left: 0 !important;
        padding-left: 0;
        width: 100%;
        overflow: visible;
    }
    
    .hero-title .title-part-1 {
        color: rgba(255, 255, 255, 0.9) !important;
        display: inline-block;
    }
    
    .hero-title .title-part-2 {
        display: inline-block;
    }
    
    .hero-title .smart-glow {
        filter: brightness(1.2);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-top: 10px;
        text-align: left;
    }
    
    .hero-description-glass {
        padding: 25px 20px;
        margin-top: 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .flip-clock-wrapper {
        margin: 20px 0;
    }
    
    .flip-clock-word {
        font-size: 1.2rem;
    }
    
    .infinity-x {
        font-size: 1em;
        margin-left: 1px;
        margin-right: 1px;
    }
    
    .tm-symbol {
        vertical-align: super;
        margin-left: 3px;
    }
    
    .tm-logo {
        width: 0.5em;
        height: 0.5em;
    }
    
    .title-part-1 {
        animation: slideInUp 0.6s ease-out 0.3s forwards;
    }
    
    .description-text {
        animation: slideInUp 0.6s ease-out 1.2s forwards;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.6s ease-out 1.8s forwards;
    }
    
    .forbes-feature {
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.6s ease-out 2.0s forwards;
    }
    
    .hero-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
    }
    
    .hero-footer-left,
    .hero-footer-center,
    .hero-footer-right {
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px 60px;
    }
    
    .hero-title {
        font-family: 'Roboto', 'Google Sans', sans-serif;
        font-size: 2.8rem !important;
        font-weight: 300;
        margin-left: 0 !important;
        margin-right: 0;
        padding-left: 0;
        line-height: 1.15;
        color: rgba(255, 255, 255, 0.98) !important;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.2);
        width: 100%;
        overflow: visible;
        word-wrap: break-word;
    }
    
    .hero-title .title-part-1 {
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        display: inline-block;
    }
    
    .hero-title .title-part-2 {
        display: inline-block;
    }
    
    .hero-title .smart-glow {
        filter: brightness(1.3) contrast(1.1);
        -webkit-filter: brightness(1.3) contrast(1.1);
    }
    
    .hero-subtitle {
        margin-left: 0 !important;
        padding-left: 0;
    }
    
    .hero-brand {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-description-glass {
        padding: 20px 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .flip-clock-word {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .portfolio-item,
    .area-item,
    .partner-item {
        padding: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Custom f-depth--down gradient with emerald green and gold */
.f-depth--down {
    background-image: radial-gradient(
        var(--depth--gradient--position, 140% 120% at 50% 100%), 
        transparent 25%, 
        rgba(16, 185, 129, 0) 35%, 
        rgba(16, 185, 129, 0.25) 50%, 
        rgba(245, 158, 11, 0.8) 90%, 
        rgba(16, 185, 129, 1) 95%
    ) !important;
}

/* New Benefits Section Design */
.benefits-new {
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.benefits-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.benefits-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Styling */
.benefits-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Frosted Glass Testimonial Styling */
.benefits-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 500px;
    width: 100%;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
    margin: 0 0 30px 0;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
}

.testimonial-company {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-header-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.brand-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
}

.brand-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
}

.benefits-title-new {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0;
}

.benefits-description-new {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.benefits-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.benefits-cta:hover {
    background: #357ABD;
    transform: translateX(5px);
}

.cta-arrow-new {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .benefits-testimonial {
        order: 2;
    }

    .benefits-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .benefits-new {
        padding: 80px 20px;
    }

    .benefits-title-new {
        font-size: 2rem;
    }

    .testimonial-glass {
        padding: 30px;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .benefits-content {
        padding: 30px;
    }
}

/* New Footer Design */
.footer-new {
    background: #ffffff;
    padding: 80px 40px 40px;
}

.footer-container-new {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        #e2e8f0 20%, 
        #e2e8f0 80%, 
        transparent 100%
    );
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.footer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 8px 0;
}

.footer-link {
    font-size: 1rem;
    color: #4a5568;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1a202c;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo-section {
    position: relative;
    z-index: 2;
}

.footer-logo-gradient {
    position: absolute;
    bottom: -100px;
    left: -118px;
    width: 941px;
    height: 240px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.89) 20%, rgba(167, 139, 250, 4.90) 70%, rgba(96, 212, 240, 0.9) 13%);
    border-radius: 55%;
    filter: blur(90px);
    z-index: 0;
}

.footer-logo-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-brand-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-link {
    font-size: 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #1a202c;
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

.footer-links-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal-link {
    font-size: 0.85rem;
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #1a202c;
    text-decoration: underline;
}

/* News Section */
.news-section {
    background: #ffffff;
    padding: 80px 40px;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact CTA Section */
.contact-cta-section {
    background: #ffffff;
    padding: 60px 40px;
}

.contact-cta-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact CTA Card */
.contact-cta-card {
    background: linear-gradient(
        90deg,
        #4ade80 0%,
        #a78bfa 50%,
        #60d4f0 100%
    );
    border-radius: 16px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.cta-text-section {
    flex: 1;
}

.cta-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.cta-talk-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid white;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.cta-talk-button svg {
    transition: transform 0.3s ease;
}

.cta-talk-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-talk-button:hover svg {
    transform: translate(4px, -4px);
}

/* News and Insights Section */
.news-insights-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.news-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
    margin: 0;
}

.news-see-all {
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-see-all:hover {
    color: #4a90e2;
}

/* News Cards Container */
.news-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* News Card Styling */
.news-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-light {
    background: #ffffff;
}

.card-dark {
    background: linear-gradient(90deg, #4ade80 0%, #a78bfa 50%, #60d4f0 100%);
}

/* Thumbnail Styling */
.news-card-thumbnail {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    padding: 20px 16px 16px;
}

.overlay-series {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.overlay-guest {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.overlay-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* News Card Content */
.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.card-light .news-card-title {
    color: #000;
}

.card-dark .news-card-title {
    color: #fff;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.card-light .news-card-meta {
    color: #666;
}

.card-dark .news-card-meta {
    color: rgba(255, 255, 255, 0.6);
}

.news-card-date {
    font-weight: 400;
}

.news-card-author {
    font-weight: 500;
}

/* Action Icon */
.action-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #c44569, #f8b500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.action-icon:hover {
    transform: scale(1.1);
}

.action-icon svg {
    width: 12px;
    height: 12px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-cards-container {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .news-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1024px) {
    .cta-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-new {
        padding: 60px 20px 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-legal {
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-links-row {
        flex-wrap: wrap;
    }

    .footer-logo-gradient {
        width: 300px;
        height: 250px;
        bottom: -80px;
        left: -80px;
    }

    .contact-cta-card {
        padding: 40px 30px;
    }

    .cta-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .news-heading {
        font-size: 2rem;
    }

    .news-insights-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .news-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-card-thumbnail {
        height: 200px;
    }

    .contact-cta-card {
        padding: 40px 30px;
    }

    .certifications-section {
        padding: 80px 20px;
    }

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

    .award-item {
        width: 180px;
        padding: 15px;
    }

    .award-icon {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .awards-scroll-track {
        gap: 40px;
    }

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

    .frosted-main-image {
        height: 400px;
    }

    .glass-card-title-overlay {
        font-size: 1rem;
        padding: 16px 20px;
        bottom: 20px;
        left: 20px;
        right: 60px;
    }

    .frosted-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header-group {
        margin-bottom: 40px;
    }
    
    .frosted-section-header {
        font-size: 2rem;
    }
    
    .section-label {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .who-we-are-title {
        font-size: 2.5rem;
    }

    .who-we-are-title .text-no-wrap {
        white-space: normal;
    }
    
    .scheduling-title {
        font-size: 2rem;
    }
    
    .image-indicators-outer {
        position: static;
        transform: none;
        top: auto;
        right: auto;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
    
    .indicator.active {
        width: 10px;
        height: 10px;
    }
    
    .category-item.active {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 1.75rem;
    }

    .cta-talk-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Who We Are Section */
.who-we-are {
    background: #ffffff;
    padding: 100px 40px;
    /* Opacity and transform removed to allow child animations to work */
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.frosted-glass-section.visible .glass-card {
    animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.who-we-are-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.who-we-are-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.who-we-are-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a202c;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

.who-we-are-title .text-no-wrap {
    white-space: nowrap;
    display: inline-block;
}

.who-we-are-description {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.who-we-are-description .description-content {
    flex: 1;
}

.who-we-are-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    max-width: 100%;
}

.who-we-are-description .logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    position: relative;
}

.who-we-are-description .logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #1e90ff, #10b981);
    border-radius: 2px;
}

.who-we-are-logo {
    max-width: 280px;
    height: auto;
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.who-we-are-logo:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

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

/* Gradient Text Styles */
.gradient-text-smart-growth {
    background: linear-gradient(135deg, 
        #1e3a8a 0%, 
        #3b82f6 25%, 
        #8b5cf6 50%, 
        #6b21a8 75%, 
        #059669 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.gradient-text-human-capital {
    background: linear-gradient(135deg,
        #036d17 0%,
        #034f42 25%,
        #046a40 50%,
        #05604f 75%,
        #580573 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Cards Grid */
.who-we-are-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.who-we-are-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.6s ease-out;
    animation-fill-mode: both;
}

.who-we-are-card:nth-child(1) {
    animation-delay: 0.1s;
}

.who-we-are-card:nth-child(2) {
    animation-delay: 0.2s;
}

.who-we-are-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.who-we-are-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.who-we-are-card-title {
    font-size: 2rem;
    font-weight: 200;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.who-we-are-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 30px 0;
}

.who-we-are-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-we-are-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.who-we-are-list-item:first-child {
    border-top: none;
}

.who-we-are-list-item:hover {
    padding-left: 12px;
}

.who-we-are-list-item:hover .who-we-are-list-item span {
    color: #f97316;
}

.who-we-are-list-item span {
    font-size: 1rem;
    color: #4a5568;
    transition: color 0.3s ease;
}

.who-we-are-list-item svg {
    color: #a0aece;
    transition: transform 0.3s ease;
}

.who-we-are-list-item:hover svg {
    transform: translateX(4px);
    color: #f97316;
}

/* Frosted Glass Section - New Design */
.frosted-glass-section-new {
    background: #f8f8f8;
    padding: 100px 40px;
}

.frosted-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

/* Section Label Styles */
.section-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: left;
}

.section-header-group {
    grid-column: 1 / -1;
    margin-bottom: 60px;
    text-align: left;
}

.frosted-section-header {
    font-size: 3rem;
    font-weight: 300;
    color: #1a202c;
    margin: 0;
    text-align: left;
    line-height: 1.2;
}

/* Left Column: Categories */
.frosted-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch; /* Ensure items stretch evenly */
}

.category-item {
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    scroll-margin-top: 20px; /* Prevents content jump */
}

.category-item:first-child {
    padding-top: 0;
}

.category-item:last-child {
    border-bottom: none;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 8px 0;
    transition: font-size 0.3s ease;
}

.category-item.active .category-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.category-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    will-change: max-height; /* Optimize for animation */
}

.category-item.active .category-description {
    max-height: 300px; /* Accommodate descriptions without causing page jumps */
}

/* Right Column: Image Section */
.frosted-image-section {
    position: relative;
}

.frosted-image-wrapper {
    position: relative;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-indicators-outer {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.frosted-main-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
}

.image-overlay-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
}

.glass-card-title-overlay {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px 28px;
    font-weight: 100;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.6s ease-out;
    line-height: 1.6;
}

.image-indicators {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    width: 10px;
    height: 10px;
    background: #4285F4;
    border-color: #ffffff;
    box-shadow: 0 0 12px rgba(66, 133, 244, 0.8), 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

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

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

.glass-card-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.glass-card-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 50px 0;
}

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

.glass-stat {
    animation: countUp 1.5s ease-out;
}

.glass-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.glass-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .who-we-are-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are-description {
        gap: 30px;
    }

    .who-we-are-description .logo-container {
        margin-top: 20px;
        padding-top: 25px;
        justify-content: center;
    }

    .who-we-are-logo {
        max-width: 220px;
    }

    .who-we-are-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .who-we-are-title .text-no-wrap {
        white-space: normal;
    }
    
    .who-we-are-description p {
        font-size: 1rem;
    }

    .who-we-are-cards {
        gap: 30px;
    }

    .glass-card {
        padding: 40px;
    }

    .glass-card-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .who-we-are {
        padding: 60px 20px;
    }
    
    .who-we-are-header {
        gap: 30px;
        margin-bottom: 50px;
    }

    .who-we-are-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .who-we-are-description {
        gap: 25px;
    }
    
    .who-we-are-description p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .who-we-are-description .logo-container {
        margin-top: 15px;
        padding-top: 20px;
        justify-content: center;
    }

    .who-we-are-logo {
        max-width: 200px;
    }

    .who-we-are-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .who-we-are-card {
        padding: 25px 20px;
    }
    
    .who-we-are-card-title {
        font-size: 1.5rem;
    }
    
    .who-we-are-card-description {
        font-size: 0.9rem;
    }

    .frosted-glass-section {
        height: 500px;
    }

    .glass-card {
        padding: 30px 20px;
    }

    .glass-card-title {
        font-size: 2rem;
    }

    .glass-card-description {
        font-size: 1rem;
    }

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

    .scheduling-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .meeting-details {
        order: 1;
    }

    .calendar-panel {
        order: 2;
    }

    .time-slots-panel {
        order: 3;
    }
}

/* Scheduling Section */
.scheduling-section {
    background: white;
    padding: 80px 40px;
}

.scheduling-container {
    max-width: 1400px;
    margin: 0 auto;
}

.scheduling-header {
    text-align: left;
    margin-bottom: 60px;
}

.scheduling-header .section-label {
    margin-bottom: 12px;
}

.scheduling-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1a202c;
    margin: 0 0 12px 0;
    text-align: left;
}

.scheduling-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
}

.scheduling-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
}

/* Meeting Details Panel */
.meeting-details {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.meeting-host {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.host-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4ade80;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.host-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a202c;
}

.meeting-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.meeting-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 30px 0;
}

.meeting-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    font-size: 0.95rem;
}

/* Calendar Panel */
.calendar-panel {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar-month {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.calendar-nav {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4a5568;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-date.available {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    color: #1a202c;
}

.calendar-date.available:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.calendar-date.selected {
    background: #1a202c;
    color: white;
}

.calendar-date.unavailable {
    color: #a0aec0;
    cursor: not-allowed;
}

/* Time Slots Panel */
.time-slots-panel {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.time-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.selected-date {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.time-format-toggle {
    display: flex;
    gap: 4px;
    background: #f7fafc;
    padding: 4px;
    border-radius: 8px;
}

.toggle-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: white;
    color: #1a202c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slot {
    padding: 12px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1a202c;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.time-slot.selected {
    background: #1a202c;
    color: white;
    border-color: #1a202c;
}

/* Contact Form Modal */
.contact-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-form-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s ease-out;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hide scrollbar but keep functionality */
.modal-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.modal-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 20px 0;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cbd5e0;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.btn-back,
.btn-confirm {
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back {
    background: white;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.btn-back:hover {
    background: #f7fafc;
}

.btn-confirm {
    background: #1a202c;
    color: white;
}

.btn-confirm:hover {
    background: #2d3748;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
    margin-top: 15px;
}

.form-disclaimer a {
    color: #1a202c;
    font-weight: 500;
}

/* Certifications & Recognitions Section */
.certifications-section {
    background: #ffffff;
    padding: 100px 40px;
    overflow: hidden;
}

.certifications-container {
    max-width: 1400px;
    margin: 0 auto;
}

.certifications-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 60px 0;
}

.awards-scroll-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.awards-scroll-wrapper::before,
.awards-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.awards-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.awards-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.awards-scroll-track {
    display: flex;
    gap: 60px;
    animation: scroll-horizontally 40s linear infinite;
    width: max-content;
}

@keyframes scroll-horizontally {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.award-item {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: scale(1.05);
}

.award-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}

.award-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.4;
}

.award-year {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* New Growth Mindset Section - Two Column Layout */
.growth-mindset-new {
    background: #ffffff;
    padding: 120px 40px;
}

.growth-container-new {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Left Content */
.unify-content {
    max-width: 500px;
}

.unify-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 50px 0;
    line-height: 1.1;
}

.unify-blocks {
    margin-bottom: 40px;
}

.unify-block {
    margin-bottom: 40px;
    padding-left: 24px;
    position: relative;
}

.unify-block.highlighted {
    border-left: 4px solid #f97316;
    padding-left: 20px;
}

.unify-block-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.unify-block-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.unify-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.unify-link:hover {
    color: #ea580c;
}

.unify-link svg {
    transition: transform 0.3s ease;
}

.unify-link:hover svg {
    transform: translate(4px, -4px);
}

.unify-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unify-cta:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* Right UI Mockup */
.unify-ui {
    position: relative;
    height: 600px;
}

.ui-window {
    width: 100%;
    height: 100%;
    background: #f5f5f7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ui-overlay {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ui-placeholder {
    padding: 40px;
}

.ui-grid-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.ui-preview-card {
    background: transparent;
    border-radius: 8px;
    padding: 0;
    height: auto;
    transition: transform 0.3s ease;
}

.ui-preview-card:nth-child(1) {
    animation: float 3s ease-in-out infinite;
}

.ui-preview-card:nth-child(2) {
    animation: float 3s ease-in-out infinite 0.5s;
}

.ui-preview-card:nth-child(3) {
    animation: float 3s ease-in-out infinite 1s;
}

.ui-preview-card:nth-child(4) {
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Frosted Glass Cards inside UI Preview */
.ui-preview-card .testimonial-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

.ui-preview-card .testimonial-quote {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
    margin: 0 0 20px 0;
    font-style: italic;
}

.ui-preview-card .testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
}

.ui-preview-card .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ui-preview-card .testimonial-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.ui-preview-card .testimonial-company {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .unify-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .unify-ui {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .growth-mindset-new {
        padding: 80px 20px;
    }

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

    .unify-block-title {
        font-size: 1.5rem;
    }

    .unify-cta {
        width: 100%;
        text-align: center;
    }
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.contact-modal-container {
    position: relative;
    max-width: 900px;
    width: 92%;
    max-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
    z-index: 10001;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-modal-left {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.95) 0%, 
        rgba(6, 182, 212, 0.95) 50%, 
        rgba(139, 92, 246, 0.95) 100%
    );
    padding: 35px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.contact-modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.contact-modal-content {
    position: relative;
    z-index: 1;
    color: white;
}

.contact-modal-title {
    font-size: 1.75rem;
    font-weight: 300;
    margin: 0 0 8px 0;
    color: white;
}

.contact-modal-subtitle {
    font-size: 0.9rem;
    margin: 0 0 24px 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: white;
    color: white;
    display: block;
}

.contact-info-item span {
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
    flex: 1;
}

.contact-info-item address {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
    font-style: normal;
    margin: 0;
}

.contact-modal-right {
    background: white;
    padding: 24px 22px;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    max-height: 88vh;
}

.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 10;
    line-height: 1;
}


.contact-form-wrapper {
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 16px 0;
    line-height: 1.3;
    padding-right: 35px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
}

.contact-form select {
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234a5568' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    padding-right: 40px;
}

/* Compact Form Styles */
.contact-form-compact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Category Selection Section */
.category-selection-section {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.category-section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.category-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    background: #f7fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.category-checkbox-item:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.category-checkbox-item:has(input:checked) {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-color: #4299e1;
}

.category-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #4299e1;
    flex-shrink: 0;
}

.checkbox-label {
    color: #4a5568;
    line-height: 1.4;
    flex: 1;
    user-select: none;
}

.category-checkbox-item:has(input:checked) .checkbox-label {
    color: #1a202c;
    font-weight: 500;
}

.form-fields-section {
    margin-top: 16px;
}

.contact-form-compact .form-group {
    margin-bottom: 12px;
}

.contact-form-compact label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 5px;
    display: block;
    line-height: 1.3;
}

.contact-form-compact input:not([type="checkbox"]),
.contact-form-compact select,
.contact-form-compact textarea {
    padding: 8px 10px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1.5px solid #e2e8f0;
    width: 100%;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
    background: #fafbfc;
    color: #2d3748;
}

.contact-form-compact input::placeholder,
.contact-form-compact textarea::placeholder {
    color: #a0aec0;
}

.contact-form-compact input:focus,
.contact-form-compact select:focus,
.contact-form-compact textarea:focus {
    outline: none;
    border-color: #4299e1;
    background: white;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.contact-form-compact textarea {
    min-height: 70px;
    max-height: 100px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.4;
}

.contact-form-compact .form-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-form-compact select {
    width: 100%;
    padding: 8px 10px;
    padding-right: 32px;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #2d3748;
    background: #fafbfc;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234a5568' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.contact-form-compact select option {
    color: #2d3748;
    background: #ffffff;
    padding: 8px;
}

.contact-form-compact select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.contact-form-compact .contact-submit-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    margin-top: 6px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-modal-container {
        max-width: 95%;
        width: 95%;
        max-height: 92vh;
    }
    
    .contact-modal-left {
        padding: 28px 24px;
    }
    
    .contact-modal-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .contact-modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .contact-info {
        gap: 10px;
    }
    
    .contact-info-item span {
        font-size: 0.85rem;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-modal-right {
        padding: 20px 18px;
        max-height: 92vh;
    }
    
    .contact-modal-close {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .contact-form-title {
        font-size: 1.15rem;
        margin-bottom: 14px;
        padding-right: 30px;
    }
    
    .category-checkboxes {
        gap: 8px;
    }
    
    .category-checkbox-item {
        padding: 7px 9px;
        font-size: 0.8rem;
    }
    
    .category-checkbox {
        width: 16px;
        height: 16px;
    }
    
    .category-selection-section {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }
    
    .category-section-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .form-fields-section {
        margin-top: 14px;
    }
    
    .contact-form-compact .form-row-compact {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 12px;
    }
    
    .contact-form-compact .form-group {
        margin-bottom: 12px;
    }
    
    .contact-form-compact label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .contact-form-compact input,
    .contact-form-compact select,
    .contact-form-compact textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .contact-form-compact textarea {
        min-height: 65px;
        max-height: 90px;
    }
    
    .contact-form-compact .contact-submit-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-modal-container {
        grid-template-columns: 1fr;
        width: 95%;
        max-height: 95vh;
        max-width: 95%;
    }

    .contact-modal-left {
        padding: 30px 25px;
    }

    .contact-modal-right {
        padding: 25px;
    }

    .contact-modal-title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .contact-modal-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .contact-info {
        gap: 14px;
    }

    .contact-form-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .contact-form .form-group {
        margin-bottom: 16px;
    }
}

/* Our Projects Section */
.our-projects-section {
    background: white;
    padding: 100px 40px;
    position: relative;
}

.our-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(96, 212, 240, 0.1) 100%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.our-projects-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.our-projects-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a202c;
    margin: 12px 0 40px 0;
    text-align: left;
}

.our-projects-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 50px 0;
    max-width: 900px;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.partner-logo {
    min-width: 150px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    padding: 20px 30px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    background: white;
}

.partner-logo:first-child .logo-placeholder {
    font-size: 0.9rem;
}

.partner-logo:nth-child(2) .logo-placeholder {
    font-size: 1.1rem;
}

.partner-logo:nth-child(3) .logo-placeholder {
    font-size: 1.2rem;
}

.partner-logo:nth-child(4) .logo-placeholder {
    font-size: 0.85rem;
}

.partner-logo:nth-child(5) .logo-placeholder {
    font-size: 0.9rem;
}

.blurred-logo .logo-placeholder {
    filter: blur(5px);
    opacity: 0.8;
    pointer-events: none;
}

.our-projects-conclusion {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 50px 0 40px 0;
    max-width: 900px;
}

.navigation-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4299e1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.nav-arrow:hover {
    background: #3182ce;
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .our-projects-section {
        padding: 60px 20px;
    }

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

    .partners-logos {
        gap: 20px;
    }

    .partner-logo {
        min-width: 120px;
        min-height: 60px;
    }

    .logo-placeholder {
        font-size: 0.9rem;
        padding: 15px 20px;
    }

    .navigation-arrows {
        justify-content: center;
        margin-top: 30px;
    }
}

/* Comprehensive Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Frosted Glass Section */
    .frosted-glass-section-new {
        padding: 60px 20px;
    }
    
    .frosted-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .frosted-section-header {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-header-group {
        margin-bottom: 40px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .category-item.active .category-title {
        font-size: 1.3rem;
    }
    
    .category-description {
        font-size: 0.9rem;
    }
    
    .frosted-main-image {
        height: 300px;
        object-fit: cover;
    }
    
    /* Scheduling Section */
    .scheduling-section {
        padding: 60px 20px;
    }
    
    .scheduling-title {
        font-size: 2rem;
    }
    
    .scheduling-subtitle {
        font-size: 1rem;
    }
    
    .meeting-details {
        padding: 30px 20px;
    }
    
    .calendar-panel {
        padding: 20px;
    }
    
    /* News Section */
    .news-section {
        padding: 60px 20px;
    }
    
    .news-heading {
        font-size: 1.8rem;
    }
    
    .news-card-title {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    /* Contact CTA */
    .contact-cta-section {
        padding: 60px 20px;
    }
    
    .cta-heading {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-intro {
        font-size: 0.95rem;
    }
    
    .cta-talk-button {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        min-height: 100vh;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 0 15px 60px !important;
        overflow-x: visible;
    }
    
    .hero-left {
        padding-left: 0 !important;
        padding-right: 0;
        overflow: visible;
    }
    
    .hero-title {
        margin-left: 0 !important;
        padding-left: 0 !important;
        overflow: visible;
        word-break: normal;
        margin-top: 82px;
    }
    
    .hero-footer {
        font-size: 0.75rem;
        padding: 15px;
    }
    
    /* Navigation */
    .nav-logo {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin-top: 15px;
    }
    
    /* Typography */
    .section-label {
        font-size: 0.8rem;
    }
    
    /* Cards */
    .who-we-are-card {
        padding: 20px 15px;
    }
    
    .who-we-are-card-title {
        font-size: 1.3rem;
    }
    
    /* Frosted Section */
    .frosted-glass-section-new {
        padding: 40px 15px;
    }
    
    .frosted-section-header {
        font-size: 1.75rem;
    }
    
    /* Scheduling */
    .scheduling-section {
        padding: 40px 15px;
    }
    
    .scheduling-title {
        font-size: 1.75rem;
    }
    
    /* Footer */
    .footer-new {
        padding: 40px 15px 30px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    /* Contact Modal */
    .contact-modal-container {
        width: 95%;
        max-width: 95%;
        padding: 20px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    /* Partners */
    .partners-logos {
        gap: 15px;
    }
    
    .partner-logo {
        min-width: 100px;
        min-height: 50px;
    }
}
/* Global Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.fade-left {
    transform: translateX(-30px);
}

.reveal.fade-right {
    transform: translateX(30px);
}

.reveal.active.fade-left,
.reveal.active.fade-right {
    transform: translateX(0);
}

.reveal.zoom-in {
    transform: scale(0.95);
}

.reveal.active.zoom-in {
    transform: scale(1);
}

/* Stagger Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Hero Specific Initial Animations */
.hero-brand, .hero-title, .hero-subtitle, .hero-description-glass, .hero-footer, .nav-logo, .navbar {
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animation Classes for JS to apply */
.animate-hero-brand { animation: heroFadeDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards; }
.animate-hero-title { animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards; }
.animate-hero-desc { animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards; }
.animate-hero-footer { animation: heroFadeIn 0.8s ease 0.8s forwards; }
.animate-navbar { animation: heroFadeDown 0.8s ease 0s forwards; }
.animate-logo { animation: heroFadeIn 0.8s ease 0.2s forwards; }


/* Our Team Section */
.our-team-section {
    padding: 120px 20px;
    /* Lighter background with purple abstract theme */
    background: 
        radial-gradient(circle at 15% 15%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(167, 139, 250, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #13111c 0%, #1f1d2e 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle animated glow - updated to purple */
.our-team-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    animation: rotateBackground 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.our-team-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.our-team-header {
    text-align: left;
    max-width: 100%;
    margin: 0 0 80px 0;
}

.our-team-header .section-label {
    color: #94a3b8; /* Lighter grey for dark background */
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.our-team-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 400; /* Regular weight like the image */
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.our-team-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
}

.our-team-grid {
    display: grid;
    /* Adjusted to fit 5 items in one row on desktop */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; /* Reduced gap to fit more items */
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px; /* Slightly reduced radius for smaller cards */
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px; /* Reduced height to maintain aspect ratio with narrower width */
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: grayscale(100%);
}

.team-card:hover .team-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-socials {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card:hover .team-socials {
    opacity: 1;
    transform: translateY(0);
}

.team-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.team-social-link:hover {
    background: #1e90ff;
    color: #fff;
}

.team-info {
    padding: 30px;
}

.team-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    color: #1e90ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .our-team-section {
        padding: 80px 20px;
    }
    
    .our-team-title {
        font-size: 2.5rem;
    }
}
