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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* CSS Variables */
:root {
    --blue-primary: #0047AB;
    --blue-light: #E6F3FF;
    --blue-accent: #00BFFF;
    --gray-light: #F8F9FA;
    --white: #ffffff;
    --gray-600: #6B7280;
    --gray-700: #374151;
}

/* Utility Classes */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 2rem 1rem;
}

.bg-gray-light {
    background-color: var(--gray-light);
}

/* Button Styles */
.btn-primary {
    background: var(--blue-primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #003d96;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--blue-primary);
    color: var(--blue-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--blue-primary);
    color: white;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(233, 228, 228, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo-img {
    height: 3.5rem;
    width: auto;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link:hover {
    color: var(--blue-accent);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger {
    background: var(--gray-700);
}

.mobile-nav {
    display: none;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    padding: 1rem 0;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--blue-light);
    color: var(--blue-primary);
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--blue-primary) 0%, var(--blue-accent) 100%);
}

.hero-animations {
    position: absolute;
    inset: 0;
}

.floating-square {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    animation: float 6s ease-in-out infinite;
}

.square-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    animation: rotate-float-1 20s linear infinite;
}

.square-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.15);
    animation: rotate-float-2 25s linear infinite;
}

.square-3 {
    top: 33%;
    right: 25%;
    width: 4rem;
    height: 4rem;
    animation: float-rotate-3 6s ease-in-out infinite;
}

.square-4 {
    top: 25%;
    left: 33%;
    width: 3rem;
    height: 3rem;
    animation: rotate-scale-4 15s ease-in-out infinite;
}

.square-5 {
    bottom: 33%;
    left: 25%;
    width: 6rem;
    height: 6rem;
    animation: float-rotate-5 12s ease-in-out infinite;
}

.square-6 {
    top: 50%;
    right: 33%;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.18);
    animation: scale-rotate-6 18s linear infinite;
}

.square-7 {
    top: 75%;
    left: 50%;
    width: 7rem;
    height: 7rem;
    background: rgba(255, 255, 255, 0.22);
    animation: complex-float-7 22s ease-in-out infinite;
}

.square-8 {
    bottom: 25%;
    right: 20%;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(255, 255, 255, 0.42);
    animation: scale-move-8 16s ease-in-out infinite;
}

.square-9 {
    top: 16.67%;
    right: 16.67%;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    animation: small-float-9 8s ease-in-out infinite;
}

.square-10 {
    bottom: 16.67%;
    left: 16.67%;
    width: 2.5rem;
    height: 2.5rem;
    animation: small-scale-10 10s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
}

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

.hero-main-title {
    font-family: 'Bebas Neue', 'Oswald', 'Roboto Condensed', 'Arial Black', 'Arial', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    letter-spacing: 0.005em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand-line1 {
    display: block;
    font-weight: 400;
    margin-bottom: 0.1rem;
    font-size: 1em;
    color: var(--blue-accent);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.005em;
}

.hero-brand-line2 {
    display: block;
    font-family: 'Inter', 'Arial', 'Helvetica', sans-serif;
    font-weight: 400;
    font-size: 0.3em;
    letter-spacing: 0.08em;
    color: #c4c8d0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    opacity: 0.9;
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: 1.5;
    color: white;
    opacity: 0.8;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: var(--blue-light);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 48rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    justify-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--blue-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .hero-main-title {
        font-size: 4.5rem;
        letter-spacing: 0.01em;
    }
    
    .hero-brand-line1 {
        letter-spacing: 0.03em;
    }
    
    .hero-brand-line2 {
        font-size: 0.28em;
        letter-spacing: 0.09em;
        font-weight: 400;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-main-title {
        font-size: 5.5rem;
        letter-spacing: 0.015em;
    }
    
    .hero-brand-line1 {
        letter-spacing: 0.04em;
    }
    
    .hero-brand-line2 {
        font-size: 0.25em;
        letter-spacing: 0.1em;
        font-weight: 400;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
}

/* About Section */
.about {
    position: relative;
    padding: 2rem 1rem;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--blue-accent) 0%, var(--blue-primary) 100%);
    color: white;
}

.about-bg {
    position: absolute;
    inset: 0;
    opacity: 0.25;
}

.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(2rem);
}

