/* Qatar-Inspired AVS Website Styles */

/* Color Variables */
:root {
    --primary-color: #085c54;
    --secondary-color: #B9ECDA;
    --accent-color: #D7FFED;
    --text-color: #343a40;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    
    /* Brand Header Color Scheme */
    --header-primary: #A2DFCB;
    --header-secondary: #B9ECDA;
    --header-accent: #D7FFED;
    --header-light: #D7FFED;
    --header-text: #2d5a3d;
    --header-text-light: #1a4025;
    --header-text-hover: #0f2e1a;
    
    --gradient-primary: linear-gradient(135deg, #A2DFCB, #B9ECDA);
    --gradient-hover: linear-gradient(135deg, #8fd4bb, #a6e3cd);
    --gradient-header: linear-gradient(135deg, #A2DFCB 0%, #B9ECDA 50%, #D7FFED 100%);
    --gradient-header-reverse: linear-gradient(135deg, #D7FFED 0%, #B9ECDA 50%, #A2DFCB 100%);
    --gradient-header-light: linear-gradient(135deg, #D7FFED 0%, rgba(255, 255, 255, 0.9) 100%);
    
    --shadow-light: 0 4px 15px rgba(162, 223, 203, 0.15);
    --shadow-medium: 0 8px 25px rgba(162, 223, 203, 0.2);
    --shadow-heavy: 0 15px 40px rgba(162, 223, 203, 0.25);
    --shadow-header: 0 4px 20px rgba(162, 223, 203, 0.2);
    --shadow-header-strong: 0 8px 30px rgba(162, 223, 203, 0.3);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    color: var(--text-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #095c54;
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: #074641;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: var(--text-color);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Professional Header Styles */
.professional-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 1000;
}

.professional-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Header Top Bar */
.header-top {
    background: linear-gradient(270deg, #A8E6CF 0%, #7FCDCD 50%, #2D8D8D 100%);
    padding: 8px 0;
    font-size: 0.85rem;
    color: white;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.info-item i {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

.header-social .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Social Media Brand Colors */
.social-link.linkedin,
.social-icon.linkedin {
    background: #0077B5;
    color: white;
}

.social-link.linkedin:hover,
.social-icon.linkedin:hover {
    background: #005885;
    color: white;
}

.social-link.x,
.social-icon.x {
    background: #000000;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.social-link.x:hover,
.social-icon.x:hover {
    background: #333333;
    color: white;
}

.social-link.facebook,
.social-icon.facebook {
    background: #4267B2;
    color: white;
}

.social-link.facebook:hover,
.social-icon.facebook:hover {
    background: #365899;
    color: white;
}

.social-link.instagram,
.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
}

.social-link.instagram:hover,
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

/* Main Navigation */
.main-nav {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 120px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #095c54;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

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

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

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2d3748;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #095c54;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover {
    color: #095c54;
    background: rgba(9, 92, 84, 0.08);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: #095c54;
    font-weight: 600;
    background: rgba(9, 92, 84, 0.12);
}

.nav-link.active::after {
    width: 80%;
}

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


.btn-cta {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #095c54, #074641);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(9, 92, 84, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-cta::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.6s ease;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #074641, #063a35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 92, 84, 0.35);
    color: white;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #095c54;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-info {
        gap: 1rem;
    }
    
    .info-item {
        font-size: 0.8rem;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        background: rgba(9, 92, 84, 0.05);
        border: 1px solid rgba(9, 92, 84, 0.1);
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .brand-text {
        display: none;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 50px;
}

.hero-slide {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(162, 223, 203, 0.1) 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(162, 223, 203, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(185, 236, 218, 0.06) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="professional-grid" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="none"/><circle cx="25" cy="25" r="1" fill="%23A2DFCB" opacity="0.15"/><circle cx="75" cy="25" r="1" fill="%23A2DFCB" opacity="0.15"/><circle cx="25" cy="75" r="1" fill="%23A2DFCB" opacity="0.15"/><circle cx="75" cy="75" r="1" fill="%23A2DFCB" opacity="0.15"/><circle cx="50" cy="50" r="1.5" fill="%23B9ECDA" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23professional-grid)"/></svg>');
    opacity: 0.4;
    animation: subtleMove 25s ease-in-out infinite;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="professional-lines" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="none"/><line x1="0" y1="100" x2="200" y2="100" stroke="%23A2DFCB" stroke-width="0.5" opacity="0.1"/><line x1="100" y1="0" x2="100" y2="200" stroke="%23A2DFCB" stroke-width="0.5" opacity="0.1"/><line x1="0" y1="50" x2="200" y2="50" stroke="%23B9ECDA" stroke-width="0.3" opacity="0.08"/><line x1="0" y1="150" x2="200" y2="150" stroke="%23B9ECDA" stroke-width="0.3" opacity="0.08"/><line x1="50" y1="0" x2="50" y2="200" stroke="%23B9ECDA" stroke-width="0.3" opacity="0.08"/><line x1="150" y1="0" x2="150" y2="200" stroke="%23B9ECDA" stroke-width="0.3" opacity="0.08"/></pattern></defs><rect width="200" height="200" fill="url(%23professional-lines)"/></svg>');
    opacity: 0.2;
    animation: gridShift 40s ease-in-out infinite alternate;
    z-index: 1;
}

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

.hero-title {
    color: #095c54;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-highlight {
    color: #095c54;
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(9, 92, 84, 0.3);
    animation: heroShine 3s ease-in-out infinite;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -4px;
    right: -4px;
    bottom: -2px;
    background: #095c54;
    border-radius: 8px;
    z-index: -1;
    opacity: 0.1;
    filter: blur(8px);
    animation: heroGlow 2s ease-in-out infinite alternate;
}

.hero-highlight::after {
    content: '★';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.5rem;
    color: #095c54;
    animation: heroStarTwinkle 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(9, 92, 84, 0.6);
}

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

@keyframes heroGlow {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

@keyframes heroStarTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.2) rotate(90deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(180deg);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.3) rotate(270deg);
    }
}

.background-verification-title {
    color: #095c54;
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(162, 223, 203, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(162, 223, 203, 0.15);
}

.stat-icon-3d {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(145deg, #095c54, #074641);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 16px rgba(9, 92, 84, 0.3),
        0 4px 8px rgba(9, 92, 84, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: float3d 3s ease-in-out infinite;
}

.stat-icon-3d:hover {
    transform: translateY(-4px) scale(1.1) rotateX(15deg);
    box-shadow: 
        0 12px 24px rgba(9, 92, 84, 0.4),
        0 6px 12px rgba(9, 92, 84, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.15),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.stat-icon-3d i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-5px) rotateX(5deg);
    }
}

.hero-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 400;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(162, 223, 203, 0.15);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.trust-indicators .trust-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 400;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(162, 223, 203, 0.15);
    transition: all 0.3s ease;
}

.trust-indicators .trust-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.trust-indicators .trust-item i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    perspective: 1000px;
    transform-style: preserve-3d;
}
/* 3D Scene Container */
.hero-3d-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: sceneRotate 20s ease-in-out infinite;
}

/* Central 3D Element */
.hero-3d-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(15deg) rotateY(-15deg);
    width: 280px;
    height: 280px;
    transform-style: preserve-3d;
    animation: centerFloat 6s ease-in-out infinite;
}

/* Main Verification Sphere */
.verification-sphere {
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(162, 223, 203, 0.8)),
        linear-gradient(135deg, rgba(162, 223, 203, 0.9), rgba(185, 236, 218, 0.7));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(50px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 30px 60px rgba(162, 223, 203, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 5px 15px rgba(255, 255, 255, 0.8),
        inset 0 -5px 15px rgba(162, 223, 203, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    animation: spherePulse 4s ease-in-out infinite;
}

.verification-sphere::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: conic-gradient(
        from 0deg,
        rgba(162, 223, 203, 0.2),
        rgba(185, 236, 218, 0.3),
        rgba(215, 255, 237, 0.2),
        rgba(162, 223, 203, 0.2)
    );
    border-radius: 50%;
    animation: rotateGlow 8s linear infinite;
    z-index: -1;
}

.verification-sphere i {
    font-size: 4rem;
    color: var(--text-color);
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(162, 223, 203, 0.4);
    filter: drop-shadow(0 3px 6px rgba(162, 223, 203, 0.3));
    animation: iconGlow 3s ease-in-out infinite alternate;
}

/* 3D Geometric Shapes */
.shape-3d {
    position: absolute;
    transform-style: preserve-3d;
}

.shape-cube {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 15%;
    transform: rotateX(45deg) rotateY(45deg) translateZ(100px);
    animation: cubeRotate 12s linear infinite;
}

.shape-cube .face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(162, 223, 203, 0.8), rgba(185, 236, 218, 0.6));
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.shape-cube .face.front { transform: translateZ(40px); }
.shape-cube .face.back { transform: translateZ(-40px) rotateY(180deg); }
.shape-cube .face.right { transform: rotateY(90deg) translateZ(40px); }
.shape-cube .face.left { transform: rotateY(-90deg) translateZ(40px); }
.shape-cube .face.top { transform: rotateX(90deg) translateZ(40px); }
.shape-cube .face.bottom { transform: rotateX(-90deg) translateZ(40px); }

.shape-pyramid {
    width: 0;
    height: 0;
    bottom: 20%;
    left: 10%;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(185, 236, 218, 0.7);
    transform: rotateX(30deg) rotateZ(15deg) translateZ(80px);
    animation: pyramidFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(162, 223, 203, 0.3));
}

.shape-ring {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 5%;
    border: 15px solid rgba(162, 223, 203, 0.6);
    border-radius: 50%;
    transform: rotateY(60deg) rotateX(30deg) translateZ(60px);
    animation: ringRotate 10s linear infinite;
    box-shadow: 
        0 15px 30px rgba(162, 223, 203, 0.2),
        inset 0 5px 10px rgba(255, 255, 255, 0.3);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(162, 223, 203, 0.8), rgba(185, 236, 218, 0.4));
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 25%; animation-delay: 2s; }
.particle:nth-child(3) { bottom: 25%; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { bottom: 35%; right: 20%; animation-delay: 6s; }
.particle:nth-child(5) { top: 50%; left: 15%; animation-delay: 8s; }
.particle:nth-child(6) { top: 70%; right: 30%; animation-delay: 10s; }

/* Background Grid */
.hero-3d-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(162, 223, 203, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(162, 223, 203, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateZ(-200px);
    opacity: 0.3;
    animation: gridMove 20s ease-in-out infinite;
}

/* 3D Animations */
@keyframes sceneRotate {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(5deg); }
}

@keyframes centerFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) rotateX(15deg) rotateY(-15deg) translateZ(0px);
    }
    50% { 
        transform: translate(-50%, -50%) rotateX(20deg) rotateY(-10deg) translateZ(20px);
    }
}

@keyframes spherePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) translateZ(50px) scale(1);
        box-shadow: 
            0 30px 60px rgba(162, 223, 203, 0.3),
            0 15px 30px rgba(0, 0, 0, 0.1),
            inset 0 5px 15px rgba(255, 255, 255, 0.8),
            inset 0 -5px 15px rgba(162, 223, 203, 0.4);
    }
    50% { 
        transform: translate(-50%, -50%) translateZ(70px) scale(1.05);
        box-shadow: 
            0 40px 80px rgba(162, 223, 203, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.15),
            inset 0 8px 20px rgba(255, 255, 255, 0.9),
            inset 0 -8px 20px rgba(162, 223, 203, 0.5);
    }
}

