@font-face {
    font-family: 'Oswald';
    src: url('../assets/fonts/Oswald-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    background-attachment: fixed;
    color: #1a1a1a;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Dark Mode Styles */
body.dark-mode {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: #e4e4e7;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #f4f4f5;
}

body.dark-mode p,
body.dark-mode .section-subtitle,
body.dark-mode .hero-tagline-text,
body.dark-mode .intro-text {
    color: #a1a1aa;
}

body.dark-mode .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 25%, #60a5fa 50%, #818cf8 75%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(51, 61, 114, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 86, 120, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 201, 201, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

.bg-orb-1 {
    top: 25%;
    left: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(51, 61, 114, 0.12) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite, float 20s ease-in-out infinite;
}

.bg-orb-2 {
    bottom: 25%;
    right: 25%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(74, 86, 120, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite 1s, float 25s ease-in-out infinite reverse;
}

.bg-orb-3 {
    top: 50%;
    left: 50%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(201, 201, 201, 0.15) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite 2s, float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(51, 61, 114, 0.1);
}

body.dark-mode nav {
    background: rgba(10, 14, 39, 0.8);
}

body.dark-mode nav.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

body.dark-mode .nav-links a {
    color: #e4e4e7;
}

body.dark-mode .nav-links a:hover {
    color: #60a5fa;
}

body.dark-mode .logo-text {
    color: #f4f4f5;
}

body.dark-mode .hamburger-line {
    background-color: #60a5fa;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1a1a1a;
}

.logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
    padding: 8px 16px;
    border-radius: 14px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(51, 61, 114, 0.2));
}

.logo:hover img {
    filter: drop-shadow(0 4px 16px rgba(51, 61, 114, 0.4));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    background: linear-gradient(135deg, #333D72 0%, #4a5678 50%, #333D72 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #333D72;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #333D72 0%, #4a5678 100%);
    border: 1px solid rgba(201, 201, 201, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #4a5678 0%, #5c6a8f 100%);
    box-shadow: 0 12px 40px rgba(51, 61, 114, 0.6),
                0 0 20px rgba(201, 201, 201, 0.2);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(201, 201, 201, 0.4);
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(51, 61, 114, 0.05);
    border: 1px solid rgba(51, 61, 114, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: rgba(51, 61, 114, 0.1);
    border-color: rgba(51, 61, 114, 0.3);
    transform: scale(1.05);
}

.theme-icon {
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: absolute;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

body.dark-mode .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

body.dark-mode .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .theme-toggle {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
}

body.dark-mode .theme-toggle:hover {
    background: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.4);
}

/* Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
    position: relative;
    margin-left: 1rem;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333D72;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 3rem;
    color: #333D72;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2001;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin: 2rem 0;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-link {
    display: block;
    font-size: 1.75rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.mobile-nav-link:active {
    background: rgba(51, 61, 114, 0.1);
    color: #333D72;
    transform: scale(0.95);
}

.mobile-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #333D72 0%, #4a5678 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.125rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(51, 61, 114, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-overlay.active .mobile-cta-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.mobile-cta-button:active {
    transform: scale(0.95) translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1.5rem 5rem;
    z-index: 1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    overflow: visible;
    padding-bottom: 0.5rem;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(51, 61, 114, 0.1) 0%, rgba(74, 86, 120, 0.08) 100%);
    border: 1px solid rgba(51, 61, 114, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: #333D72;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (prefers-reduced-motion: no-preference) {
    @media (min-width: 769px) {
        .badge {
            animation: glow 3s ease-in-out infinite;
        }
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(51, 61, 114, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 0 8px 40px rgba(51, 61, 114, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.9),
                    0 0 30px rgba(51, 61, 114, 0.1);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    color: #1a1a1a;
    overflow: visible;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #333D72 0%, #4a5678 25%, #333D72 50%, #4a5678 75%, #333D72 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(51, 61, 114, 0.2));
    overflow: visible;
    padding-bottom: 0.3rem;
    line-height: 1.3;
}

@media (prefers-reduced-motion: no-preference) {
    @media (min-width: 769px) {
        .gradient-text {
            animation: gradient 4s ease infinite;
        }
    }
}

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

.hero-tagline {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-left: 4px solid #333D72;
    padding-left: 1.5rem;
}

.hero-tagline-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333D72;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    font-family: 'Oswald', sans-serif;
}

.hero-tagline-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #333D72 0%, #4a5678 100%);
    border: 1px solid rgba(201, 201, 201, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(51, 61, 114, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

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

.primary-button:hover {
    background: linear-gradient(135deg, #4a5678 0%, #5c6a8f 100%);
    box-shadow: 0 20px 50px rgba(51, 61, 114, 0.6),
                0 0 30px rgba(201, 201, 201, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(201, 201, 201, 0.4);
}

.secondary-button {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(51, 61, 114, 0.3);
    border-radius: 50px;
    color: #333D72;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 61, 114, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.secondary-button:hover::before {
    width: 300px;
    height: 300px;
}

.secondary-button:hover {
    background: rgba(51, 61, 114, 0.05);
    border-color: rgba(51, 61, 114, 0.6);
    box-shadow: 0 10px 30px rgba(51, 61, 114, 0.15),
                inset 0 0 20px rgba(51, 61, 114, 0.05);
    transform: translateY(-2px);
    color: #333D72;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    width: 100%;
    min-height: 300px;
}

.rotating-card {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.6s ease;
    opacity: 0;
    transform: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    will-change: opacity;
}

.rotating-card.active {
    opacity: 1;
    transform: none;
}

.card-1 { 
    background: transparent;
    box-shadow: none;
}
.card-2 { 
    background: transparent;
    box-shadow: none;
}
.card-3 { 
    background: transparent;
    box-shadow: none;
}

.card-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.3),
                0 0 40px rgba(201, 201, 201, 0.1);
    transition: none;
}

.rotating-card.active .hero-slide-image {
    box-shadow: 0 25px 70px rgba(51, 61, 114, 0.4),
                0 0 50px rgba(201, 201, 201, 0.15);
}

@media (min-width: 769px) {
    .hero-slide-image {
        transition: box-shadow 0.6s ease;
    }
    
    .rotating-card.active .hero-slide-image {
        transform: scale(1.05);
    }
}

.floating-orb {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

.floating-orb-1 {
    top: -2rem;
    right: -2rem;
    background: linear-gradient(135deg, #333D72, #4a5678);
}

.floating-orb-2 {
    bottom: -2rem;
    left: -2rem;
    background: linear-gradient(135deg, #4a5678, #333D72);
    animation-delay: 1s;
}

/* Stats Section */
.stats {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(51, 61, 114, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.stat-card:hover {
    border-color: rgba(51, 61, 114, 0.3);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.2),
                0 0 40px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #333D72, #4a5678);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-shadow: 0 2px 8px rgba(51, 61, 114, 0.1);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(51, 61, 114, 0.05), transparent);
    transition: left 0.7s;
}

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

.service-card:hover {
    border-color: rgba(51, 61, 114, 0.3);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.25),
                0 0 40px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: #333D72;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(51, 61, 114, 0.2));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: #333D72;
    filter: drop-shadow(0 8px 16px rgba(51, 61, 114, 0.4));
}

.service-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-family: 'Oswald', sans-serif;
}

.service-description {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

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

.cta-box {
    background: linear-gradient(135deg, #333D72 0%, #4a5678 50%, #5c6a8f 100%);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 80px rgba(51, 61, 114, 0.6),
                0 0 60px rgba(201, 201, 201, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 201, 201, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(201, 201, 201, 0.08) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

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

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-white {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #333D72;
    border: 2px solid rgba(51, 61, 114, 0.2);
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-block;
}

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

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

.cta-button-white:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4),
                0 0 40px rgba(201, 201, 201, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(51, 61, 114, 0.3);
}

/* Footer */
footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(51, 61, 114, 0.15);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.5);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-logo img {
    height: 56px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(51, 61, 114, 0.2));
}

.footer-text {
    color: #4a5568;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: #4a5568;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Scroll snap for smooth section navigation */
    html {
        scroll-snap-type: y proximity;
        scroll-padding-top: 70px;
    }
    
    section {
        scroll-snap-align: start;
    }
    
    /* Hide desktop navigation */
    .desktop-nav,
    .desktop-cta {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Show mobile menu overlay when needed */
    .mobile-menu-overlay {
        display: block;
    }

    /* Hero Section - ensure proper height on mobile */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.25rem;
    }

    .stats-container,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .cta-box {
        padding: 2rem;
    }
}

/* About Section */
.about {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Company Introduction */
.about-intro {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 300;
}

/* Subsection Titles */
.subsection-title {
    font-size: 1.75rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio-section {
    margin: 5rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.12);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.08),
                0 2px 8px rgba(51, 61, 114, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #333D72, transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.portfolio-card:hover {
    border-color: rgba(51, 61, 114, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.15),
                0 8px 24px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.portfolio-icon {
    margin-bottom: 1.5rem;
}

.icon-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333D72 0%, #4a5678 100%);
    color: white;
    border-radius: 16px;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    box-shadow: 0 8px 20px rgba(51, 61, 114, 0.3);
}

.portfolio-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.portfolio-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Vision Statement */
.vision-statement {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(51, 61, 114, 0.03) 0%, rgba(74, 86, 120, 0.02) 100%);
    border-left: 4px solid #333D72;
    border-radius: 12px;
}

.vision-statement p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.vision-statement p:last-child {
    margin-bottom: 0;
}

.vision-highlight {
    font-weight: 500;
    color: #333D72;
    font-size: 1.15rem !important;
}

/* Core Values Section */
.core-values-section {
    margin: 5rem 0;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.08),
                0 2px 8px rgba(51, 61, 114, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #333D72, transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.value-card-modern:hover::before {
    opacity: 1;
}

.value-card-modern:hover {
    border-color: rgba(51, 61, 114, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.15),
                0 8px 24px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.value-text {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CEO Message Section */
.ceo-message-section {
    margin: 5rem 0;
}

.ceo-card-modern {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(51, 61, 114, 0.05) 0%, rgba(74, 86, 120, 0.03) 100%);
    border: 2px solid rgba(51, 61, 114, 0.15);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 12px 48px rgba(51, 61, 114, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.ceo-quote-icon {
    font-size: 4rem;
    color: #333D72;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -1rem;
}

.ceo-quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: #1a1a1a;
    margin: 1.5rem 0 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.ceo-info-modern {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(51, 61, 114, 0.15);
}

.ceo-name {
    font-size: 1.25rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #333D72;
    margin-bottom: 0.5rem;
}

.ceo-position {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.management-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(51, 61, 114, 0.1);
}

.management-title {
    font-size: 1.75rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.management-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.12);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.08),
                0 2px 8px rgba(51, 61, 114, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.management-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #333D72, transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.management-card:hover {
    border-color: rgba(51, 61, 114, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.15),
                0 8px 24px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.management-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(51, 61, 114, 0.1);
    box-shadow: 0 8px 24px rgba(51, 61, 114, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(51, 61, 114, 0.05), rgba(74, 86, 120, 0.03));
}

.management-card:hover .management-photo {
    transform: scale(1.05);
    border-color: rgba(51, 61, 114, 0.25);
    box-shadow: 0 12px 32px rgba(51, 61, 114, 0.2);
}

.management-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.management-card:hover .management-image {
    transform: scale(1.1);
}

.management-info {
    position: relative;
    z-index: 1;
}

.management-name {
    font-size: 1.125rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.management-role {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 400;
    line-height: 1.5;
}

/* Projects Section */
.projects {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.projects-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.project-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(51, 61, 114, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.project-card:hover::before {
    transform: translateX(100%);
}

.project-card:hover {
    border-color: rgba(51, 61, 114, 0.3);
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(51, 61, 114, 0.25),
                0 0 50px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #333D72 0%, #4a5678 50%, #5c6a8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.project-icon {
    font-size: 4rem;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    animation: float-subtle 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

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

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
}

.project-description {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.tag {
    background: rgba(51, 61, 114, 0.1);
    border: 1px solid rgba(51, 61, 114, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: #333D72;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(51, 61, 114, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    border-color: rgba(51, 61, 114, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.2),
                0 0 40px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(51, 61, 114, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.8;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333D72, #4a5678);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.author-info p {
    color: #4a5568;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

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

.contact-content {
    margin-top: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card.elegant-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.12);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.08),
                0 2px 8px rgba(51, 61, 114, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card.elegant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #333D72, transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.info-card.elegant-card:hover::before {
    opacity: 1;
}

.info-card.elegant-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(51, 61, 114, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.info-card.elegant-card:hover::after {
    opacity: 1;
}

.info-card.elegant-card:hover {
    border-color: rgba(51, 61, 114, 0.25);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.15),
                0 8px 24px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.info-card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(51, 61, 114, 0.1) 0%, rgba(74, 86, 120, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(51, 61, 114, 0.1);
    box-shadow: 0 4px 16px rgba(51, 61, 114, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.info-card.elegant-card:hover .info-card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(51, 61, 114, 0.15) 0%, rgba(74, 86, 120, 0.12) 100%);
    box-shadow: 0 8px 24px rgba(51, 61, 114, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.info-icon {
    font-size: 2.5rem;
    transition: transform 0.5s;
}

.info-card.elegant-card:hover .info-icon {
    transform: scale(1.1);
}

.info-card-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.info-card a {
    color: #333D72;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.info-card a:hover {
    color: #4a5678;
}

.social-description {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.social-link-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.6) 100%);
    border: 1px solid rgba(51, 61, 114, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-link-modern * {
    pointer-events: none;
}

.social-link-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.social-link-modern:hover::before {
    opacity: 1;
}

.social-link-modern.linkedin::before {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.08) 0%, rgba(10, 102, 194, 0.12) 100%);
}

.social-link-modern.instagram::before {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.08) 0%, rgba(253, 29, 29, 0.08) 50%, rgba(245, 96, 64, 0.12) 100%);
}

.social-link-modern.facebook::before {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.08) 0%, rgba(24, 119, 242, 0.12) 100%);
}

.social-icon-modern {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    will-change: background, box-shadow;
}

.social-icon-modern svg {
    width: 24px;
    height: 24px;
    transition: none;
    pointer-events: none;
}

.social-link-modern.linkedin .social-icon-modern {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(10, 102, 194, 0.15) 100%);
    color: #0a66c2;
}

.social-link-modern.instagram .social-icon-modern {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(245, 96, 64, 0.15) 100%);
    color: #e1306c;
}

.social-link-modern.facebook .social-icon-modern {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(24, 119, 242, 0.15) 100%);
    color: #1877f2;
}

.social-link-modern:hover .social-icon-modern {
    box-shadow: 0 8px 24px rgba(51, 61, 114, 0.2);
}

.social-link-modern.linkedin:hover .social-icon-modern {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.2) 0%, rgba(10, 102, 194, 0.25) 100%);
}

.social-link-modern.instagram:hover .social-icon-modern {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2) 0%, rgba(245, 96, 64, 0.25) 100%);
}

.social-link-modern.facebook:hover .social-icon-modern {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2) 0%, rgba(24, 119, 242, 0.25) 100%);
}