.blur-1 {
    top: 10rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(59, 130, 246, 0.3);
}

.blur-2 {
    bottom: 10rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 191, 255, 0.2);
}

.blur-3 {
    top: 33%;
    right: 33%;
    width: 20rem;
    height: 20rem;
    background: rgba(96, 165, 250, 0.25);
}

.blur-4 {
    top: 8rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(59, 130, 246, 0.3);
}

.blur-5 {
    bottom: 8rem;
    left: 5rem;
    width: 20rem;
    height: 20rem;
    background: rgba(0, 191, 255, 0.2);
}

.blur-6 {
    top: 50%;
    left: 33%;
    width: 16rem;
    height: 16rem;
    background: rgba(96, 165, 250, 0.25);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.708);
}

.section-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 48rem;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Make services section subtitle appear in single line */
#services .section-subtitle {
    white-space: nowrap;
    max-width: none;
}

.philosophy-section {
    margin-bottom: 2rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.153);
    background-image: linear-gradient(rgba(255, 255, 255, 0.108), rgba(255, 255, 255, 0.01)), 
                      url('phil-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

/* Core Principles Section */
.core-principles-section {
    margin-bottom: 5rem;
}

.principles-text-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    flex-wrap: wrap;
}

.principle-text-item {
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
}

.principle-text-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.234), 0 0 20px rgba(59, 130, 246, 0.8);
    line-height: 1.1;
    text-align: center;
}

@media (min-width: 768px) {
    .principles-text-grid {
        gap: 8rem;
        flex-wrap: nowrap;
    }
    
    .principle-text-title {
        font-size: 2.5rem;
        white-space: nowrap;
    }
}

@media (min-width: 1024px) {
    .principles-text-grid {
        gap: 10rem;
    }
    
    .principle-text-title {
        font-size: 3rem;
        white-space: nowrap;
    }
}

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

.value-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    color: var(--gray-700);
}

.value-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--blue-primary);
    transition: transform 0.3s ease;
}

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

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--gray-600);
}

.mission-section {
    margin-top: 5rem;
}

.mission-card {
    background: linear-gradient(to right, var(--blue-primary), var(--blue-accent));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.mission-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
    
    .philosophy-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-text {
        font-size: 2.5rem;
    }
    
    .philosophy-subtext {
        font-size: 1.875rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-card {
        padding: 3rem;
    }
    
    .mission-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Services Section */
.services {
    position: relative;
    padding: 2rem 1rem;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--blue-primary) 0%, var(--blue-accent) 100%);
    color: white;
}

.services-bg {
    position: absolute;
    inset: 0;
    opacity: 0.25;
}

.lifecycle-section {
    margin-bottom: 4rem;
}

.lifecycle-card {
    background: linear-gradient(to right, var(--blue-primary), var(--blue-accent), var(--blue-primary));
    border-radius: 1rem;
    padding: 2rem;
}

.lifecycle-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    position: relative;
}

.lifecycle-item {
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Individual lifecycle item colors */
.lifecycle-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3));
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.lifecycle-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3));
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.lifecycle-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3));
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.lifecycle-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3));
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.lifecycle-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.2);
}

/* Arrow styles for lifecycle items */
.lifecycle-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.85rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid #70f09f;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    z-index: 10;
    display: none; /* Hidden on mobile */
}

.lifecycle-stage {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.lifecycle-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

.service-card {
    background: var(--gray-light);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: var(--blue-accent);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-primary);
    transition: color 0.3s ease;
    flex: 1;
}

.service-card:hover .service-title {
    color: var(--blue-accent);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--blue-accent);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.service-btn {
    display: flex;
    align-items: center;
    color: var(--blue-primary);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.service-card:hover .service-btn {
    color: var(--blue-accent);
    transform: translateX(0.25rem);
}

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

.cta-card {
    background: var(--blue-light);
    border-radius: 1rem;
    padding: 2rem;
    color: var(--gray-700);
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .lifecycle-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* Show arrows on desktop */
    .lifecycle-item:not(:last-child)::after {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Sectors Section */
#sectors {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #00BFFF 0%, #0047AB 100%);
    color: white;
}

/* Background decorative elements for sectors */
.sectors-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.sectors-bg .bg-blur.blur-1 {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(0, 71, 171, 0.3);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite;
}

.sectors-bg .bg-blur.blur-2 {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 191, 255, 0.2);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite 1s;
}

.sectors-bg .bg-blur.blur-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20rem;
    height: 20rem;
    background: rgba(96, 165, 250, 0.25);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite 0.5s;
    transform: translate(-50%, -50%);
}