@keyframes iconGlow {
    0% { 
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.2),
            0 2px 4px rgba(162, 223, 203, 0.4);
    }
    100% { 
        text-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.3),
            0 3px 6px rgba(162, 223, 203, 0.6),
            0 0 20px rgba(162, 223, 203, 0.4);
    }
}

@keyframes cubeRotate {
    0% { transform: rotateX(45deg) rotateY(45deg) translateZ(100px); }
    100% { transform: rotateX(45deg) rotateY(405deg) translateZ(100px); }
}

@keyframes pyramidFloat {
    0%, 100% { 
        transform: rotateX(30deg) rotateZ(15deg) translateZ(80px) translateY(0px);
    }
    50% { 
        transform: rotateX(35deg) rotateZ(20deg) translateZ(100px) translateY(-10px);
    }
}

@keyframes ringRotate {
    0% { transform: rotateY(60deg) rotateX(30deg) translateZ(60px); }
    100% { transform: rotateY(420deg) rotateX(30deg) translateZ(60px); }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-30px) translateX(-5px) scale(1.1);
        opacity: 1;
    }
    75% { 
        transform: translateY(-15px) translateX(-10px) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes gridMove {
    0%, 100% { 
        transform: perspective(500px) rotateX(60deg) translateZ(-200px) translateX(0px);
    }
    50% { 
        transform: perspective(500px) rotateX(65deg) translateZ(-180px) translateX(-25px);
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 1px solid rgba(162, 223, 203, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) brightness(0.3);
}

.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(162, 223, 203, 0.6);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Services Section */
.services-section {
    background: var(--white);
    position: relative;
}

.service-card {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.service-card .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.7s ease;
}

.service-card .slide.slide1 {
    background: linear-gradient(180deg, #A8E6CF 0%, #7FCDCD 50%, #2D8D8D 100%);
    z-index: 2;
    transform: translateY(0);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

/* Different gradient for each service card column */
.row .col-lg-4:nth-child(1) .service-card .slide.slide1 {
    background: linear-gradient(180deg, #A8E6CF 0%, #7FCDCD 50%, #2D8D8D 100%);
}

.row .col-lg-4:nth-child(2) .service-card .slide.slide1 {
    background: linear-gradient(180deg, #B9ECDA 0%, #85D4C7 50%, #3A9B9B 100%);
}

.row .col-lg-4:nth-child(3) .service-card .slide.slide1 {
    background: linear-gradient(180deg #D7FFED 0%, #9AE6D4 50%, #4DB5B5 100%);
}

.row .col-lg-4:nth-child(4) .service-card .slide.slide1 {
    background: linear-gradient(180deg, #A2DFCB 0%, #7FCDCD 50%, #2D8D8D 100%);
}

.row .col-lg-4:nth-child(5) .service-card .slide.slide1 {
    background: linear-gradient(180deg, #C2E8D7 0%, #8FD6CC 50%, #3A9B9B 100%);
}

.row .col-lg-4:nth-child(6) .service-card .slide.slide1 {
    background: linear-gradient(180deg, #B5E4D1 0%, #82D2C9 50%, #317F7F 100%);
}

.service-card .slide.slide2 {
    background: var(--white);
    padding: 2rem;
    box-sizing: border-box;
    transform: translateY(100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 1;
}

.service-card:hover .slide.slide1 {
    transform: translateY(-100%);
}

.service-card:hover .slide.slide2 {
    transform: translateY(0);
}

.service-card .slide.slide2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    border-radius: 2px;
}

.service-card .slide.slide2 .content {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.service-card .slide.slide2 .content h4 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card .slide.slide2 .content p {
    margin: 0 0 1.5rem 0;
    color: var(--dark-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}


.service-icon {
    width: 100px;
    height: 100px;
    background: #fafafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}


.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Service icon colors - each card gets a unique color from its gradient */
.row .col-lg-4:nth-child(1) .service-card .service-icon i {
    color: #2D8D8D;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.row .col-lg-4:nth-child(2) .service-card .service-icon i {
    color: #3A9B9B;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.row .col-lg-4:nth-child(3) .service-card .service-icon i {
    color: #4DB5B5;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.row .col-lg-4:nth-child(4) .service-card .service-icon i {
    color: #2D8D8D;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.row .col-lg-4:nth-child(5) .service-card .service-icon i {
    color: #3A9B9B;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.row .col-lg-4:nth-child(6) .service-card .service-icon i {
    color: #317F7F;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.slide1-content {
    color: white;
    text-align: center;
}

.slide1-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide1-content p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    line-height: 1.4;
}

/* Specific font colors for each gradient to ensure optimal contrast */
.row .col-lg-4:nth-child(1) .service-card .slide1-content h4 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(45, 141, 141, 0.4);
}

.row .col-lg-4:nth-child(1) .service-card .slide1-content p {
    color: white;
    text-shadow: 0 2px 4px rgba(45, 141, 141, 0.4);
}

.row .col-lg-4:nth-child(2) .service-card .slide1-content h4 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(58, 155, 155, 0.4);
}

.row .col-lg-4:nth-child(2) .service-card .slide1-content p {
    color: white;
    text-shadow: 0 2px 4px rgba(58, 155, 155, 0.4);
}

.row .col-lg-4:nth-child(3) .service-card .slide1-content h4 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(77, 181, 181, 0.4);
}

.row .col-lg-4:nth-child(3) .service-card .slide1-content p {
    color: white;
    text-shadow: 0 2px 4px rgba(77, 181, 181, 0.4);
}

.row .col-lg-4:nth-child(4) .service-card .slide1-content h4 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(45, 141, 141, 0.4);
}

.row .col-lg-4:nth-child(4) .service-card .slide1-content p {
    color: white;
    text-shadow: 0 2px 4px rgba(45, 141, 141, 0.4);
}

.row .col-lg-4:nth-child(5) .service-card .slide1-content h4 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(58, 155, 155, 0.4);
}

.row .col-lg-4:nth-child(5) .service-card .slide1-content p {
    color: white;
    text-shadow: 0 2px 4px rgba(58, 155, 155, 0.4);
}

.row .col-lg-4:nth-child(6) .service-card .slide1-content h4 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(49, 127, 127, 0.4);
}

.row .col-lg-4:nth-child(6) .service-card .slide1-content p {
    color: white;
    text-shadow: 0 2px 4px rgba(49, 127, 127, 0.4);
}


.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    width: 100%;
}

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

.service-features i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.6rem;
    flex-shrink: 0;
}

.service-card .slide.slide2 .content .btn {
    margin-top: auto;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    min-width: 120px;
}


/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="about-pattern" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="none"/><circle cx="100" cy="100" r="2" fill="%23A2DFCB" opacity="0.1"/><circle cx="50" cy="50" r="1.5" fill="%23B9ECDA" opacity="0.08"/><circle cx="150" cy="150" r="1.5" fill="%23B9ECDA" opacity="0.08"/></pattern></defs><rect width="200" height="200" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* About Badge */
.about-badge {
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-text {
    background: linear-gradient(135deg, #8A1538 0%, #A61E47 50%, #C22756 100%);
    color: #ffffff;
    font-family: 'Playfair Display', 'Georgia', serif;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(138, 21, 56, 0.4),
        0 4px 12px rgba(138, 21, 56, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.badge-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 2s ease-in-out infinite;
    pointer-events: none;
}

.badge-text::after {
    content: '★';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #ffffff;
    animation: starTwinkle 2s ease-in-out infinite;
}

.about-badge:hover .badge-text {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(138, 21, 56, 0.5),
        0 6px 18px rgba(138, 21, 56, 0.4),
        inset 0 3px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #C22756 0%, #A61E47 50%, #8A1538 100%);
}

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

@keyframes badgeShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.1);
    }
}

/* About Content */
.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* About Highlights */
.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.highlight-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.highlight-content p {
    font-size: 0.9rem;
    color: #495057;
    margin: 0;
}

/* Stats Container */
.stats-container {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(162, 223, 203, 0.2);
}

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

.stat-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Core Values Section */
.core-values-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(10px);
}

.values-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.value-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    position: relative;
    margin-top: 4rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(162, 223, 203, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(200deg, #A8E6CF 0%, #7FCDCD 50%, #2D8D8D 100%);
    z-index: 1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="cta-pattern" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="none"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="150" cy="50" r="15" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/><circle cx="50" cy="150" r="25" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/><circle cx="150" cy="150" r="18" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.4;
    animation: ctaPatternMove 20s linear infinite;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    padding: 4rem 3rem;
}

/* CTA Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: ctaBadgeFloat 3s ease-in-out infinite;
}

.cta-badge i {
    font-size: 1rem;
    animation: ctaBadgeIcon 2s ease-in-out infinite;
}

/* CTA Text */
.cta-text {
    text-align: left;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* CTA Stats */
.cta-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.cta-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* CTA Actions */
.cta-actions {
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(9, 92, 84, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* CTA Contact */
.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item:hover {
    color: white;
    transform: translateX(5px);
}

.contact-item:hover i {
    color: white;
}

/* Animations */
@keyframes ctaPatternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

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

@keyframes ctaBadgeIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-content {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-stats {
        justify-content: space-around;
        gap: 1rem;
    }
    
    .cta-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,25 50,50 Q75,75 100,50" stroke="%23A2DFCB" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M0,25 Q25,0 50,25 Q75,50 100,25" stroke="%23B9ECDA" stroke-width="0.3" fill="none" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(162, 223, 203, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(162, 223, 203, 0.2);
    overflow: hidden;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(162, 223, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(185, 236, 218, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(162, 223, 203, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 75%, 
        var(--primary-color) 100%);
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(162, 223, 203, 0.4);
    animation: timelineFlow 3s ease-in-out infinite;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(162, 223, 203, 0.2) 25%, 
        rgba(162, 223, 203, 0.4) 50%, 
        rgba(162, 223, 203, 0.2) 75%, 
        transparent 100%);
    filter: blur(4px);
    border-radius: 6px;
    animation: timelineGlow 2s ease-in-out infinite alternate;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 25%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0.3) 75%, 
        transparent 100%);
    border-radius: 3px;
    animation: timelineShine 4s ease-in-out infinite;
}

/* Timeline Animation Effects */
@keyframes timelineFlow {
    0%, 100% {
        background: linear-gradient(90deg, 
            var(--primary-color) 0%, 
            var(--secondary-color) 25%, 
            var(--accent-color) 50%, 
            var(--secondary-color) 75%, 
            var(--primary-color) 100%);
    }
    50% {
        background: linear-gradient(90deg, 
            var(--secondary-color) 0%, 
            var(--accent-color) 25%, 
            var(--primary-color) 50%, 
            var(--accent-color) 75%, 
            var(--secondary-color) 100%);
    }
}

@keyframes timelineGlow {
    0% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    100% {
        opacity: 0.6;
        transform: scaleY(1.2);
    }
}

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

/* Timeline Dots */
.timeline-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 12.5%;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 6px var(--primary-color),
        0 4px 12px rgba(9, 92, 84, 0.3);
    animation: timelineDot 2s ease-in-out infinite;
}

/* Create multiple dots using pseudo-elements */
.process-timeline .timeline-dots {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 0;
    z-index: 3;
}

.process-timeline .timeline-dots::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 37.5%;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 6px var(--secondary-color),
        0 4px 12px rgba(9, 92, 84, 0.3);
    animation: timelineDot 2s ease-in-out infinite 0.5s;
}

.process-timeline .timeline-dots::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 62.5%;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 6px var(--accent-color),
        0 4px 12px rgba(9, 92, 84, 0.3);
    animation: timelineDot 2s ease-in-out infinite 1s;
}

.process-timeline .timeline-end-dot {
    position: absolute;
    top: 50%;
    right: 8%;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 6px var(--primary-color),
        0 4px 12px rgba(9, 92, 84, 0.3);
    animation: timelineDot 2s ease-in-out infinite 1.5s;
    z-index: 3;
}

@keyframes timelineDot {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 
            0 0 0 4px rgba(255, 255, 255, 1),
            0 0 0 6px var(--primary-color),
            0 4px 12px rgba(9, 92, 84, 0.3);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        box-shadow: 
            0 0 0 6px rgba(255, 255, 255, 1),
            0 0 0 8px var(--primary-color),
            0 6px 18px rgba(9, 92, 84, 0.4);
    }
}

/* Process Steps */
.process-step {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease forwards;
}

.process-step[data-step="1"] { animation-delay: 0.1s; }
.process-step[data-step="2"] { animation-delay: 0.2s; }
.process-step[data-step="3"] { animation-delay: 0.3s; }
.process-step[data-step="4"] { animation-delay: 0.4s; }

.step-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(162, 223, 203, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.step-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-wrapper:hover::before {
    transform: scaleX(1);
}

.step-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    background: rgba(255, 255, 255, 1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 3;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.step-number span {
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.step-wrapper:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    background: var(--gradient-hover);
}

.step-content {
    text-align: center;
    padding-top: 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(162, 223, 203, 0.3);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.step-wrapper:hover .step-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.step-wrapper:hover .step-icon i {
    color: var(--text-color);
}

.step-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Feature Tags */
.step-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gradient-primary);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Process Benefits */
.process-benefits {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(162, 223, 203, 0.2);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: var(--text-color);
}

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

.benefit-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Animation for fade in up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(200deg, rgb(168, 230, 207) 0%, rgb(127, 205, 205) 50%, rgb(45, 141, 141) 100%);
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--text-color);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-form-wrapper {
    background: linear-gradient(200deg, #A8E6CF 0%, #7FCDCD 50%, #2D8D8D 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid rgba(162, 223, 203, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(162, 223, 203, 0.25);
    outline: none;
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--text-color);
}

.contact-details h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-details p {
    color: var(--dark-gray);
    margin: 0;
}

.social-links h5 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    color: var(--text-color);
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand h5 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    color: var(--text-color);
}

.footer-divider {
    border-color: rgba(162, 223, 203, 0.3);
    margin: 2rem 0;
}

.footer-copyright,
.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-text i {
    color: var(--primary-color);
}

/* Animations */
@keyframes professionalFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
    }
    50% {
        transform: translateY(-12px) scale(1.03);
    }
    75% {
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes professionalFloatSlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    33% {
        transform: translateY(-5px) scale(1.05);
    }
    66% {
        transform: translateY(-8px) scale(1.08);
    }
}

@keyframes subtleMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-2px) translateY(-2px);
    }
    50% {
        transform: translateX(-4px) translateY(0);
    }
    75% {
        transform: translateX(-2px) translateY(2px);
    }
}

