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

:root {
    --primary-color: #000000;
    --secondary-color: #FF6600;
    --accent-color: #FF9933;
    --text-color: #000000;
    --background-light: #FFFFFF;
    --background-dark: #000000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 60px;
}

html{
    background-color: #000000;
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.9)
    );
    border-bottom: 1px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    gap: 20px;
}

.desktop-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Nav CTA Button */
.nav-cta {
    background-color: var(--secondary-color);
    color: #FFFFFF !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-left: auto;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background-color: #e55a00;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

.desktop-only {
    display: inline-block;
}

@media screen and (max-width: 926px) {
    .desktop-only {
        display: none;
    }
}

/* Mobile CTA calendar icon */
.nav-cta-mobile {
    display: none;
    color: #FFFFFF !important;
    font-size: 1.3rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-cta-mobile:visited {
    color: #FFFFFF !important;
}

.nav-cta-mobile:hover {
    opacity: 0.7;
    color: #FFFFFF !important;
}

/* Mobile nav actions wrapper */
.mobile-nav-actions {
    display: none;
    align-items: center;
    gap: 18px;
}

@media screen and (max-width: 926px) {
    .nav-cta-mobile {
        display: block;
    }
    .mobile-nav-actions {
        display: flex;
    }
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 999;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    right: -100%;
    width: 200px;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.9)
    );
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transition: right 0.3s ease-in-out;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: block;
    right: 0;
}

/* Add overlay when menu is active */
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu.active::before {
    opacity: 1;
    visibility: visible;
}

.mobile-menu li {
    list-style: none;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.3s ease forwards;
}

.mobile-menu li:last-child {
    margin-bottom: 0;
}

.mobile-menu li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: block;
    padding: 6px 0;
}

.mobile-menu li a:hover {
    color: var(--secondary-color);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 30px;
    margin-right: 10px;
}





/* Contact Section */
footer {
    background-color: var(--background-dark);
    color: white;
    padding: 80px 0 0 0;
}



.contact-info {
    padding: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: var(--secondary-color);
}

/* Approach Section Styles */
.approach-section {
    background-color: var(--background-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.05), transparent 60%);
    z-index: 0;
}

.approach-section .container {
    position: relative;
    z-index: 1;
}

.approach-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.approach-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.approach-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.approach-headline {
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0px;
}

.highlight {
    color: var(--text-color);
}

.highlight-orange {
    color: var(--secondary-color);
    font-weight: 700;
}

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

.approach-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 4px solid var(--secondary-color);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.card-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
}

.card-details {
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.feature-list {
    list-style: none;
    margin-bottom: 15px;
}

.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #000000;
    font-weight: 500;
}

.feature-list li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 4px;
}

.feature-text {
    color: #000000;
    font-weight: 400;
}

.interactive-element {
    position: relative;
    margin-top: 15px;
}

.feature-toggle {
    background: rgba(255, 102, 0, 0.1);
    border: none;
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.feature-toggle:hover {
    background: rgba(255, 102, 0, 0.2);
}

.feature-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
    margin-top: 0;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 10px;
}

.feature-details p {
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

.interactive-element.active .feature-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* Statistics bar */
.approach-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    color: white;
    padding: 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 102, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.approach-cta {
    text-align: center;
    margin-top: 40px;
}

/* Animation for approach cards */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}






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

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.logo-container {
    display: flex;
    align-items: center;
    text-align: center;
}

.logo-container a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
}

.logo-img {
    width: auto;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 30px;
    margin-right: 10px;
}



nav ul {
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    min-height: 100vh; /* Exact screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    padding: 0;
    margin-top: -4rem; /* Changed from fixed pixels to rem */
}

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

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85), 
        rgba(255, 102, 0, 0.65)); /* Updated to match new black and orange theme */
}

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