#sectors .container-custom {
    position: relative;
    z-index: 10;
}

#sectors .section-header h2,
#sectors .section-header p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.708);
    color: #ffffff;
}

/* Sectors Banner */
.sectors-banner {
    margin: 4rem 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.sectors-scroll {
    display: flex;
    gap: 2rem;
    animation: scrollLeft 90s linear infinite;
    width: max-content;
    padding-left: 2rem;
    padding-right: 2rem;
}

.sectors-banner .sector-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-700);
    min-width: 200px;
    flex-shrink: 0;
}

.sectors-banner .sector-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.sectors-banner .sector-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.sectors-banner .sector-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sectors-banner .sector-card:hover h3 {
    color: var(--blue-accent);
}

/* Sector Icon Colors */
.sector-card.retail .sector-icon { background: linear-gradient(to right, #3b82f6, #1d4ed8); color: white; }
.sector-card.fmcg .sector-icon { background: linear-gradient(to right, #10b981, #059669); color: white; }
.sector-card.bfsi .sector-icon { background: linear-gradient(to right, #8b5cf6, #7c3aed); color: white; }
.sector-card.automotive .sector-icon { background: linear-gradient(to right, #ef4444, #dc2626); color: white; }
.sector-card.healthcare .sector-icon { background: linear-gradient(to right, #ec4899, #db2777); color: white; }
.sector-card.media .sector-icon { background: linear-gradient(to right, #f97316, #ea580c); color: white; }
.sector-card.telecom .sector-icon { background: linear-gradient(to right, #6366f1, #4f46e5); color: white; }
.sector-card.durables .sector-icon { background: linear-gradient(to right, #6b7280, #4b5563); color: white; }
.sector-card.food .sector-icon { background: linear-gradient(to right, #f59e0b, #d97706); color: white; }
.sector-card.hospitality .sector-icon { background: linear-gradient(to right, #14b8a6, #0d9488); color: white; }
.sector-card.airlines .sector-icon { background: linear-gradient(to right, #0ea5e9, #0284c7); color: white; }
.sector-card.education .sector-icon { background: linear-gradient(to right, #10b981, #059669); color: white; }
.sector-card.logistics .sector-icon { background: linear-gradient(to right, #eab308, #ca8a04); color: white; }
.sector-card.realestate .sector-icon { background: linear-gradient(to right, #f43f5e, #e11d48); color: white; }
.sector-card.digital .sector-icon { background: linear-gradient(to right, #8b5cf6, #7c3aed); color: white; }

.sector-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--blue-primary);
    transition: all 0.3s ease;
}

.sector-card:hover h3 {
    transform: translateY(-2px);
    color: var(--blue-accent);
}

/* Sector Expertise Header */
.sector-expertise-header {
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.30);
}

/* Independent Expertise Cards Array */
.expertise-cards-array {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.expertise-card-independent {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    color: var(--gray-700);
}

.expertise-card-independent:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.expertise-card-independent .expertise-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.3s ease;
}

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

.expertise-icon.retail { background: linear-gradient(to right, #3b82f6, #1d4ed8); }
.expertise-icon.fmcg { background: linear-gradient(to right, #10b981, #059669); }
.expertise-icon.bfsi { background: linear-gradient(to right, #8b5cf6, #7c3aed); }
.expertise-icon.automotive { background: linear-gradient(to right, #ef4444, #dc2626); }
.expertise-icon.healthcare { background: linear-gradient(to right, #ec4899, #db2777); }

.expertise-card-independent h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.expertise-card-independent:hover h4 {
    color: var(--blue-accent);
}

.expertise-card-independent p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .expertise-cards-array {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .expertise-cards-array {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .expertise-card-independent {
        padding: 1.5rem;
    }
    
    .expertise-card-independent h4 {
        font-size: 1.125rem;
    }
    
    .expertise-card-independent p {
        font-size: 0.8rem;
    }
}

/* Sector Stats Section */
.sector-stats {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.sector-stats-container {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(96, 165, 250, 0.8) 100%);
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 64rem;
    width: 100%;
}

.sector-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sector-stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.sector-stat-label {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

/* Legacy stats grid styles for other sections */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.stats-grid .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-grid .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-grid .stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .sector-stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        padding: 2rem 2.5rem;
    }
    
    .sector-stat-number {
        font-size: 4rem;
    }
    
    .sector-stat-label {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Portfolio Section */
.portfolio {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #0047AB 0%, #00BFFF 100%);
    color: white;
    
}

/* Background decorative elements for portfolio */
.portfolio::before {
    content: '';
    position: absolute;
    top: 10rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 255, 0, 0.25);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 10rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 255, 0, 0.25);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite 1s;
    z-index: 1;
}

/* Additional decorative element */
.portfolio .container-custom::before {
    content: '';
    position: absolute;
    top: 33%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(255, 165, 0, 0.25);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite 0.7s;
    z-index: 1;
}

.portfolio .container-custom {
    position: relative;
    z-index: 10;
}

.portfolio .section-header h2,
.portfolio .section-header p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.708);
    color: #ffffff;
}

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

.case-study-card {
    background: var(--gray-light);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.case-study-header {
    padding: 1.5rem;
    color: white;
}

.case-study-header .case-study-icon {
    color: white;
    margin-bottom: 1rem;
}

.case-study-header .case-study-category {
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.case-study-header {
    position: relative;
}

.case-study-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-top: 0;
}

.retail-gradient { background: linear-gradient(to right, #3b82f6, #1d4ed8); }
.fmcg-gradient { background: linear-gradient(to right, #10b981, #059669); }
.analytics-gradient { background: linear-gradient(to right, #f59e0b, #d97706); }
.bfsi-gradient { background: linear-gradient(to right, #8b5cf6, #7c3aed); }
.automotive-gradient { background: linear-gradient(to right, #ef4444, #dc2626); }
.healthcare-gradient { background: linear-gradient(to right, #ec4899, #db2777); }

.case-study-content {
    padding: 1.5rem;
    color: var(--gray-700);
}

.case-study-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.case-study-highlights li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.case-study-highlights li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--blue-accent);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.case-study-btn {
    display: flex;
    align-items: center;
    color: var(--blue-primary);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.case-study-card:hover .case-study-btn {
    color: var(--blue-accent);
    transform: translateX(0.25rem);
}

.featured-projects {
    background: var(--gray-light);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

.featured-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--blue-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.featured-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.featured-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.featured-icon {
    width: 3rem;
    height: 3rem;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.featured-icon.automotive {
    background: #10b981;
}

.featured-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-primary);
}

.featured-header p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.featured-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.featured-result {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-primary);
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Team Section */
.team {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #0047AB 0%, #00BFFF 100%);
    color: white;
    padding: 2rem 1rem 1rem 1rem;
}

/* Background decorative elements for team - DEACTIVATED */
/*
.team::before {
    content: '';
    position: absolute;
    top: 10rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 255, 0, 0.25);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.team::after {
    content: '';
    position: absolute;
    bottom: 10rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 255, 0, 0.25);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite 1s;
    z-index: 1;
}
*/

/* Additional decorative element - DEACTIVATED */
/*
.team .container-custom::before {
    content: '';
    position: absolute;
    top: 33%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(255, 165, 0, 0.25);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 4s ease-in-out infinite 0.7s;
    z-index: 1;
}
*/

.team .container-custom {
    position: relative;
    z-index: 10;
}

.team .section-header h2,
.team .section-header p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.708);
    color: #ffffff;
}

.team-bg {
    position: absolute;
    inset: 0;
    opacity: 0.25;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Leadership section - 2 members, max-w-4xl */
.partners-grid {
    grid-template-columns: 1fr;
    max-width: 64rem;
    margin: 0 auto;
    align-items: stretch;
    justify-items: center;
    gap: 2rem;
}

/* Advisory section - 2 members, max-w-4xl */
.advisors-grid {
    grid-template-columns: 1fr;
    max-width: 64rem;
    margin: 0 auto;
    justify-items: center;
    gap: 2rem;
}

/* Advisory section - 4 members with special layout */
.advisors-grid-three {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 64rem;
    margin: 0 auto;
    align-items: stretch;
    justify-items: center;
    gap: 2rem;
}

/* Second row card positioning */
.advisor-card-second-row {
    grid-column: 1 / -1;
}

/* Support section - 1 member, max-w-md */
.support-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin: 0 auto;
    justify-items: center;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 3rem;
    }
    
    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 3rem;
    }
    
    .advisors-grid-three {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 3rem;
    }
    
    .advisor-card-second-row {
        grid-column: auto;
        grid-row: auto;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: fit-content;
    width: 100%;
    max-width: 430px;
}

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

.team-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.leadership-gradient { background: linear-gradient(135deg, #3b82f6, #10b981); }
.advisory-gradient { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.support-gradient { background: linear-gradient(135deg, #f97316, #ea580c); }

.team-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.3s ease;
}

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

.team-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    padding: 0.25rem;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

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

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.team-experience {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

.team-content {
    padding: 1.5rem;
    color: var(--gray-700);
}

.team-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.team-expertise h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-primary);
    margin-bottom: 0.75rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    font-size: 0.75rem;
    background: var(--blue-light);
    color: var(--blue-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.team-contact {
    display: flex;
    gap: 0.75rem;
}

.contact-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
    position: relative;
    z-index: 101;
}

.contact-btn.linkedin {
    background: #0047AB;
    color: white;
}

.contact-btn.email {
    background: #6b7280;
    color: white;
}

.contact-btn:hover {
    transform: scale(1.1);
}

/* Ensure anchor tags inherit button styles */
a.contact-btn {
    border: none;
    text-decoration: none;
}

a.contact-btn:hover {
    color: white;
}

.team-stats {
    margin-top: 4rem;
}

.stats-card {
    background: linear-gradient(to right, var(--blue-primary), var(--blue-accent));
    border-radius: 2rem;
    padding: 2rem 2rem;
    color: white;
}

.stats-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.stats-grid .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-grid .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stats-grid .stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    color: white;
}

@media (min-width: 768px) {
    .stats-card {
        padding: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Partner Card Styles */
.partner-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 430px;
}

/* Advisor Card Styles - Same as Partner Cards */
.advisor-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 430px;
}

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

.advisor-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
}

.advisor-info {
    flex: 1;
    padding-right: 1rem;
}

.advisor-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.2;
}

.advisor-role {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: white;
    font-weight: 500;
}

.advisor-experience {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    color: white;
}

.advisor-icon-container {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

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

.advisor-content {
    padding: 1.5rem;
    color: #374151;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.advisor-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.advisor-expertise {
    margin-bottom: 1.5rem;
}

.advisor-expertise h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0047AB;
    margin-bottom: 0.75rem;
}

.advisor-contact {
    display: flex;
    gap: 0.75rem;
}

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

.partner-header {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
}

.partner-info {
    flex: 1;
    padding-right: 1rem;
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.2;
}

.partner-role {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: white;
    font-weight: 500;
}

.partner-experience {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    color: white;
}

.partner-image-container {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-image-container:hover {
    transform: scale(1.1) rotate(5deg);
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Specific positioning for Shantanu's image */
.partner-image[src="SD.png"] {
    object-position: center 20%;
}

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

.partner-content {
    padding: 1.5rem;
    color: #374151;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.partner-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.partner-expertise {
    margin-bottom: 1.5rem;
}

.partner-expertise h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0047AB;
    margin-bottom: 0.75rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: #e0f2fe;
    color: #0047AB;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.partner-contact {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 100;
}

.contact-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-btn.linkedin {
    background: #0047AB;
    color: white;
}

.contact-btn.email {
    background: #6b7280;
    color: white;
}

.contact-btn:hover {
    transform: scale(1.1);
}

.team-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: var(--gray-700);
    margin: 0 auto;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn-primary {
    background: var(--blue-primary);
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.cta-card .btn-primary:hover {
    background: #003d96;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .cta-card {
        padding: 3rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-description {
        font-size: 1.25rem;
        line-height: 1.5;
    }
}

/* Contact Section */
#contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--blue-primary) 0%, var(--blue-accent) 100%);
    color: white;
}

.contact-bg {
    position: absolute;
    inset: 0;
    opacity: 0.25;
}

#contact .container-custom {
    position: relative;
    z-index: 10;
}

#contact .section-header h2,
#contact .section-header p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.708);
    color: #ffffff;
}

.contact-main-content {
    max-width: 96rem;
    margin: 0 auto;
}

/* Contact Information Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

/* Contact Details Card */
.contact-info-card {
    background: linear-gradient(to bottom right, rgba(230, 243, 255, 0.95), rgba(255, 255, 255, 0.95));
    border-radius: 1rem;
    padding: 1.5rem;
    color: var(--gray-700);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 191, 255, 0.1);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-600);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-details a {
    color: var(--blue-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.contact-details a:hover {
    color: var(--blue-accent);
}

/* Social Connect Card */
.social-connect-card {
    background: linear-gradient(to right, var(--blue-primary), var(--blue-accent));
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.social-link {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) translateY(-2px);
}

/* Quick Response Guarantee */
.response-guarantee {
    margin-top: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-card {
    background: var(--blue-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: var(--gray-700);
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.guarantee-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.guarantee-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--blue-primary);
    font-size: 1.125rem;
}

.guarantee-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--blue-primary);
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .social-connect-card {
        padding: 2rem;
    }
}

/* Mobile-specific contact section adjustments */
@media (max-width: 767px) {
    .contact-info-card {
        padding: 1rem;
        margin: 0;
    }
    
    .social-connect-card {
        padding: 1rem;
        margin: 0;
    }
    
    .contact-card-title {
        font-size: 1.25rem;
    }
    
    .social-title {
        font-size: 1.25rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .contact-icon-wrapper {
        align-self: flex-start;
    }
    
    .contact-details {
        width: 100%;
    }
    
    .contact-details a {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

/* Contact Links Section */
.contact-links-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Quick Links Card */
.quick-links-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    color: var(--gray-700);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quick-links-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 2rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: var(--blue-light);
}

.quick-link-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-primary);
    flex-shrink: 0;
}

.quick-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-link:hover {
    color: var(--blue-primary);
}

/* Services Overview Card */
.services-overview-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    color: var(--gray-700);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.services-overview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 2rem;
}

.services-overview-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-overview-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.service-overview-item:hover {
    background: var(--blue-light);
}

.service-overview-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.service-overview-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-primary);
    margin-bottom: 0.25rem;
}

.service-overview-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.services-cta-button {
    text-align: center;
}

/* Managing Directors Card */
.managing-directors-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    color: var(--gray-700);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.managing-directors-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 2rem;
}

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

.director-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--blue-light);
    transition: all 0.3s ease;
}

.director-item:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.director-image {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--blue-light);
}

.director-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.director-info {
    flex: 1;
}

.director-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.25rem;
}

.director-role {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.director-experience {
    font-size: 0.75rem;
    color: var(--blue-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.director-contact {
    margin-top: 0.5rem;
}

.director-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.director-email:hover {
    color: var(--blue-accent);
}

.directors-cta {
    text-align: center;
}

.response-guarantee {
    text-align: center;
}

.guarantee-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    color: var(--gray-700);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.guarantee-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.guarantee-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--blue-primary);
}

.guarantee-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--blue-accent) 0%, var(--blue-primary) 100%);
    color: white;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    opacity: 0.25;
}

.testimonials .container-custom {
    position: relative;
    z-index: 10;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.708);
    color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--gray-light);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-primary);
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.company-logo.mcdonalds {
    background: linear-gradient(to right, #f59e0b, #dc2626);
}

.company-logo.sapat {
    background: linear-gradient(to right, #10b981, #059669);
}

.company-logo.lybrate {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
}

.company-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.25rem;
}

.rating {
    display: flex;
    gap: 0.125rem;
}

.rating svg {
    color: #fbbf24;
}

.testimonial-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.875rem;
}

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

.author-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
}

.author-name {
    font-weight: 600;
    color: var(--blue-primary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Client Logos Section */
.client-logos-section {
    margin-bottom: 4rem;
}

.client-logos-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.60);
    color: #ffffff;
}

.client-logos-card {
    background: var(--gray-light);
    border-radius: 2rem;
    padding: 2rem;
}

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

.client-logo-item {
    text-align: center;
}

.client-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

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

.client-logo.mcdonalds {
    background: linear-gradient(to right, #f59e0b, #dc2626);
}

.client-logo.sapat {
    background: linear-gradient(to right, #10b981, #059669);
}

.client-logo.lybrate {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
}

.client-logo.bajaj {
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
}

.client-logo.kotak {
    background: linear-gradient(to right, #ef4444, #dc2626);
}

.client-logo.glenmark {
    background: linear-gradient(to right, #6366f1, #4f46e5);
}

.client-logo-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Testimonials Stats Section */
.testimonials-stats {
    margin-bottom: 4rem;
}

.testimonials-stats-card {
    background: linear-gradient(to right, var(--blue-primary), var(--blue-accent));
    border-radius: 2rem;
    padding: 2rem;
    color: white;
}

.testimonials-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.testimonials-stats-grid .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-stats-grid .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.testimonials-stats-grid .stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    color: white;
}

/* Testimonials CTA Section */
.testimonials-cta {
    text-align: center;
}

.testimonials-cta-card {
    background: var(--blue-light);
    border-radius: 2rem;
    padding: 2rem;
    color: var(--gray-700);
}

.testimonials-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.testimonials-cta-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .client-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-stats-card {
        padding: 2rem;
    }
    
    .testimonials-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-cta-card {
        padding: 2rem;
    }
    
    .testimonials-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .client-logos-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Placeholder Content */
.placeholder-content {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, #1f2937 0%, #0047AB 50%, #1f2937 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Footer Background Elements */
.footer-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.footer-blur {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(2rem);
}

.footer-blur-1 {
    top: 2.5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: var(--blue-primary);
}

.footer-blur-2 {
    bottom: 2.5rem;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    background: var(--blue-accent);
}

.footer-blur-3 {
    top: 50%;
    left: 33.33%;
    width: 18rem;
    height: 18rem;
    background: #06b6d4;
}

/* Main Footer */
.footer-main {
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

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

/* Company Info */
.footer-company {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 5rem;
    width: auto;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 28rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    color: #d1d5db;
}

.footer-contact-icon {
    margin-right: 0.75rem;
    color: var(--blue-accent);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact-details {
    font-size: 0.875rem;
}

.footer-email-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email-link:hover {
    color: var(--blue-accent);
}

.footer-location-title {
    font-weight: 500;
    color: white;
    margin-bottom: 0.25rem;
}

/* Managing Directors */
.footer-directors {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
}

.footer-directors-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-director {
    text-align: center;
    min-width: 7.5rem;
}

.footer-director-image {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--blue-accent);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-director:hover .footer-director-image {
    transform: scale(1.05);
}

.footer-director-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.3s ease;
}

.footer-director:hover .footer-director-photo {
    transform: scale(1.05);
}

.footer-director-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.footer-director-role {
    font-size: 0.75rem;
    color: #d1d5db;
    white-space: nowrap;
}

/* Quick Links */
.footer-links {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .footer-links {
        margin-left: 200px;
    }
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--blue-accent);
    transform: translateX(0.25rem);
}

/* Services */
.footer-services {
    grid-column: span 1;
}

.footer-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-services-list li {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

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

.newsletter-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    color: #d1d5db;
}

.newsletter-input-group {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.5rem 0 0 0.5rem;
    color: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--blue-accent);
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    background: var(--blue-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--blue-accent);
    transform: scale(1.05);
}

/* Bottom Footer */
.footer-bottom {
    border-top: 1px solid #374151;
}

.footer-bottom-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    margin-bottom: 1rem;
}

.footer-copyright-text {
    color: #d1d5db;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-heart {
    color: #ef4444;
    margin: 0 0.25rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--blue-primary);
    transform: scale(1.2) translateY(-2px);
}

.back-to-top {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--blue-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--blue-accent);
    transform: scale(1.1) translateY(-2px);
}

/* Legal Links */
.footer-legal {
    background: #374151;
    border-top: 1px solid #4b5563;
}

.footer-legal-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-legal-link:hover {
    color: var(--blue-accent);
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-directors {
        align-items: center;
    }
    
    .footer-directors-grid {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .newsletter-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        margin-bottom: 0;
    }
    
    .footer-copyright {
        margin-bottom: 0;
    }
    
    .footer-legal-content {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .footer-company {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-column: span 1;
    }
    
    .footer-services {
        grid-column: span 1;
    }
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-0.625rem);
    }
    70% {
        transform: translateX(-50%) translateY(-0.3125rem);
    }
    90% {
        transform: translateX(-50%) translateY(-0.125rem);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.4;
    }
}

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

@keyframes rotate-float-1 {
    0% {
        transform: rotate(0deg) scale(1) translateX(-10px);
    }
    50% {
        transform: rotate(180deg) scale(1.1) translateX(10px);
    }
    100% {
        transform: rotate(360deg) scale(1) translateX(-10px);
    }
}

@keyframes rotate-float-2 {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(-180deg) scale(0.9) translateY(-15px);
    }
    100% {
        transform: rotate(-360deg) scale(1);
    }
}

@keyframes float-rotate-3 {
    0% {
        transform: translateY(-20px) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(180deg);
    }
    100% {
        transform: translateY(-20px) rotate(360deg);
    }
}

@keyframes rotate-scale-4 {
    0% {
        transform: rotate(0deg) scale(0.8);
    }
    25% {
        transform: rotate(90deg) scale(1.2);
    }
    50% {
        transform: rotate(180deg) scale(0.8);
    }
    75% {
        transform: rotate(270deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(0.8);
    }
}

@keyframes float-rotate-5 {
    0% {
        transform: rotate(360deg) translateX(-20px) translateY(0px);
    }
    50% {
        transform: rotate(180deg) translateX(20px) translateY(-10px);
    }
    100% {
        transform: rotate(0deg) translateX(-20px) translateY(0px);
    }
}

@keyframes scale-rotate-6 {
    0% {
        transform: scale(1) rotate(0deg);
    }
    20% {
        transform: scale(1.3) rotate(45deg);
    }
    40% {
        transform: scale(1) rotate(90deg);
    }
    60% {
        transform: scale(1.3) rotate(135deg);
    }
    80% {
        transform: scale(1) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

@keyframes complex-float-7 {
    0% {
        transform: rotate(-180deg) translateY(0px) opacity(0.3);
    }
    50% {
        transform: rotate(180deg) translateY(30px) opacity(0.8);
    }
    100% {
        transform: rotate(-180deg) translateY(0px) opacity(0.3);
    }
}

@keyframes scale-move-8 {
    0% {
        transform: rotate(0deg) scale(0.7) translateX(0px);
    }
    50% {
        transform: rotate(360deg) scale(1.1) translateX(15px);
    }
    100% {
        transform: rotate(0deg) scale(0.7) translateX(0px);
    }
}

@keyframes small-float-9 {
    0% {
        transform: translateY(-15px) rotate(0deg);
    }
    25% {
        transform: translateY(15px) rotate(90deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
    75% {
        transform: translateY(15px) rotate(270deg);
    }
    100% {
        transform: translateY(-15px) rotate(360deg);
    }
}

@keyframes small-scale-10 {
    0% {
        transform: translateX(-10px) scale(0.8);
    }
    50% {
        transform: translateX(10px) scale(1.2);
    }
    100% {
        transform: translateX(-10px) scale(0.8);
    }
}

/* Arrow animation keyframes removed - no longer needed */

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

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
    word-wrap: break-word;
}

.toast-notification.toast-show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification.toast-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border-left: 4px solid #047857;
}

.toast-notification.toast-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-left: 4px solid #b91c1c;
}

.toast-notification.toast-info {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-accent));
    border-left: 4px solid #1d4ed8;
}

/* Toast animation keyframes */
@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive toast positioning */
@media (max-width: 768px) {
    .toast-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(100%);
    }
    
    .toast-notification.toast-show {
        transform: translateY(0);
    }
}
