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

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --accent-blue: #2563eb;
    --dark-blue: #1e40af;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --shadow: rgba(30, 58, 138, 0.1);
    --shadow-lg: rgba(30, 58, 138, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary-blue), var(--primary-blue));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-blue), var(--dark-blue));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 138, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    overflow: visible;
}

@media (max-width: 968px) {
    .navbar {
        overflow: visible;
    }
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.navbar:hover::before {
    left: 100%;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.05);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: rgba(59, 130, 246, 0.25);
    height: auto;
}

.navbar.scrolled .nav-container {
    height: 75px;
}

/* Navigation Bar Animation on Load */
@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    animation: navSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation Logo Animation */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-logo {
    animation: logoFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Navigation Menu Items Animation */
@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu li {
    animation: navItemFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.3s; }
.nav-menu li:nth-child(2) { animation-delay: 0.35s; }
.nav-menu li:nth-child(3) { animation-delay: 0.4s; }
.nav-menu li:nth-child(4) { animation-delay: 0.45s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }
.nav-menu li:nth-child(6) { animation-delay: 0.55s; }
.nav-menu li:nth-child(7) { animation-delay: 0.6s; }
.nav-menu li:nth-child(8) { animation-delay: 0.65s; }
.nav-menu li:nth-child(9) { animation-delay: 0.7s; }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 1;
    transition: height 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-left: 0;
    position: relative;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px;
    border-radius: 10px;
}

.nav-logo a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 138, 0.1));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover::before {
    opacity: 1;
}

.nav-logo a:hover {
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

.nav-logo a:active {
    transform: translateY(0);
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.nav-logo a:hover .nav-logo-img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--secondary-blue);
    background-color: rgba(219, 234, 254, 0.6);
    transform: translateY(-2px);
}

.nav-link span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-link:hover span {
    transform: translateX(2px);
}

.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: translateY(-1px);
}

.nav-link.active::before {
    display: none;
}

.nav-link.active::after {
    display: none;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 10px;
    animation: activeShimmer 3s ease-in-out infinite;
    z-index: 0;
}

.nav-link.active span {
    position: relative;
    z-index: 1;
}

@keyframes activeShimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-blue);
    transition: width 0.3s ease;
}

/* Mobile Menu Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
}

.nav-toggle:active {
    transform: scale(0.95);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-toggle:hover span {
    background: var(--secondary-blue);
}

.nav-toggle.active {
    background: rgba(59, 130, 246, 0.15);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--primary-blue);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background: var(--primary-blue);
}

/* Landing Section */
.landing {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Animated Background Elements */
.landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
    animation: backgroundShift 20s ease-in-out infinite;
}

.landing::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

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

/* Floating Geometric Shapes */
.landing-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--white);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.landing-content {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    gap: 60px;
    transition: opacity 0.3s ease-out;
    opacity: 1;
}

.landing-content.fade-out {
    opacity: 0;
}

.landing-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
    animation: slide-in-left 1s ease-out;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.landing-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 10px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(255, 255, 255, 0.05);
    line-height: 1.2;
    color: var(--white);
    animation: textShine 3s ease-in-out infinite;
    position: relative;
}

.landing-text h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.3) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes textShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

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

.company-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
    margin: 0 0 15px 0;
}

.company-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.95;
    margin: 30px 0 0 0;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    padding-left: 20px;
}

@keyframes pulseArrow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

.landing-logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slide-in-right 1s ease-out 0.2s both;
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.landing-logo {
    max-width: 500px;
    max-height: 800px;
    width: 100%;
    border-radius: 50px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
    animation: logo-float 3s ease-in-out infinite, logo-glow 4s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.landing-logo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
    opacity: 0;
}

.landing-logo:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 12px 40px rgba(255, 255, 255, 0.3)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
    }
    50% {
        filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
    }
}

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


/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

#about {
    position: relative;
    z-index: 2;
}

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

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
    letter-spacing: -0.5px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
    border-radius: 2px;
    animation: lineExpand 1s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
    animation: lineGrow 1.5s ease-out 0.3s forwards;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

@keyframes lineGrow {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

/* Clean Line Dividers Between Sections */
.section-line-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #3b82f6 20%, 
        #3b82f6 80%, 
        transparent 100%);
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    opacity: 0.7;
}

.section-line-divider.alt {
    background: linear-gradient(90deg, 
        transparent 0%, 
        #3b82f6 20%, 
        #3b82f6 80%, 
        transparent 100%);
    opacity: 0.7;
}

.content-box {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-blue), var(--primary-blue));
    transform: scaleY(0);
    transform-origin: top;
    animation: contentLineGrow 1s ease-out 0.5s forwards;
}

@keyframes contentLineGrow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-category {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--secondary-blue);
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.service-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-top-width: 5px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-category:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(59, 130, 246, 0.3));
}

.service-category h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-category ul {
    list-style: none;
}

.service-category ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
    font-size: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.service-category ul li:last-child {
    border-bottom: none;
}

.service-category ul li {
    transition: all 0.3s ease;
    cursor: default;
}