.social-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.social-link-modern.linkedin:hover .social-name {
    color: #0a66c2;
}

.social-link-modern.instagram:hover .social-name {
    color: #e1306c;
}

.social-link-modern.facebook:hover .social-name {
    color: #1877f2;
}

.social-link-modern:hover {
    border-color: rgba(51, 61, 114, 0.25);
    box-shadow: 0 12px 32px rgba(51, 61, 114, 0.12);
}

.social-card {
    grid-column: 1 / -1;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    justify-self: center;
}

.social-links-modern {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .social-card {
        grid-column: span 1;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Partners Section */
.partners {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.3);
}

.partners-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.partner-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 250px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(51, 61, 114, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(51, 61, 114, 0.3);
    box-shadow: 0 12px 40px rgba(51, 61, 114, 0.2),
                0 0 30px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.8);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

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

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

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(51, 61, 114, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #1a1a1a;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(51, 61, 114, 0.5);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(51, 61, 114, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(74, 85, 104, 0.5);
}

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

/* News Section */
.news {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

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

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

.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 61, 114, 0.15);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #333D72, #4a5678, #5c6a8f);
    transform: scaleY(0);
    transition: transform 0.5s;
}

.news-card:hover::before {
    transform: scaleY(1);
}

.news-card:hover {
    border-color: rgba(51, 61, 114, 0.3);
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 60px rgba(51, 61, 114, 0.2),
                0 0 40px rgba(51, 61, 114, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    background: linear-gradient(135deg, #333D72 0%, #4a5678 100%);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(51, 61, 114, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(201, 201, 201, 0.2);
    transition: all 0.3s;
}

.news-card:hover .news-date {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(51, 61, 114, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.date-day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.date-month {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
}

.news-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #333D72;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.news-link:hover {
    color: #4a5678;
}

/* Responsive Design - Tablet & Mobile */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        height: 350px;
        min-height: 300px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
    }
    
    .partner-card {
        max-width: 200px;
        height: 150px;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 48px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline-text {
        font-size: 0.95rem;
    }
    
    .button-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        height: 350px;
        max-width: 100%;
        margin: 2rem auto 0;
        display: flex;
        align-items: center;
    }
    
    .rotating-card {
        padding: 0;
        transition: opacity 0.8s ease;
    }
    
    .hero-slide-image {
        border-radius: 16px;
        transform: none !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .floating-orb {
        display: none;
    }
    
    /* Stats Section */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* About Section */
    .about-intro {
        margin: 2rem auto;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .portfolio-card {
        padding: 1.5rem;
    }
    
    .icon-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .vision-statement {
        padding: 2rem;
        margin: 3rem auto;
    }
    
    .vision-statement p {
        font-size: 1rem;
    }
    
    .values-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card-modern {
        padding: 2rem;
    }
    
    .ceo-card-modern {
        padding: 2rem;
    }
    
    .ceo-quote-text {
        font-size: 1.25rem;
    }
    
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .management-photo {
        width: 150px;
        height: 150px;
    }
    
    .portfolio-list {
        gap: 1.5rem;
    }
    
    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Partners Section */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-card {
        max-width: 100%;
        height: 120px;
        padding: 1.5rem;
    }
    
    /* Contact Section */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        grid-column: span 1;
    }
    
    .info-card.elegant-card {
        padding: 2rem;
    }
    
    .info-card-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    /* News Section */
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Section */
    .cta-container {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-logo img {
        height: 48px;
        max-width: 200px;
    }
    
    /* Section Padding */
    .services,
    .about,
    .projects,
    .testimonials,
    .partners,
    .contact,
    .news {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Mobile menu button - larger tap target */
    .mobile-menu-btn {
        font-size: 2rem;
        padding: 0.75rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 5rem 1rem 2rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-tagline-text {
        font-size: 0.875rem;
    }
    
    .hero-visual {
        height: 250px;
        margin: 1.5rem auto 0;
    }
    
    .rotating-card {
        padding: 0.75rem;
        transition: opacity 0.8s ease;
    }
    
    .hero-slide-image {
        border-radius: 12px;
        transform: none !important;
    }
    
    .floating-orb {
        display: none;
    }
    
    /* Stats Section */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Services Section */
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    /* About Section */
    .about {
        padding: 3rem 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .subsection-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .portfolio-card {
        padding: 1.5rem;
    }
    
    .icon-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .portfolio-title {
        font-size: 1rem;
    }
    
    .portfolio-description {
        font-size: 0.9rem;
    }
    
    .vision-statement {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .vision-statement p {
        font-size: 0.95rem;
    }
    
    .vision-highlight {
        font-size: 1.05rem !important;
    }
    
    .values-grid-modern {
        gap: 1rem;
    }
    
    .value-card-modern {
        padding: 1.5rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .value-title {
        font-size: 1rem;
    }
    
    .value-text {
        font-size: 0.9rem;
    }
    
    .ceo-card-modern {
        padding: 1.5rem;
    }
    
    .ceo-quote-icon {
        font-size: 3rem;
    }
    
    .ceo-quote-text {
        font-size: 1.125rem;
    }
    
    .ceo-name {
        font-size: 1.125rem;
    }
    
    .ceo-position {
        font-size: 0.875rem;
    }
    
    /* Management Section */
    .management-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .management-photo {
        width: 140px;
        height: 140px;
    }
    
    .management-card {
        padding: 1.5rem;
    }
    
    .management-name {
        font-size: 1rem;
    }
    
    .management-role {
        font-size: 0.875rem;
    }
    
    /* Partners Section */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partner-card {
        height: 100px;
        padding: 1rem;
    }
    
    /* Contact Section */
    .contact-info-grid {
        gap: 1rem;
    }
    
    .info-card.elegant-card {
        padding: 1.5rem;
    }
    
    .info-card-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .social-links-modern {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .social-link-modern {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
        gap: 1rem;
    }
    
    .social-icon-modern {
        width: 40px;
        height: 40px;
    }
    
    .social-icon-modern svg {
        width: 20px;
        height: 20px;
    }
    
    .social-name {
        font-size: 0.95rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-button-white {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* News Section */
    .news-card {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .news-date {
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 0.75rem 1rem;
    }
}