@keyframes gridShift {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-10px) translateY(-10px);
    }
}

@keyframes patternFloat {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-5px) translateY(-5px);
    }
    50% {
        transform: translateX(-10px) translateY(0);
    }
    75% {
        transform: translateX(-5px) translateY(5px);
    }
}

@keyframes patternShift {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    33% {
        transform: translateX(5px) translateY(-3px) rotate(1deg);
    }
    66% {
        transform: translateX(-3px) translateY(5px) rotate(-1deg);
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse3d {
    0%, 100% {
        transform: translateY(-4px) scale(1.15) rotateX(10deg);
        box-shadow: 
            0 12px 24px rgba(9, 92, 84, 0.4),
            0 6px 12px rgba(9, 92, 84, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.15),
            inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: translateY(-6px) scale(1.18) rotateX(15deg);
        box-shadow: 
            0 16px 32px rgba(9, 92, 84, 0.5),
            0 8px 16px rgba(9, 92, 84, 0.4),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    }
}

@keyframes decorativeFloat1 {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes decorativeFloat2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.7;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes patternMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-10px) translateY(-10px);
    }
    50% {
        transform: translateX(-20px) translateY(0);
    }
    75% {
        transform: translateX(-10px) translateY(10px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes patternRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    .navbar-nav {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 25px;
        margin-top: 20px;
        border: 1px solid rgba(162, 223, 203, 0.3);
        box-shadow: 0 12px 40px rgba(162, 223, 203, 0.15);
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
        padding: 15px 20px;
        border-radius: 15px;
        color: var(--header-text);
        background: var(--gradient-header-light);
        border: 1px solid rgba(162, 223, 203, 0.2);
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--gradient-header);
        color: var(--header-text);
        transform: translateX(8px);
        box-shadow: 0 6px 20px rgba(162, 223, 203, 0.25);
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    }
    
    .navbar .btn-primary {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-visual {
        height: 350px;
        perspective: 800px;
    }
    
    .hero-3d-center {
        width: 200px;
        height: 200px;
    }
    
    .verification-sphere {
        width: 150px;
        height: 150px;
    }
    
    .verification-sphere i {
        font-size: 2.5rem;
    }
    
    .shape-cube {
        width: 50px;
        height: 50px;
    }
    
    .shape-cube .face {
        width: 50px;
        height: 50px;
    }
    
    .shape-ring {
        width: 80px;
        height: 80px;
        border-width: 10px;
    }
    
    .shape-pyramid {
        border-left-width: 25px;
        border-right-width: 25px;
        border-bottom-width: 45px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .hero-visual {
        height: 250px;
        margin-top: 2rem;
    }
    
    .verification-shield,
    .verification-badge,
    .document-stack {
        width: 120px;
        height: 120px;
    }
    
    .verification-shield i,
    .verification-badge i,
    .document-stack i {
        font-size: 2.5rem;
    }
    
    .hero-stats .stat-item {
        margin-bottom: 1rem;
    }
    
    .hero-features .feature-item,
    .trust-indicators .trust-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .about-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Loading States */
.loading {
    opacity: 0;
    transform: translateY(20px);
}

.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Accessibility */
.keyboard-navigation *:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-slider,
    .footer {
        display: none;
    }
    
    .section-title {
        color: #000;
    }
    
    .btn {
        display: none;
    }
}

/* Professional Process Section Styles */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(162, 223, 203, 0.1), rgba(185, 236, 218, 0.05));
    animation: float 6s ease-in-out infinite;
}

.floating-triangle {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid rgba(162, 223, 203, 0.08);
    animation: float 8s ease-in-out infinite reverse;
}

.floating-square {
    position: absolute;
    top: 60%;
    right: 20%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(185, 236, 218, 0.08), rgba(162, 223, 203, 0.05));
    transform: rotate(45deg);
    animation: float 7s ease-in-out infinite;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-header);
    color: var(--header-text);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    animation: badgeFloat 3s ease-in-out infinite;
}

