/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000;
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 50%, #f0f2ff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.5s ease;
    opacity: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav.scrolled {
    opacity: 0;
    pointer-events: none;
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #232afb;
    display: flex;
    align-items: center;
}

.logo img {
    display: inline-block;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    color: #232afb;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #232afb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover:not(.nav-cta) {
    color: #4046fc;
    opacity: 1;
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: #232afb;
    color: #fff !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(35, 42, 251, 0.3);
    font-weight: 600;
    border: 2px solid #232afb;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #fff;
    color: #232afb !important;
    border-color: #232afb;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(35, 42, 251, 0.5);
    opacity: 1 !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #232afb;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #232afb 0%, #3a40fc 25%, #5056fd 50%, #656bfd 75%, #7a7ffe 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-hero.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-hero.secondary:hover {
    background: #fff;
    color: #232afb;
    border-color: #fff;
}

/* Hero Pattern - Professional Geometric */
.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pattern-element {
    position: absolute;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
}

.p1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: 10%;
    transform: rotate(45deg);
    animation: subtleFloat 20s ease-in-out infinite;
}

.p2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    transform: rotate(30deg);
    animation: subtleFloat 25s ease-in-out infinite;
    animation-delay: -5s;
}

.p3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 15%;
    transform: rotate(60deg);
    animation: subtleFloat 22s ease-in-out infinite;
    animation-delay: -10s;
}

.p4 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: 15%;
    transform: rotate(20deg);
    animation: subtleFloat 28s ease-in-out infinite;
    animation-delay: -15s;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-30px) rotate(50deg);
        opacity: 0.12;
    }
}

/* Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #7a7ffe 0%, #5d62fd 50%, #4046fc 100%);
    border-radius: 2px;
}

/* Work */
.work {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.work::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 127, 254, 0.15) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    border-radius: 50%;
    pointer-events: none;
}

.work::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(180, 231, 255, 0.15) 0%, transparent 70%);
    bottom: 15%;
    left: 8%;
    border-radius: 50%;
    pointer-events: none;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.work-item {
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: block;
    text-decoration: none;
    color: inherit;
}

.work-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.08);
}

.work-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #000;
}

.work-info p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Services */
.services {
    background: linear-gradient(180deg, #fafafa 0%, #fff9f5 100%);
    position: relative;
}

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

.service-item {
    position: relative;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 98, 253, 0.2) 0%, rgba(122, 127, 254, 0.2) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    line-height: 1.7;
}

/* Recognition */
.recognition {
    background: #fff;
}

.recognition-badge {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(93, 98, 253, 0.3) 0%, rgba(122, 127, 254, 0.3) 100%);
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.badge-icon {
    font-size: 3rem;
}

.recognition-badge h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.recognition-badge p {
    color: #666;
}

.featured h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logos img {
    max-height: 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
}

/* Infinite Scroll Animation */
.infinite-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.infinite-scroll-track {
    display: flex;
    gap: 6rem;
    align-items: center;
    animation: infiniteScroll 30s linear infinite;
    width: max-content;
}

.infinite-scroll-track img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.infinite-scroll-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
}

.infinite-scroll-track:hover {
    animation-play-state: paused;
}

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

/* Design Thinking Section */
.design-thinking {
    background: linear-gradient(135deg, #232afb 0%, #4046fc 50%, #5d62fd 100%);
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.design-thinking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.thinking-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.thinking-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -2px;
    max-width: 100%;
    margin: 0 0 4rem 0;
    color: #fff;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0 1.5rem 0;
    letter-spacing: -3px;
}

.step-title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.step-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.2rem 0;
    line-height: 1.5;
}

