/* Reset and Base Styles */
/* Main reset for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #d4af37;
    --accent-color: #c41e3a;
    --dark-color: #0f1b2e;
    --light-color: #f5f5f0;
    --text-color: #1a1a1a;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--secondary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section - Modern Split Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f5 50%, #ffffff 100%);
}

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

/* Hero Slider Wrapper */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 80vh;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 2000px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateX(100px) rotateY(15deg) scale(0.9);
    transform-origin: center center;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 1;
    filter: blur(5px);
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
    pointer-events: all;
    z-index: 3;
    filter: blur(0);
}

.hero-slide.prev {
    transform: translateX(-100px) rotateY(-15deg) scale(0.9);
    z-index: 2;
    opacity: 0.3;
    filter: blur(3px);
}

.hero-slide.next {
    transform: translateX(100px) rotateY(15deg) scale(0.9);
    z-index: 2;
    opacity: 0.3;
    filter: blur(3px);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    animation: slideContentIn 0.8s ease backwards;
}

.hero-slide.active .hero-slide-content {
    animation: slideContentIn 0.8s ease 0.3s backwards;
}

.hero-slide-visual {
    position: relative;
    height: 600px;
    animation: slideVisualIn 0.8s ease backwards;
}

.hero-slide.active .hero-slide-visual {
    animation: slideVisualIn 0.8s ease 0.5s backwards;
}

/* Decorative elements */
.hero-decorative {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -100px;
    left: -100px;
    animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.08) 0%, rgba(44, 95, 141, 0.08) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -50px;
    right: -50px;
    animation: blobFloat 25s ease-in-out infinite reverse;
}

.hero-circle-1 {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(44, 95, 141, 0.15);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: rotate 30s linear infinite;
}

.hero-circle-2 {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(244, 162, 97, 0.2);
    border-radius: 50%;
    bottom: 15%;
    left: 5%;
    animation: rotate 20s linear infinite reverse;
}

.hero-line-1 {
    width: 2px;
    height: 300px;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 95, 141, 0.2) 50%, transparent 100%);
    top: 10%;
    right: 20%;
    transform: rotate(45deg);
    animation: linePulse 3s ease-in-out infinite;
}

.hero-line-2 {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 162, 97, 0.2) 50%, transparent 100%);
    bottom: 25%;
    left: 15%;
    animation: linePulse 4s ease-in-out infinite;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease 1.5s backwards;
}

.hero-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.hero-nav-btn:hover::before {
    width: 100%;
    height: 100%;
}

.hero-nav-btn:hover {
    border-color: transparent;
    color: var(--white);
    transform: scale(1.1);
}

.hero-nav-btn svg {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.hero-slider-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding: 0;
}

.hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.hero-dot.active::before,
.hero-dot:hover::before {
    width: 100%;
    height: 100%;
}

.hero-dot.active {
    width: 40px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

.hero-dot:hover {
    transform: scale(1.2);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    border: 1px solid rgba(44, 95, 141, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s ease backwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 1s backwards;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero visual wrapper */
.hero-visual-wrapper {
    position: relative;
    height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.hero-image-main {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    mix-blend-mode: multiply;
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 10;
}

.hero-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 2s;
}

.hero-card-3 {
    top: 50%;
    right: -15px;
    animation-delay: 4s;
}

.floating-card-icon {
    font-size: 1.5rem;
}

.floating-card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s ease 1.5s backwards;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

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

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

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

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


/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

/* Services Section */
.services-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 95, 141, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.services-accordion::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(44, 95, 141, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.services-accordion::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.2), transparent);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border-left: 4px solid transparent;
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.accordion-item:hover::before,
.accordion-item.active::before {
    transform: scaleY(1);
}

.accordion-item:hover {
    box-shadow: var(--shadow-hover);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
    font-weight: bold;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.accordion-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* About Section */
.about-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, transparent 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(0, 0);
    }
    50% {
        opacity: 0.6;
        transform: translate(5px, 5px);
    }
}

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

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.stat-item h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #e8f0f5 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(44, 95, 141, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 162, 97, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 141, 0.1), transparent);
    transition: left 0.5s ease;
}

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

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Process Section */
.process-section {
    background-color: var(--white);
    position: relative;
}

.process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    opacity: 0.3;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(44, 95, 141, 0.2), transparent);
    z-index: 0;
    display: none;
}