/* Simple Elegant Process Workflow */
.modern-process-workflow {
    position: relative;
    z-index: 2;
}

.timeline-progression {
    display: none;
}

.progression-line {
    display: none;
}

.progression-flow {
    display: none;
}

/* Elegant Workflow Step Cards */
.workflow-step-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(162, 223, 203, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.workflow-step-card::before {
    display: none;
}

.workflow-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(162, 223, 203, 0.12);
}

.step-indicator {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(162, 223, 203, 0.3);
    margin-bottom: 1rem;
}

.step-number::before {
    display: none;
}

.step-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(162, 223, 203, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.step-badge {
    display: none;
}

.workflow-step-card:hover .step-icon-wrapper {
    background: rgba(162, 223, 203, 0.15);
}

.workflow-step-card:hover .step-icon {
    color: var(--secondary-color);
}

.step-body {
    text-align: center;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--header-text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.step-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.step-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(162, 223, 203, 0.08);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(162, 223, 203, 0.15);
    transition: all 0.3s ease;
}

.highlight-item::before {
    display: none;
}

.highlight-item:hover::before {
    display: none;
}

.highlight-item:hover {
    background: rgba(162, 223, 203, 0.15);
    transform: translateY(-2px);
}

.step-timing {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(162, 223, 203, 0.2);
}

/* Simplified Animations */
@keyframes stepPulse {
    display: none;
}

@keyframes stepGlow {
    display: none;
}

@keyframes flowAnimation {
    display: none;
}

/* Process Stats */
.process-stats-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(162, 223, 203, 0.2);
}