.step-description {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.step-services {
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Philosophy */
.philosophy {
    background: linear-gradient(135deg, #f5f6ff 0%, #eef0ff 100%);
    padding: 8rem 2rem;
    position: relative;
}

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

.philosophy-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
    color: #232afb;
}

.philosophy-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Sister Concerns */
.sister-concerns {
    background: #fff;
    position: relative;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.concern-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(35, 42, 251, 0.05) 0%, rgba(93, 98, 253, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.concern-item:hover {
    transform: translateY(-10px);
    border-color: rgba(35, 42, 251, 0.2);
    box-shadow: 0 10px 30px rgba(35, 42, 251, 0.15);
}

.concern-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #232afb;
}

.concern-icon i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.concern-item:hover .concern-icon i {
    transform: scale(1.1);
}

.concern-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #232afb;
}

.concern-item p {
    color: #666;
    line-height: 1.7;
}

/* Clients */
.clients {
    background: linear-gradient(180deg, #f5f9ff 0%, #fafafa 100%);
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

.clients-grid img {
    max-height: 50px;
    opacity: 0.6;
    justify-self: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.clients-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.works-grid .work-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    aspect-ratio: 1 / 1;
}

.works-grid .work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.works-grid .work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.works-grid .work-item:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #fff5f9 0%, #ffffff 50%, #f5f9ff 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 187, 255, 0.2) 0%, transparent 70%);
    top: 20%;
    left: 5%;
    border-radius: 50%;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(122, 127, 254, 0.2) 0%, transparent 70%);
    bottom: 10%;
    right: 8%;
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    animation: fadeIn 0.5s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.testimonial-card.active {
    display: block;
}

.quote {
    font-size: 5rem;
    line-height: 0;
    color: #ddd;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #000;
    width: 36px;
    border-radius: 6px;
}

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

/* Contact */
.contact {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 127, 254, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(180, 231, 255, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.contact .section-title {
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.contact-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.contact-item a {
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7a7ffe;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(122, 127, 254, 0.1);
}

.contact-form button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #232afb 0%, #5d62fd 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(35, 42, 251, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5d62fd 0%, #7a7ffe 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
    z-index: -1;
}

.contact-form button:hover::before {
    opacity: 1;
}

.contact-form button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(93, 98, 253, 0.6);
}

.contact-form button:active {
    transform: translateY(0);
}

/* Full Cover Slider */
.full-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(35, 42, 251, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: #fff;
    z-index: 3;
    padding: 2rem;
    max-width: 800px;
}

.slide-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.slider-navigation {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    width: 36px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Fixed CTA Button */
.fixed-cta-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #232afb;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(35, 42, 251, 0.4);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fixed-cta-button:hover {
    background: #4046fc;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(35, 42, 251, 0.5);
}

.fixed-cta-button svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 50%, #f0f2ff 100%);
    color: #232afb;
    padding: 5rem 2rem 3rem;
    border-top: 1px solid rgba(35, 42, 251, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

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

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(35, 42, 251, 0.15);
}

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

.footer-logo img {
    display: inline-block;
    vertical-align: middle;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #232afb;
    margin-bottom: 1rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

/* Contact Details */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.75rem;
    color: rgba(35, 42, 251, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.contact-value {
    font-size: 0.95rem;
    color: #232afb;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-value:hover {
    color: #4046fc;
    transform: translateX(3px);
}

/* Social Media */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social a {
    font-size: 0.95rem;
    color: #232afb;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-social a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
    color: #232afb;
}

.footer-social a:hover {
    color: #4046fc;
    padding-left: 20px;
}

.footer-social a:hover::before {
    opacity: 1;
    left: 0;
}

/* Newsletter Section */
.footer-newsletter {
    margin-bottom: 3rem;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    color: #232afb;
}

.newsletter-tagline {
    font-size: 0.9rem;
    color: rgba(35, 42, 251, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-signup {
    display: flex;
    gap: 0.8rem;
    max-width: 500px;
    width: 100%;
    justify-content: center;
}

.newsletter-signup input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: #fff;
    border: 2px solid rgba(35, 42, 251, 0.2);
    border-radius: 8px;
    color: #232afb;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-signup input::placeholder {
    color: rgba(35, 42, 251, 0.4);
}

.newsletter-signup input:focus {
    outline: none;
    background: #fff;
    border-color: #232afb;
    box-shadow: 0 0 0 3px rgba(35, 42, 251, 0.1);
}

.newsletter-signup button {
    padding: 0.9rem 2rem;
    background: #232afb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-signup button:hover {
    background: #4046fc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(35, 42, 251, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(35, 42, 251, 0.15);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(35, 42, 251, 0.6);
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(35, 42, 251, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 400;
}

.footer-legal a:hover {
    color: #232afb;
    text-decoration: underline;
}

.footer-legal .separator {
    color: rgba(35, 42, 251, 0.4);
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .thinking-container {
        padding: 5rem 2rem;
    }

    .thinking-main-title {
        margin-bottom: 3rem;
    }

    .process-grid {
        gap: 1.5rem;
    }

    .process-step {
        padding: 2.5rem;
    }

    .step-number {
        font-size: 5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #fff 0%, #f8f9ff 50%, #f0f2ff 100%);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(35, 42, 251, 0.2);
        color: #232afb !important;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu .nav-cta {
        margin-top: 1rem;
        text-align: center;
        background: #232afb;
        color: #fff !important;
        padding: 1rem 2rem;
        border-radius: 50px;
        border: 2px solid #232afb;
        box-shadow: 0 4px 15px rgba(35, 42, 251, 0.3);
        display: block;
        width: 100%;
    }

    .nav-menu .nav-cta:hover {
        background: #fff;
        color: #232afb !important;
        border-color: #232afb;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1002;
    }

    .hero {
        padding: 6rem 2rem 3rem;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .work-image {
        aspect-ratio: 1 / 1;
        border-radius: 6px;
    }

    .work-info h3 {
        font-size: 1rem;
    }

    .work-info p {
        font-size: 0.85rem;
    }

    .services-grid,
    .concerns-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        align-items: center;
        justify-items: center;
    }

    .clients-grid img {
        max-height: 35px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .works-grid .work-item {
        border-radius: 8px;
    }

    .recognition-badge {
        flex-direction: column;
        text-align: center;
    }

    .logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }

    .logos img {
        max-height: 30px;
    }

    .infinite-scroll-track {
        gap: 4rem;
    }

    .infinite-scroll-track img {
        height: 30px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author img {
        width: 70px;
        height: 70px;
    }

    .slider-controls {
        gap: 1rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .design-thinking {
        min-height: auto;
        padding: 0;
    }

    .thinking-container {
        padding: 4rem 1.5rem;
    }

    .thinking-main-title {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 2.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 2rem;
        border-radius: 16px;
    }

    .step-number {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .step-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .step-subtitle {
        font-size: 0.95rem;
    }

    .step-description {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .step-services {
        font-size: 0.75rem;
    }

    .philosophy {
        padding: 4rem 2rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .slider-navigation {
        bottom: 2rem;
        gap: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

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

    .slide-content p {
        font-size: 1rem;
    }

    .fixed-cta-button {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .fixed-cta-button svg {
        width: 18px;
        height: 18px;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }

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

    .footer-logo h2 {
        font-size: 1.5rem;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-contact {
        gap: 1.2rem;
    }

    .contact-detail {
        gap: 0.2rem;
    }

    .contact-label {
        font-size: 0.7rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 0.7rem;
    }

    .footer-social a {
        font-size: 0.9rem;
    }

    .footer-newsletter {
        margin-bottom: 2rem;
    }

    .footer-newsletter h3 {
        font-size: 1.3rem;
    }

    .newsletter-tagline {
        font-size: 0.85rem;
    }

    .newsletter-signup {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-signup input,
    .newsletter-signup button {
        width: 100%;
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .footer-legal .separator {
        font-size: 0.6rem;
    }
}