@media (min-width: 769px) {
    .process-step:not(:last-child)::after {
        display: block;
    }
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-top: 3px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(44, 95, 141, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-top-color: var(--secondary-color);
}

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

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

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, transparent 100%);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.05) 0%, transparent 100%);
    border-radius: 50%;
    animation: rotate 25s linear infinite reverse;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 95, 141, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.contact-form {
    position: relative;
    z-index: 1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-btn {
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn:hover {
    background-color: var(--accent-color);
}

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

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
    75% {
        transform: translate(20px, 20px) rotate(270deg);
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    }
}

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

@keyframes linePulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
}

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

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

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

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-slide {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-slide-visual {
        height: 400px;
        order: -1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .hero-decorative {
        opacity: 0.5;
    }
    
    .hero-slider-nav {
        bottom: 20px;
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-slide {
        transform: translateX(50px) scale(0.95);
        filter: blur(3px);
    }
    
    .hero-slide.active {
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
    
    .hero-slide.prev,
    .hero-slide.next {
        transform: translateX(-50px) scale(0.95);
        opacity: 0.2;
        filter: blur(2px);
    }
    
    .hero-slider-nav {
        bottom: 10px;
        padding: 0.6rem 1.2rem;
        gap: 1rem;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 30px;
    }
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .burger-menu {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }

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

/* ============================================
   UNIQUE DESIGN ELEMENTS
   ============================================ */

/* Wave Transitions Between Sections */
.section-divider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
}

.section-divider.wave-up {
    transform: rotate(180deg);
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: var(--white);
}

.wave::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    animation: waveMove 10s ease-in-out infinite;
}

.wave::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    animation: waveMove 8s ease-in-out infinite reverse;
    opacity: 0.7;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
}

/* Decorative Text Background */
.decorative-text-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--light-color);
}

.decorative-text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(30, 58, 95, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
}

.decorative-text-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Asymmetric Section */
.asymmetric-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.asymmetric-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    transform: skewY(-3deg);
    z-index: 0;
}

.asymmetric-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    transform: skewY(3deg);
}

.asymmetric-section .section-title {
    color: var(--white);
}