.stat-item {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--header-text);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

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

@keyframes progressFlow {
    display: none;
}

@keyframes pulse {
    display: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .floating-circle,
    .floating-triangle,
    .floating-square {
        opacity: 0.5;
        transform: scale(0.5);
    }
    
    .workflow-step-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .step-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-highlights {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .highlight-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .step-timing {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Professional Elegant Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="contact-grid" width="60" height="60" patternUnits="userSpaceOnUse"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="%23A2DFCB" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23contact-grid)"/></svg>');
    opacity: 0.4;
}

.contact-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(162, 223, 203, 0.1), rgba(185, 236, 218, 0.05));
    animation: contactFloat 8s ease-in-out infinite;
}

.floating-shape.shape-1 {
    top: 15%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    top: 70%;
    right: 15%;
    width: 80px;
    height: 80px;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    bottom: 10%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 4s;
}

.contact-header {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-header);
    color: var(--header-text);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    animation: badgeFloat 3s ease-in-out infinite;
}

.contact-content {
    position: relative;
    z-index: 2;
}

/* Contact Form Container */
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(162, 223, 203, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 30px rgba(162, 223, 203, 0.2);
}

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

.form-header h3 {
    color: var(--header-text);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Professional Form Styling */
.professional-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.professional-form .input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(162, 223, 203, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(5px);
}

.form-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(162, 223, 203, 0.1);
}