.hero .container {
    position: relative;
    z-index: 2;
    padding: 3.5% 0 2%; /* Changed from fixed pixels to percentage */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 3rem; /* Changed from rem to vw for viewport-based sizing */
    margin-bottom: 0.5rem;
    max-width: 80%; /* Changed from fixed pixels to percentage */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 2rem; /* Changed from fixed pixels to vh */
    text-shadow: 0.1vw 0.1vw 0.2vw rgba(0, 0, 0, 0.3); /* Changed from fixed pixels to vw */
}



.hero-tagline {
    font-size: 1.7rem; /* Changed from rem to vw */
    margin-bottom: 0;
    text-align: center;
    max-width: 90%; /* Changed from fixed pixels to percentage */
    margin-left: auto;
    margin-right: auto;
    color: var(--light-color);
    text-shadow: 0.05vw 0.05vw 0.1vw rgba(0, 0, 0, 0.3); /* Changed from fixed pixels to vw */
    font-weight: 300;
}

.hero-grid {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 2%; /* Changed from fixed pixels to percentage */
    max-width: 90%; /* Changed from fixed pixels to percentage */
    margin: 1rem auto 0;
    align-items: center;
    /* FLEX:1 WAS SECOND PROBLEM IN SAFARI VISUAL GLITCH, CAUSED BY BROWSER INCOMPATIBILITY */
    /* flex: 1; */
}

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

.hero-image-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5vh; /* Changed from fixed pixels to vh */
    margin-top: -3vh; /* Changed from fixed pixels to vh */
}

/* Profile Links in Hero Section */
.hero-profile-links {
    display: flex;
    gap: 1.5vw; /* Changed from fixed pixels to vw */
    margin-top: 1.5vh; /* Changed from fixed pixels to vh */
}

.profile-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5em 1em; /* Changed from fixed pixels to em */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.profile-link i {
    margin-right: 0.5em; /* Changed from fixed pixels to em */
}

.profile-link.linkedin {
    color: white;
}

.profile-link.linkedin:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.profile-link.resume {
    color: white;
}

.profile-link.resume:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.headshot-container {
    flex-shrink: 0;
    width: 10vw; /* Changed from fixed pixels to vw */
    height: 10vw; /* Changed from fixed pixels to vw */
    min-width: 120px; /* Added min-width for small screens */
    min-height: 120px; /* Added min-height for small screens */
    border-radius: 50%;
    overflow: hidden;
    border: 0.2vw solid rgba(255, 255, 255, 0.3); /* Changed from fixed pixels to vw */
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2); /* Changed from fixed pixels to vw */
    margin-bottom: 0.5vh; /* Changed from fixed pixels to vh */
    position: relative;
    top: 2vh; /* Changed from fixed pixels to vh */
}

.headshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-description {
    flex: 1;
    max-width: 90%; /* Changed from fixed pixels to percentage */
    text-align: left;
    position: relative;
    margin-bottom: 4vh; /* Changed from rem to vh */
    background: rgba(255, 255, 255, 0.15);
    padding: 2em; /* Changed from rem to em */
    border-radius: 1vw; /* Changed from fixed pixels to vw */
    backdrop-filter: blur(8px);
    display: inline-block;
    width: auto;
}

/* Thought bubbles */
.thought-bubbles {
    position: absolute;
    top: 1.5vh; /* Changed from fixed pixels to vh */
    right: -10vw; /* Changed from fixed pixels to vw */
    z-index: 5;
    width: 9vw; /* Changed from fixed pixels to vw */
    height: 6vw; /* Changed from fixed pixels to vw */
}

.thought-bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: float 5s ease-in-out infinite, pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.bubble-1 {
    width: 0.9vw; /* Changed from fixed pixels to vw */
    height: 0.9vw; /* Changed from fixed pixels to vw */
    right: 0.4vw; /* Changed from fixed pixels to vw */
    top: 2.6vh; /* Changed from fixed pixels to vh */
    animation-delay: 0.3s;
}