/* Numbers Showcase Section */
.numbers-showcase {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.number-card {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    transform: rotate(-2deg);
}

.number-card:nth-child(even) {
    transform: rotate(2deg);
}

.number-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.number-value {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.number-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Parallax Text Section */
.parallax-text-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    overflow: hidden;
}

.parallax-text {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    white-space: nowrap;
    animation: parallaxScroll 20s linear infinite;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.parallax-text:nth-child(2) {
    animation-duration: 25s;
    animation-direction: reverse;
    top: 50%;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

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

/* Diagonal Split Section */
.diagonal-split {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.diagonal-split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.diagonal-left {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.diagonal-right {
    background: var(--light-color);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.diagonal-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}

/* Floating Elements Section */
.floating-elements-section {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.floating-element-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.floating-element-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

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

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
    position: relative;
}

.text-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    animation: textReveal 1.5s ease-out forwards;
    z-index: 1;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

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

/* Sticky Section */
.sticky-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.sticky-content {
    position: sticky;
    top: 100px;
    z-index: 10;
}

/* Zigzag Border */
.zigzag-border {
    position: relative;
    padding: 60px 0;
}

.zigzag-border::before,
.zigzag-border::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--white);
    z-index: 1;
}

.zigzag-border::before {
    top: -15px;
    clip-path: polygon(0 100%, 2% 0, 4% 100%, 6% 0, 8% 100%, 10% 0, 12% 100%, 14% 0, 16% 100%, 18% 0, 20% 100%, 22% 0, 24% 100%, 26% 0, 28% 100%, 30% 0, 32% 100%, 34% 0, 36% 100%, 38% 0, 40% 100%, 42% 0, 44% 100%, 46% 0, 48% 100%, 50% 0, 52% 100%, 54% 0, 56% 100%, 58% 0, 60% 100%, 62% 0, 64% 100%, 66% 0, 68% 100%, 70% 0, 72% 100%, 74% 0, 76% 100%, 78% 0, 80% 100%, 82% 0, 84% 100%, 86% 0, 88% 100%, 90% 0, 92% 100%, 94% 0, 96% 100%, 98% 0, 100% 100%);
}

.zigzag-border::after {
    bottom: -15px;
    clip-path: polygon(0 0, 2% 100%, 4% 0, 6% 100%, 8% 0, 10% 100%, 12% 0, 14% 100%, 16% 0, 18% 100%, 20% 0, 22% 100%, 24% 0, 26% 100%, 28% 0, 30% 100%, 32% 0, 34% 100%, 36% 0, 38% 100%, 40% 0, 42% 100%, 44% 0, 46% 100%, 48% 0, 50% 100%, 52% 0, 54% 100%, 56% 0, 58% 100%, 60% 0, 62% 100%, 64% 0, 66% 100%, 68% 0, 70% 100%, 72% 0, 74% 100%, 76% 0, 78% 100%, 80% 0, 82% 100%, 84% 0, 86% 100%, 88% 0, 90% 100%, 92% 0, 94% 100%, 96% 0, 98% 100%, 100% 0);
}

/* Hover Effects for Cards */
.floating-elements-section > .container > div > div:hover {
    transform: rotate(0deg) scale(1.05) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15) !important;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Text Glitch Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--secondary-color), 2px 2px var(--accent-color);
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
        transform: skew(0.5deg);
    }
    5% {
        clip: rect(14px, 9999px, 77px, 0);
        transform: skew(0.5deg);
    }
    10% {
        clip: rect(76px, 9999px, 39px, 0);
        transform: skew(0.5deg);
    }
    15% {
        clip: rect(63px, 9999px, 52px, 0);
        transform: skew(0.5deg);
    }
    20% {
        clip: rect(28px, 9999px, 84px, 0);
        transform: skew(0.5deg);
    }
    25% {
        clip: rect(54px, 9999px, 98px, 0);
        transform: skew(0.5deg);
    }
    30% {
        clip: rect(98px, 9999px, 12px, 0);
        transform: skew(0.5deg);
    }
    35% {
        clip: rect(1px, 9999px, 83px, 0);
        transform: skew(0.5deg);
    }
    40% {
        clip: rect(78px, 9999px, 40px, 0);
        transform: skew(0.5deg);
    }
    45% {
        clip: rect(43px, 9999px, 68px, 0);
        transform: skew(0.5deg);
    }
    50% {
        clip: rect(21px, 9999px, 6px, 0);
        transform: skew(0.5deg);
    }
    55% {
        clip: rect(94px, 9999px, 98px, 0);
        transform: skew(0.5deg);
    }
    60% {
        clip: rect(58px, 9999px, 27px, 0);
        transform: skew(0.5deg);
    }
    65% {
        clip: rect(87px, 9999px, 73px, 0);
        transform: skew(0.5deg);
    }
    70% {
        clip: rect(6px, 9999px, 14px, 0);
        transform: skew(0.5deg);
    }
    75% {
        clip: rect(36px, 9999px, 50px, 0);
        transform: skew(0.5deg);
    }
    80% {
        clip: rect(25px, 9999px, 99px, 0);
        transform: skew(0.5deg);
    }
    85% {
        clip: rect(66px, 9999px, 51px, 0);
        transform: skew(0.5deg);
    }
    90% {
        clip: rect(11px, 9999px, 30px, 0);
        transform: skew(0.5deg);
    }
    95% {
        clip: rect(53px, 9999px, 5px, 0);
        transform: skew(0.5deg);
    }
    100% {
        clip: rect(97px, 9999px, 58px, 0);
        transform: skew(0.5deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
        transform: skew(0.5deg);
    }
    5% {
        clip: rect(96px, 9999px, 76px, 0);
        transform: skew(0.5deg);
    }
    10% {
        clip: rect(7px, 9999px, 23px, 0);
        transform: skew(0.5deg);
    }
    15% {
        clip: rect(67px, 9999px, 13px, 0);
        transform: skew(0.5deg);
    }
    20% {
        clip: rect(90px, 9999px, 98px, 0);
        transform: skew(0.5deg);
    }
    25% {
        clip: rect(58px, 9999px, 67px, 0);
        transform: skew(0.5deg);
    }
    30% {
        clip: rect(92px, 9999px, 59px, 0);
        transform: skew(0.5deg);
    }
    35% {
        clip: rect(30px, 9999px, 26px, 0);
        transform: skew(0.5deg);
    }
    40% {
        clip: rect(60px, 9999px, 73px, 0);
        transform: skew(0.5deg);
    }
    45% {
        clip: rect(88px, 9999px, 53px, 0);
        transform: skew(0.5deg);
    }
    50% {
        clip: rect(5px, 9999px, 60px, 0);
        transform: skew(0.5deg);
    }
    55% {
        clip: rect(7px, 9999px, 87px, 0);
        transform: skew(0.5deg);
    }
    60% {
        clip: rect(52px, 9999px, 68px, 0);
        transform: skew(0.5deg);
    }
    65% {
        clip: rect(23px, 9999px, 15px, 0);
        transform: skew(0.5deg);
    }
    70% {
        clip: rect(19px, 9999px, 8px, 0);
        transform: skew(0.5deg);
    }
    75% {
        clip: rect(76px, 9999px, 87px, 0);
        transform: skew(0.5deg);
    }
    80% {
        clip: rect(95px, 9999px, 96px, 0);
        transform: skew(0.5deg);
    }
    85% {
        clip: rect(10px, 9999px, 14px, 0);
        transform: skew(0.5deg);
    }
    90% {
        clip: rect(33px, 9999px, 44px, 0);
        transform: skew(0.5deg);
    }
    95% {
        clip: rect(74px, 9999px, 80px, 0);
        transform: skew(0.5deg);
    }
    100% {
        clip: rect(12px, 9999px, 91px, 0);
        transform: skew(0.5deg);
    }
}

/* Magnetic Hover Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsive for new sections */
@media (max-width: 968px) {
    .decorative-text-bg {
        font-size: 8rem;
    }
    
    .parallax-text {
        font-size: 4rem;
    }
    
    .diagonal-split-content {
        grid-template-columns: 1fr;
    }
    
    .diagonal-left,
    .diagonal-right {
        clip-path: none;
    }
    
    .number-value {
        font-size: 3rem;
    }
    
    .asymmetric-section::before {
        transform: skewY(-1deg);
    }
    
    .asymmetric-content {
        transform: skewY(1deg);
    }
}

@media (max-width: 640px) {
    .decorative-text-bg {
        font-size: 4rem;
    }
    
    .parallax-text {
        font-size: 2.5rem;
    }
    
    .number-value {
        font-size: 2.5rem;
    }
}