.form-input:focus + .input-label {
    color: var(--primary-color);
    transform: translateY(-120%) scale(0.85);
}

.input-label {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0.7;
}

.form-input:focus ~ .input-icon,
.form-input:valid ~ .input-icon {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.form-input:valid + .input-label {
    transform: translateY(-120%) scale(0.85);
    color: var(--primary-color);
}

/* Submit Button */
.btn-submit {
    position: relative;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(162, 223, 203, 0.3);
}

.btn-submit:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(162, 223, 203, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Contact Information Container */
.contact-info-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(162, 223, 203, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    min-height: 600px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-info-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 30px rgba(162, 223, 203, 0.2);
}

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

.info-header h3 {
    color: var(--header-text);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-header p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 2rem;
    flex: 1;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: rgba(162, 223, 203, 0.05);
    border: 1px solid rgba(162, 223, 203, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(162, 223, 203, 0.1);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(162, 223, 203, 0.3);
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-content h4 {
    color: var(--header-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.method-link:hover {
    color: var(--header-text);
    transform: translateX(3px);
}

/* Social Connect */
.social-connect {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(162, 223, 203, 0.2);
}

.social-connect h4 {
    color: var(--header-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(162, 223, 203, 0.1);
    border: 1px solid rgba(162, 223, 203, 0.2);
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(162, 223, 203, 0.3);
}

/* Animations */
@keyframes contactFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
    
    .form-input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
    
    .input-label {
        left: 2.5rem;
    }
    
    .input-icon {
        left: 10px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-shape {
        opacity: 0.3;
        transform: scale(0.6);
    }
}