.bubble-2 {
    width: 1.3vw; /* Changed from fixed pixels to vw */
    height: 1.3vw; /* Changed from fixed pixels to vw */
    right: 1.8vw; /* Changed from fixed pixels to vw */
    top: 1.8vh; /* Changed from fixed pixels to vh */
    animation-delay: 0.6s;
}

.bubble-3 {
    width: 1.8vw; /* Changed from fixed pixels to vw */
    height: 1.8vw; /* Changed from fixed pixels to vw */
    right: 3.8vw; /* Changed from fixed pixels to vw */
    top: 1.1vh; /* Changed from fixed pixels to vh */
    animation-delay: 0.9s;
}

.bubble-4 {
    width: 2.2vw; /* Changed from fixed pixels to vw */
    height: 2.2vw; /* Changed from fixed pixels to vw */
    right: 6vw; /* Changed from fixed pixels to vw */
    top: 0.4vh; /* Changed from fixed pixels to vh */
    animation-delay: 1.2s;
}

.hero-description p {
    font-size: 2vw;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: white;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: white;
    padding: 10px 24px;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-button.primary i {
    font-size: 0.85em;
    transition: transform 0.3s ease;
    position: relative;
    top: 1px;
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover i {
    transform: translateX(4px);
}

/* Hero Bottom Section */
.hero-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin-top: 0.1vh; /* Changed from fixed pixels to vh */
    max-width: 90%; /* Changed from fixed pixels to percentage */
    margin-left: auto;
    margin-right: auto;
    gap: 4vw; /* Changed from fixed pixels to vw */
}

/* AWS Partner Logo - Hero Section */
.hero-bottom .aws-partner-logo {
    max-width: 25vw; /* Changed from fixed pixels to vw */
    height: auto;
    opacity: 1;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
}

.aws-partner-logo:hover {
    opacity: 1;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-button.secondary i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-button.secondary:hover i {
    transform: translateY(4px);
}

/* Service Bubbles */
.service-bubbles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2vw; /* Changed from fixed pixels to vw */
    margin-top: 3vh; /* Changed from fixed pixels to vh */
    margin-bottom: 2rem;
    max-width: 90%; /* Changed from fixed pixels to percentage */
    margin-left: auto;
    margin-right: auto;
}

.service-bubble {
    position: relative;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.service-bubble:nth-child(2) {
    animation-delay: 1s;
}

.service-bubble:nth-child(3) {
    animation-delay: 2s;
}

.service-bubble:nth-child(4) {
    animation-delay: 1.5s;
}

.service-bubble:nth-child(5) {
    animation-delay: 0.5s;
}

.bubble-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    height: 100%;
    width: 100%;
}

.bubble-content i {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.bubble-content span {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.service-bubble:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

















/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title.light {
    color: white;
}

/* Dark Section (Advantages) */
.dark-section {
    background-color: inherit;
    color: var(--text-color);
}

.dark-section .section-title {
    color: var(--primary-color);
}

.dark-section .figure-card {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dark-section .figure-stat {
    color: var(--text-color);
}

.dark-section .expanded-content {
    background: var(--primary-color);
    color: white;
}

/* White Image Section */
.white-image-section {
    background-color: #f8fafc; /* Very light blue */
    padding: 80px 0;
}

.full-width-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Demo Section Updates */
.demo-section .centered-text {
    font-size: 1.8em;
    max-width: 800px;
    margin: 10px auto;
}

.demo-container.part-2 {
    position: relative;
}

.next-section-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
    z-index: 10; /* Ensure arrow is above other content */
}

.next-section-arrow:hover {
    transform: translateX(-50%) translateY(5px);
}

.next-section-arrow i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Team Section */
.team-section {
    background-color: white;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 3px solid var(--accent-color);
}



/* Contact Section Updates */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-item p {
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}





.headshot-container {
    margin: 0 auto;
}