.service-category ul li:hover {
    padding-left: 30px;
    color: var(--primary-blue);
    font-weight: 500;
}

.service-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-category ul li:hover::before {
    transform: scale(1.2);
    color: var(--primary-blue);
}

/* Mission, Vision & Culture Section */
.mvc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mvc-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--secondary-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mvc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mvc-card:hover::after {
    transform: scaleX(1);
}

.mvc-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.mvc-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.mvc-card:hover .mvc-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(59, 130, 246, 0.3));
}

.mvc-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.mvc-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    text-align: left;
}

/* Placeholder Boxes */
.placeholder-box {
    background: var(--white);
    padding: 80px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    margin-top: 30px;
    border: 2px dashed var(--light-blue);
}

.placeholder-box p {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.client-card:hover::before {
    width: 300px;
    height: 300px;
}

.client-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: var(--secondary-blue);
}

.client-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
    margin-bottom: auto;
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-card p {
    margin: 0;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* Why Choose Us Section */
.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    position: relative;
    padding: 20px;
}

.intro-text::before,
.intro-text::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
}

.intro-text::before {
    top: 0;
}

.intro-text::after {
    bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--secondary-blue);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-top-width: 5px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.4));
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
}

.contact-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(59, 130, 246, 0.3));
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.closing-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.8;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Privacy Policy and Terms Section */
.privacy-terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-section {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 40px;
    border-top: 4px solid var(--secondary-blue);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.5s ease;
}

.policy-section:hover::before {
    left: 100%;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.policy-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.policy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
    border-radius: 2px;
}

.effective-date {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.policy-subsection {
    margin-bottom: 30px;
}

.policy-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-subsection p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.policy-list li:hover {
    padding-left: 35px;
    color: var(--primary-blue);
}

.policy-list li:hover::before {
    color: var(--primary-blue);
    transform: scale(1.2);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Responsive Design - Navigation */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 30px;
    }

    .nav-toggle {
        display: flex !important;
        order: 2;
    }

    .nav-logo {
        order: 1;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        width: 100%;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            0 10px 40px var(--shadow-lg),
            0 0 0 1px rgba(59, 130, 246, 0.1);
        padding: 30px 0;
        gap: 5px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1001;
        height: auto;
        visibility: hidden;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu.active::before {
        opacity: 1;
    }

    .nav-menu.active {
        left: 0;
        visibility: visible;
    }

    /* Backdrop overlay when menu is open - Mobile only */
    .nav-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: calc(100% - 40px);
        margin: 0 20px;
        padding: 18px 25px;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: visible;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) translateX(-10px);
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, var(--secondary-blue), var(--primary-blue));
        border-radius: 2px;
        transition: height 0.3s ease;
        opacity: 0;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        height: 60%;
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }

    .nav-link:hover {
        background-color: rgba(219, 234, 254, 0.6);
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    }

    .nav-link.active {
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
        color: var(--white);
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
        transform: translateX(5px);
    }

    .nav-link.active span {
        position: relative;
        z-index: 1;
    }

    .landing-content {
        flex-direction: column;
        text-align: center;
        padding: 0 40px;
        gap: 40px;
    }

    .landing-text {
        text-align: center;
        max-width: 100%;
    }

    .landing-logo {
        max-width: 250px;
        max-height: 250px;
    }

    .landing-text h1 {
        font-size: 3rem;
    }

    .company-subtitle {
        font-size: 1.5rem;
    }

    .company-tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .landing-content {
        padding: 0 30px;
        gap: 30px;
    }

    .landing-logo {
        max-width: 200px;
        max-height: 200px;
    }

    .landing-text h1 {
        font-size: 2.5rem;
    }

    .company-subtitle {
        font-size: 1.3rem;
    }

    .company-tagline {
        font-size: 1rem;
        margin-top: 20px;
        padding-top: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-logo a {
        font-size: 1.2rem;
        gap: 8px;
    }

    .nav-logo-img {
        height: 40px;
    }

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

    .content-box {
        padding: 25px;
    }

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

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

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

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .policy-section {
        padding: 25px;
    }

    .policy-title {
        font-size: 1.6rem;
    }

    .subsection-title {
        font-size: 1.1rem;
    }

    .policy-intro {
        font-size: 1rem;
    }
}

/* Particles Animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(var(--random-x, 100px)) scale(1);
        opacity: 0;
    }
}

/* Loading State */
body:not(.loaded) .landing-content {
    opacity: 0;
}

body.loaded .landing-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

@media (max-width: 480px) {
    .nav-logo a {
        font-size: 1rem;
        gap: 6px;
    }

    .nav-logo-img {
        height: 35px;
    }

    .landing-content {
        padding: 0 20px;
        gap: 25px;
    }

    .landing-logo {
        max-width: 150px;
        max-height: 150px;
    }

    .landing-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .company-subtitle {
        font-size: 1.1rem;
    }

    .company-tagline {
        font-size: 0.9rem;
        margin-top: 15px;
        padding-top: 15px;
    }

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

/* Additional Professional Enhancements */

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--secondary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improved image loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Better text rendering */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance optimization - reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

