/* CSS Reset and Base Styles */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #F9F6F0;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(249, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

/* Navigation Menu */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #333;
}

.dropdown .fas {
    font-size: 0.7rem;
}

/* Navigation Actions */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-call-btn {
    background-color: #F5C842;
    color: #333;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.book-call-btn:hover {
    background-color: #F1C232;
    transform: translateY(-1px);
}

.language-selector {
    color: #666;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Mobile Menu Toggle */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger Animation */

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */

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

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

/* Dropdown Menus */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

/* All Dropdown Menus */

.capabilities-dropdown,
.strategy-dropdown,
.acquisition-dropdown,
.optimisation-dropdown,
.integration-dropdown,
.training-dropdown {
    width: 800px;
    max-width: 90vw;
}

.capabilities-card {
    padding: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-item:hover {
    color: #F5C842;
}

.service-item i {
    width: 20px;
    color: #F5C842;
    font-size: 1rem;
}

.capabilities-actions {
    margin-bottom: 2rem;
    text-align: center;
}

.all-services-btn {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.all-services-btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.contact-section {
    background-color: #F5E56B;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.contact-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.book-call-now-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.book-call-now-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
}

.contact-illustration {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.paper-plane {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5C842;
    font-size: 1.5rem;
}

/* Mobile Responsive for All Dropdown Menus */

@media (max-width: 768px) {
    .capabilities-dropdown,
    .strategy-dropdown,
    .acquisition-dropdown,
    .optimisation-dropdown,
    .integration-dropdown,
    .training-dropdown {
        width: 95vw;
        left: 2.5vw;
        transform: none;
    }
    .capabilities-card {
        padding: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .service-column {
        gap: 0.75rem;
    }
    .service-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    .contact-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .contact-text {
        text-align: left;
    }
    .book-call-now-btn {
        align-self: stretch;
        justify-content: center;
    }
    .contact-illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .capabilities-card {
        padding: 1rem;
    }
    .service-item {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    .all-services-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    .contact-section {
        padding: 1rem;
    }
    .contact-text h3 {
        font-size: 1rem;
    }
    .contact-text p {
        font-size: 0.8rem;
    }
    .book-call-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
}

/* Hero Section */

.hero-section {
    padding: 3rem 0 1rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

/* Hero Text Content with Animations */

.hero-text {
    padding-right: 2rem;
    animation: slideInFromLeft 1s ease-out;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tag-line {
    width: 3rem;
    height: 2px;
    background-color: #F5C842;
    animation: expandWidth 1.2s ease-out 0.5s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-description p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out both;
}

.hero-description p:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-description p:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-description p:nth-child(3) {
    animation-delay: 1s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.cta-button {
    background-color: #F5C842 !important;
    color: #333 !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: #F1C232 !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 200, 66, 0.3);
}

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

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

.cta-button.secondary {
    margin-top: 1rem;
}

/* Social Links */

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    animation: bounceIn 0.6s ease-out both;
}

.social-link:nth-child(1) {
    animation-delay: 1.4s;
}

.social-link:nth-child(2) {
    animation-delay: 1.5s;
}

.social-link:nth-child(3) {
    animation-delay: 1.6s;
}

.social-link:nth-child(4) {
    animation-delay: 1.7s;
}

.social-link:nth-child(5) {
    animation-delay: 1.8s;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(245, 200, 66, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #F5C842;
    color: #333;
    transform: translateY(-2px);
}

/* Hero Visual Section with Animations */

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInFromRight 1.2s ease-out 0.3s both;
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 700px;
    animation: scaleInCenter 1s ease-out 0.5s both;
}

/* Design Tools Icons with Enhanced Animations */

.design-tools {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    pointer-events: none;
}

.tool-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: toolFloat 6s ease-in-out infinite;
}

.tool-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.tool-icon.figma {
    background-color: #fff;
    top: 60px;
    left: 50px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite, slideInTool 0.8s ease-out 1s both;
}

.figma-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #F24E1E, #A259FF, #1ABCFE, #0ACF83);
    border-radius: 6px;
    animation: gradientSpin 4s linear infinite;
}

.tool-icon.adobe-ae {
    background-color: #9999FF;
    color: white;
    top: 20px;
    right: 30px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite 1s, slideInTool 0.8s ease-out 1.2s both;
}

.tool-icon.adobe-ai {
    background-color: #FF9A00;
    color: white;
    bottom: 90px;
    right: 20px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite 2s, slideInTool 0.8s ease-out 1.4s both;
}

.tool-icon.adobe-ps {
    background-color: #31A8FF;
    color: white;
    bottom: 20px;
    right: 70px;
    z-index: 16;
    animation: toolFloat 6s ease-in-out infinite 3s, slideInTool 0.8s ease-out 1.6s both;
}

/* Main Desktop Mockup */

.screen-mockup {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 300px;
    z-index: 10;
}

.screen-frame {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.screen-frame::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background-color: #333;
    border-radius: 0 0 20px 20px;
}

.screen-frame::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.screen-header {
    position: absolute;
    top: 8px;
    left: 12px;
    z-index: 15;
}

.dots {
    display: flex;
    gap: 5px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.dots span:first-child {
    background-color: #ff5f57;
}

.dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.dots span:last-child {
    background-color: #28ca42;
}

.screen-body {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.content-section {
    flex: 1;
    max-width: 220px;
}

.content-section h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.content-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.screen-btn {
    background-color: white;
    color: #6366f1;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.character-illustration {
    width: 120px;
    height: 120px;
    position: relative;
    margin-left: 2rem;
}

.character {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character::before {
    content: '👤';
    font-size: 3rem;
    color: white;
}

/* Mobile Screens */

.mobile-screens {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
}

.mobile-screen {
    position: absolute;
    width: 100px;
    height: 180px;
    background-color: #1a1a1a;
    border-radius: 25px;
    padding: 3px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mobile-screen.left {
    left: 0;
    top: -20px;
    z-index: 9;
}

.mobile-screen.right {
    left: 60px;
    top: 40px;
    z-index: 8;
}

.mobile-content {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.mobile-content.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.mobile-content.dark {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.mobile-header {
    height: 25px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 8px;
    border-radius: 6px;
    margin-top: 15px;
}

.mobile-body {
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 8px;
    border-radius: 6px;
    margin-top: 15px;
}

/* Decorative Elements */

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

.circle {
    position: absolute;
    border: 2px solid rgba(245, 200, 66, 0.2);
    border-radius: 50%;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 8%;
    animation: float 8s ease-in-out infinite;
    border-style: dashed;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
    opacity: 0.6;
}

.circle-3 {
    width: 120px;
    height: 120px;
    top: 65%;
    right: 15%;
    animation: float 12s ease-in-out infinite;
    border-style: dotted;
}

/* Wireframe Globe Element */

.decorative-circles::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 25%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(245, 200, 66, 0.15);
    border-radius: 50%;
    z-index: 2;
}

.decorative-circles::after {
    content: '';
    position: absolute;
    bottom: 12%;
    right: 27%;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(245, 200, 66, 0.1);
    border-radius: 50%;
    z-index: 2;
}

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

/* Hero Section Animation Keyframes */

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes scaleInCenter {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandWidth {
    0% {
        width: 0;
    }
    100% {
        width: 3rem;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes toolFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes slideInTool {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes gradientSpin {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Responsive Design */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-visual {
        height: 400px;
    }
    .screen-mockup {
        width: 300px;
        height: 200px;
    }
    .mobile-screen {
        width: 80px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-menu.mobile-active {
        right: 0;
    }
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #333;
        border-bottom: none;
    }
    .nav-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    /* Mobile dropdown adjustments */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        margin-top: 0;
        padding: 1rem 0;
        border-radius: 0;
    }
    .capabilities-dropdown {
        width: 100%;
        max-height: none;
    }
    .services-grid {
        flex-direction: column;
        gap: 0;
    }
    .service-column {
        width: 100%;
    }
    .service-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #e0e0e0;
    }
    .capabilities-actions {
        padding: 1rem;
        border-top: 1px solid #e0e0e0;
    }
    .contact-section {
        display: none;
    }
    .hero-section {
        padding: 6rem 0 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description p {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-visual {
        height: 300px;
    }
    .screen-mockup {
        width: 250px;
        height: 160px;
    }
    .tool-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .mobile-screen {
        width: 60px;
        height: 100px;
    }
    .container {
        padding: 0 1rem;
    }
    .navbar {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 7rem 0 1rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .service-tag {
        font-size: 0.75rem;
    }
    .tag-line {
        width: 2rem;
    }
    .hero-visual {
        height: 250px;
    }
    .screen-mockup {
        width: 200px;
        height: 130px;
    }
    .content-section h3 {
        font-size: 1rem;
    }
    .content-section p {
        font-size: 0.7rem;
    }
    .character-illustration {
        width: 60px;
        height: 60px;
    }
}

/* Bottleneck Section */

.bottleneck-section {
    padding: 4rem 0;
    background-color: #F9F6F0;
}

.bottleneck-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bottleneck-text {
    max-width: 550px;
}

.bottleneck-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
    margin-bottom: 2rem;
    white-space: nowrap;
}

.bottleneck-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.plans-button {
    background-color: #F5C842;
    color: #333;
    border: 2px solid #F5C842;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    text-decoration: none;
}

a.plans-button {
    color: #333;
    text-decoration: none;
}

.plans-button:hover {
    background-color: #E6B33C;
    border-color: #E6B33C;
    color: #333;
    transform: translateY(-2px);
}

/* Company Logos */

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.company-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%);
}

/* Responsive Design for Bottleneck Section */

@media (max-width: 1024px) {
    .bottleneck-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .bottleneck-title {
        font-size: 2.2rem;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .bottleneck-section {
        padding: 3rem 0;
    }
    .bottleneck-title {
        font-size: 2rem;
    }
    .bottleneck-description {
        font-size: 1rem;
    }
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .company-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .bottleneck-title {
        font-size: 1.8rem;
    }
    .bottleneck-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .plans-button {
        margin: 0 auto;
        align-self: center;
    }
    .logos-grid {
        gap: 1.5rem;
    }
    .company-logo {
        max-width: 80px;
        max-height: 40px;
    }
}

/* Services Section */

.services-section {
    padding: 5rem 0;
    background-color: #F9F6F0;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Carousel Container */

.services-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
}

.services-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 1rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

/* Carousel Navigation Arrows */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F5C842;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background-color: #FF6B35;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-arrow-left {
    left: -25px;
}

.carousel-arrow-right {
    right: -25px;
}

.service-card {
    min-width: 280px;
    height: 320px;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gray-card {
    background-color: #E5E7EB;
}

.dark-card {
    background-color: #374151;
}

.yellow-card {
    background-color: #FDE047;
}

.light-gray-card {
    background-color: #F3F4F6;
}

.service-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-image {
    max-width: 180px;
    max-height: 180px;
    width: 100%;
    height: auto;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-align: left;
}

.dark-card .service-name {
    color: white;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

.all-services-button {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.all-services-button:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Services Section */

@media (max-width: 1024px) {
    .services-title {
        font-size: 2.5rem;
    }
    .service-card {
        min-width: 260px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    .services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .services-carousel-container {
        padding: 0 1rem;
    }
    .carousel-arrow {
        display: none;
        /* Hide arrows on mobile, use touch scrolling */
    }
    .services-carousel {
        gap: 1rem;
        padding: 0 0 1rem 0;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
    }
    .service-card {
        min-width: 240px;
        height: 280px;
        padding: 1.5rem;
    }
    .service-name {
        font-size: 1.1rem;
    }
    .service-image {
        max-width: 150px;
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .services-carousel {
        padding: 0 0.5rem 2rem;
        gap: 1rem;
    }
    .service-card {
        min-width: 220px;
        height: 260px;
    }
    .services-title {
        font-size: 1.8rem;
    }
}

/* Works Section */

.works-section {
    padding: 5rem 0 0 0;
    background-color: #F9F6F0;
}

.works-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.large-item {
    grid-row: span 2;
}

.medium-item {
    grid-column: span 1;
    grid-row: span 1;
}

.small-item {
    grid-column: span 1;
    grid-row: span 1;
}

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

.work-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.work-title-text {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

/* Specific item styling */

.brand-item {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.debt-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.debt-item .work-title-text {
    color: white;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
}

.app-item {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.tech-item {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.minutes-item {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.minutes-item .work-title-text {
    color: white;
    font-size: 1.8rem;
}

.web-item {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.mobile-item {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.portfolio-item {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

/* Responsive Design for Works Section */

@media (max-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .large-item {
        grid-row: span 1;
    }
    .works-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .works-section {
        padding: 4rem 0 0 0;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
        gap: 1rem;
    }
    .large-item,
    .medium-item,
    .small-item {
        grid-column: span 1;
        grid-row: span 1;
    }
    .works-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .work-title-text {
        font-size: 1.5rem;
    }
    .debt-item .work-title-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .works-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 160px);
    }
    .works-title {
        font-size: 1.8rem;
    }
    .work-title-text {
        font-size: 1.3rem;
    }
    .debt-item .work-title-text {
        font-size: 1.8rem;
    }
}

/* Process Flow Section */

.process-section {
    padding: 5rem 0 0 0;
    background-color: #F9F6F0;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.process-text {
    max-width: 400px;
}

.process-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.see-plans-button {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

a.see-plans-button {
    color: #333;
    text-decoration: none;
}

.see-plans-button:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.process-flow {
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: 60px;
    background-color: #F5C842;
    z-index: 1;
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #F5C842;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.step-icon i {
    font-size: 1.2rem;
    color: #333;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design for Process Section */

@media (max-width: 1024px) {
    .process-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .process-title {
        font-size: 2.4rem;
    }
    .process-flow {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 3rem 0 0 0;
    }
    .process-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .process-step {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .process-step:not(:last-child)::after {
        left: 17px;
        height: 50px;
    }
    .step-icon {
        width: 35px;
        height: 35px;
    }
    .step-icon i {
        font-size: 1rem;
    }
    .step-title {
        font-size: 1.1rem;
    }
    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .works-section {
        padding: 3rem 0 0 0;
    }
    .process-section {
        padding: 2rem 0 0 0;
    }
    .process-title {
        font-size: 1.8rem;
    }
    .process-step {
        margin-bottom: 1.8rem;
    }
    .step-title {
        font-size: 1rem;
    }
    .step-description {
        font-size: 0.85rem;
    }
}

/* Flexibility Section */

.flexibility-section {
    padding: 0 0 5rem 0;
    background-color: #F9F6F0;
}

.flexibility-content {
    background-color: #F2EFE6;
    border-radius: 30px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.flexibility-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.testimonials {
    position: relative;
    height: 300px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: absolute;
    max-width: 280px;
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

.testimonial-card:nth-child(1) {
    top: 0;
    left: 20px;
    transform: rotate(-2deg);
}

.testimonial-card:nth-child(2) {
    top: 80px;
    left: 0;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    transform: rotate(1deg);
}

.testimonial-card:nth-child(3) {
    top: 160px;
    left: 40px;
    transform: rotate(-1deg);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.testimonial-content {
    flex: 1;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.testimonial-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.testimonial-link {
    width: 25px;
    height: 25px;
    background-color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.testimonial-check {
    width: 25px;
    height: 25px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

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

.benefits-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Flexibility Section */

@media (max-width: 1024px) {
    .flexibility-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .flexibility-title {
        font-size: 2.4rem;
        text-align: center;
        max-width: none;
    }
    .testimonials {
        height: 280px;
    }
    .testimonial-card:nth-child(1) {
        top: 0;
        left: 10px;
        transform: rotate(-1deg);
    }
    .testimonial-card:nth-child(2) {
        top: 70px;
        left: 50px;
        transform: rotate(1deg);
    }
    .testimonial-card:nth-child(3) {
        top: 140px;
        left: 20px;
        transform: rotate(-0.5deg);
    }
}

@media (max-width: 768px) {
    .flexibility-section {
        padding: 4rem 0;
    }
    .flexibility-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    .flexibility-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .testimonials {
        height: 250px;
    }
    .testimonial-card {
        padding: 1rem;
        gap: 0.8rem;
        max-width: 250px;
    }
    .testimonial-card:nth-child(1) {
        top: 0;
        left: 0;
        transform: rotate(-1deg);
    }
    .testimonial-card:nth-child(2) {
        top: 60px;
        left: 20px;
        transform: rotate(0.5deg);
    }
    .testimonial-card:nth-child(3) {
        top: 120px;
        left: 10px;
        transform: rotate(-0.5deg);
    }
    .testimonial-name {
        font-size: 0.85rem;
    }
    .testimonial-text {
        font-size: 0.8rem;
    }
    .benefit-item {
        padding: 1.2rem;
    }
    .benefit-title {
        font-size: 1.1rem;
    }
    .benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .flexibility-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    .flexibility-title {
        font-size: 1.8rem;
    }
    .testimonials {
        height: 220px;
    }
    .testimonial-card {
        max-width: 220px;
    }
    .testimonial-card:nth-child(1) {
        top: 0;
        left: 0;
        transform: rotate(-0.5deg);
    }
    .testimonial-card:nth-child(2) {
        top: 50px;
        left: 15px;
        transform: rotate(0.5deg);
    }
    .testimonial-card:nth-child(3) {
        top: 100px;
        left: 5px;
        transform: rotate(-0.3deg);
    }
    .benefits-area {
        gap: 1.5rem;
    }
    .benefit-title {
        font-size: 1rem;
    }
}

/* Speed and Professionalism Section */

.speed-section {
    padding: 0 0 5rem 0;
    background-color: #F9F6F0;
}

.speed-content {
    background-color: #F5E56B;
    border-radius: 30px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.speed-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.team-photos {
    position: relative;
    height: 300px;
}

.photo-card {
    position: absolute;
    width: 100px;
    height: 120px;
    background-color: white;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: scale(1.05) translateY(-5px);
}

.photo-1 {
    top: 20px;
    left: 40px;
    transform: rotate(-8deg);
}

.photo-2 {
    top: 0;
    left: 160px;
    transform: rotate(5deg);
}

.photo-3 {
    top: 120px;
    left: 20px;
    transform: rotate(3deg);
}

.photo-4 {
    top: 140px;
    left: 140px;
    transform: rotate(-5deg);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.speed-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.speed-benefit-item {
    margin-bottom: 1rem;
}

.speed-benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.speed-benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Speed Section */

@media (max-width: 1024px) {
    .speed-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .speed-title {
        font-size: 2.4rem;
        text-align: center;
        max-width: none;
    }
    .team-photos {
        height: 280px;
    }
    .photo-card {
        width: 90px;
        height: 110px;
    }
    .photo-1 {
        top: 20px;
        left: 30px;
        transform: rotate(-6deg);
    }
    .photo-2 {
        top: 0;
        left: 140px;
        transform: rotate(4deg);
    }
    .photo-3 {
        top: 110px;
        left: 15px;
        transform: rotate(2deg);
    }
    .photo-4 {
        top: 130px;
        left: 120px;
        transform: rotate(-4deg);
    }
}

@media (max-width: 768px) {
    .speed-section {
        padding: 4rem 0;
    }
    .speed-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    .speed-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .team-photos {
        height: 250px;
    }
    .photo-card {
        width: 80px;
        height: 100px;
    }
    .photo-1 {
        top: 15px;
        left: 20px;
        transform: rotate(-5deg);
    }
    .photo-2 {
        top: 0;
        left: 120px;
        transform: rotate(3deg);
    }
    .photo-3 {
        top: 100px;
        left: 10px;
        transform: rotate(2deg);
    }
    .photo-4 {
        top: 120px;
        left: 100px;
        transform: rotate(-3deg);
    }
    .speed-benefit-title {
        font-size: 1.2rem;
    }
    .speed-benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .speed-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    .speed-title {
        font-size: 1.8rem;
    }
    .team-photos {
        height: 220px;
    }
    .photo-card {
        width: 70px;
        height: 90px;
    }
    .photo-1 {
        top: 10px;
        left: 15px;
        transform: rotate(-3deg);
    }
    .photo-2 {
        top: 0;
        left: 100px;
        transform: rotate(2deg);
    }
    .photo-3 {
        top: 80px;
        left: 5px;
        transform: rotate(1deg);
    }
    .photo-4 {
        top: 100px;
        left: 85px;
        transform: rotate(-2deg);
    }
    .speed-benefit-title {
        font-size: 1.1rem;
    }
    .speed-benefit-description {
        font-size: 0.85rem;
    }
}

/* Organization and Full Control Section */

.organization-section {
    padding: 0 0 5rem 0;
    background-color: #F9F6F0;
}

.organization-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F5E56B;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
}

.organization-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.organization-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-board {
    position: relative;
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.task-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #e9ecef;
    position: relative;
}

.task-card.completed {
    border-left-color: #22c55e;
    background-color: #f0fdf4;
}

.task-card.progress {
    border-left-color: #f59e0b;
    background-color: #fffbeb;
}

.task-card.ready {
    border-left-color: #ef4444;
    background-color: #fef2f2;
}

.task-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 0.5rem;
}

.task-card.completed .task-status {
    color: #22c55e;
}

.task-card.progress .task-status {
    color: #f59e0b;
}

.task-card.ready .task-status {
    color: #ef4444;
}

.task-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.task-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.task-tools {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.tool-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.tool-icon.ai {
    background-color: #ff6600;
}

.tool-icon.ps {
    background-color: #001e36;
}

.trello-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.integration-icon {
    width: 40px;
    height: 40px;
}

.control-features {
    position: relative;
    height: 350px;
}

.feature-item {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.25rem;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item:nth-child(1) {
    top: 0;
    right: 0;
    transform: rotate(-2deg);
}

.feature-item:nth-child(2) {
    top: 80px;
    left: 20px;
    transform: rotate(1deg);
}

.feature-item:nth-child(3) {
    top: 180px;
    right: 30px;
    transform: rotate(-1deg);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Organization Section */

@media (max-width: 1024px) {
    .organization-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2.5rem;
    }
    .organization-title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
    .control-features {
        height: 300px;
    }
    .feature-item:nth-child(1) {
        top: 0;
        right: 10px;
        transform: rotate(-1deg);
    }
    .feature-item:nth-child(2) {
        top: 70px;
        left: 10px;
        transform: rotate(1deg);
    }
    .feature-item:nth-child(3) {
        top: 150px;
        right: 20px;
        transform: rotate(-1deg);
    }
}

@media (max-width: 768px) {
    .organization-section {
        padding: 4rem 0;
    }
    .organization-content {
        padding: 2rem;
        margin: 0 1rem;
        gap: 2.5rem;
    }
    .organization-title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
    .project-board {
        padding: 1.5rem;
    }
    .task-card {
        padding: 0.75rem;
    }
    .control-features {
        height: 280px;
    }
    .feature-item {
        padding: 1rem;
        max-width: 240px;
    }
    .feature-item:nth-child(1) {
        top: 0;
        right: 5px;
    }
    .feature-item:nth-child(2) {
        top: 60px;
        left: 5px;
    }
    .feature-item:nth-child(3) {
        top: 140px;
        right: 10px;
    }
    .feature-title {
        font-size: 1.1rem;
    }
    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .organization-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
        gap: 2rem;
    }
    .organization-title {
        font-size: 2rem;
    }
    .project-board {
        padding: 1rem;
    }
    .task-card {
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }
    .task-title {
        font-size: 0.9rem;
    }
    .task-description {
        font-size: 0.8rem;
    }
    .control-features {
        height: 320px;
        position: relative;
    }
    .feature-item {
        padding: 0.75rem;
        max-width: 200px;
        position: absolute;
    }
    .feature-item:nth-child(1) {
        top: 0;
        right: 0;
        transform: rotate(-1deg);
    }
    .feature-item:nth-child(2) {
        top: 80px;
        left: 0;
        transform: rotate(1deg);
    }
    .feature-item:nth-child(3) {
        top: 160px;
        right: 10px;
        transform: rotate(-1deg);
    }
    .feature-title {
        font-size: 1rem;
    }
    .feature-description {
        font-size: 0.8rem;
    }
    .trello-icon {
        top: -8px;
        right: -8px;
        padding: 6px;
    }
    .integration-icon {
        width: 32px;
        height: 32px;
    }
}

/* CTA Section */

.cta-section {
    padding: 0 0 5rem 0;
    background-color: #F9F6F0;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F5C842;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.cta-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    max-width: 400px;
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 300px;
}

.video-call-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.video-call-image {
    width: 450px;
    height: 300px;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    border-radius: 15px;
}

.video-call-image:hover {
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
}

.call-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: white;
    font-size: 1.4rem;
    animation: sparkle 2.5s infinite ease-in-out;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sparkle-1 {
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 65%;
    left: 20%;
    animation-delay: 0.8s;
}

.sparkle-3 {
    top: 35%;
    right: 15%;
    animation-delay: 1.6s;
}

.sparkle-4 {
    top: 80%;
    right: 40%;
    animation-delay: 2.4s;
}

.sparkle-5 {
    top: 25%;
    left: 10%;
    animation-delay: 3.2s;
}

@keyframes sparkle {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design for CTA Section */

@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2.5rem;
    }
    .cta-title {
        font-size: 2.8rem;
    }
    .cta-description {
        max-width: none;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 0 0 4rem 0;
    }
    .cta-content {
        padding: 2rem;
        margin: 0 1rem;
        gap: 2.5rem;
    }
    .cta-title {
        font-size: 2.4rem;
        margin-bottom: 1.25rem;
    }
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .video-call-image {
        width: 350px;
        height: 233px;
        display: block;
    }
    .cta-visual {
        display: flex !important;
        justify-content: center;
        align-items: center;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .cta-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
        gap: 2rem;
    }
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .video-call-image {
        width: 280px;
        height: 187px;
        display: block;
        margin: 0 auto;
    }
    .cta-visual {
        display: flex !important;
        justify-content: center;
        align-items: center;
        min-height: 200px;
        width: 100%;
    }
    .video-call-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .sparkle {
        font-size: 1.2rem;
    }
}

/* Policy Page Styles */

.policy-section {
    padding: 8rem 2rem 4rem 2rem;
    background-color: #F9F6F0;
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.policy-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #F5C842;
    padding-bottom: 0.5rem;
}

.policy-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
    margin: 1.5rem 0 0.75rem 0;
}

.policy-text p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.policy-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.policy-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-details {
    background-color: #F9F6F0;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

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

.contact-item i {
    color: #F5C842;
    width: 20px;
}

.contact-form-link {
    text-align: center;
    margin: 2rem 0;
}

.policy-acknowledgment {
    background-color: #FFF3CD;
    border: 1px solid #F5C842;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}

.policy-acknowledgment p {
    margin: 0;
    color: #856404;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 6rem 1rem 4rem 1rem;
    }
    .policy-content {
        padding: 2rem;
    }
    .policy-title {
        font-size: 2.2rem;
    }
    .policy-text h2 {
        font-size: 1.3rem;
    }
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Footer Section */

.footer-section {
    background-color: #2D3748;
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-address {
    color: #A0AEC0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-address p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 24px;
    height: 24px;
}

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

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-continued {
    margin-top: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-email {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.contact-phone {
    color: #A0AEC0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-cta-button {
    background-color: #F5C842;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.footer-cta-button:hover {
    background-color: #ECC94B;
    transform: translateY(-1px);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.footer-badge {
    width: 30px;
    height: 30px;
}

/* Mobile Footer Spacing */

@media (max-width: 768px) {
    .footer-cta-button {
        margin-top: 2rem;
        margin-bottom: 2rem;
        clear: both;
        display: block;
    }
    .footer-badges {
        margin-top: 2rem;
    }
    .contact-info {
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }
    .footer-contact-info {
        padding-bottom: 3rem;
        position: relative;
    }
    .contact-email {
        margin-bottom: 0rem;
        display: block;
    }
}

.footer-partners {
    padding: 2rem 0;
    border-top: 1px solid #4A5568;
    border-bottom: 1px solid #4A5568;
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #4A5568;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.footer-copyright p {
    color: #A0AEC0;
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Design for Footer */

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    .footer-company {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
    .footer-contact {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    .partner-logos {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 0 1rem;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-company {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
    .footer-copyright {
        align-items: center;
    }
    .partner-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1rem 0;
    }
    .footer-content {
        padding: 0 0.5rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-company {
        align-items: center;
    }
    .footer-contact {
        align-items: center;
    }
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    .partner-logos {
        gap: 1rem;
        justify-content: center;
    }
    .partner-logo {
        height: 20px;
    }
    .footer-badge {
        width: 24px;
        height: 24px;
    }
}

/* Mobile Navigation Responsive Styles */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(249, 246, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.mobile-active {
        right: 0;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    /* Mobile dropdown menu adjustments */
    .dropdown {
        position: relative;
    }
    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none !important;
        background: #f8f8f8 !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-height: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow-y: auto !important;
        border-left: 3px solid #F5C842 !important;
    }
    .nav-menu .dropdown:hover .dropdown-menu,
    .nav-menu .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .nav-menu.mobile-active .dropdown:hover .dropdown-menu,
    .nav-menu.mobile-active .dropdown .dropdown-menu {
        display: none !important;
    }

    .nav-menu.mobile-active .dropdown.active .dropdown-menu {
        display: block !important;
    }


    .capabilities-dropdown,
    .strategy-dropdown,
    .acquisition-dropdown,
    .optimisation-dropdown,
    .integration-dropdown,
    .training-dropdown {
        width: 100%;
        max-height: none;
    }
    .services-grid {
        flex-direction: column;
        gap: 0;
    }
    .service-column {
        width: 100%;
    }
    .service-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #e0e0e0;
        margin: 0;
    }
    .capabilities-actions {
        padding: 1rem;
        border-top: 1px solid #e0e0e0;
        margin: 0;
    }
    .contact-section {
        display: none;
    }
    /* Reduce spacing between mobile menu categories */
    .nav-menu li {
        margin-bottom: 0;
    }
    .nav-menu .dropdown {
        margin-bottom: 0;
    }
    .nav-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        padding: 4rem 1.5rem 2rem;
    }
}


.breadcrumb {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb i {
    color: #999;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: #F5C842;
    font-weight: 600;
}