* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.default-logo {
    opacity: 1;
}

.scrolled-logo {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar.scrolled .default-logo {
    opacity: 0;
}

.navbar.scrolled .scrolled-logo {
    opacity: 1;
}

.logo-lines {
    display: flex;
    gap: 3px;
}

.logo-lines .line {
    width: 4px;
    height: 20px;
    background: #ffd700;
    transform: skew(-15deg);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.purchase-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border: 2px solid #ffd700;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.purchase-btn:hover {
    background: #ffd700;
    color: #333;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    align-items: center;
}

.hero-left {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    overflow: hidden;
    min-height: 100vh;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0px; /* Small offset to prevent edge visibility during animation */
    left: -1000000px;
    right: -1000000px;
    bottom: 0px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,0 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>');
    background-size: 200px 200px;
    animation: waveMove 20s linear infinite;
}

.form-container {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    border: 2px solid #fed7aa;
    border-radius: 25px;
    padding: 8px 16px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ea580c;
    animation: fadeInUp 0.8s ease;
}

.success-badge i {
    color: #f97316;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border: none;
    animation: slideInRight 1s ease;
    position: relative;
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.08);
}

.form-field {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ef4444;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #1e293b;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.2),
        0 0 0 3px rgba(239, 68, 68, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #1e293b;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
    box-sizing: border-box;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-textarea:focus {
    outline: none;
    background: white;
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.2),
        0 0 0 3px rgba(239, 68, 68, 0.1);
    transform: translateY(-1px);
}

.form-textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.get-started-btn {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial Black', Arial, sans-serif;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(251, 191, 36, 0.4);
}

.get-started-btn:active {
    transform: translateY(0px);
    box-shadow: 0 6px 15px rgba(251, 191, 36, 0.3);
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
    min-height: 100vh;
}

.content-section {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.highlight {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.emoji {
    font-size: 3rem;
    margin-left: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.3s both;
    line-height: 1.6;
}

.floating-elements {
    position: relative;
    height: 250px;
    margin-top: 2rem;
    width: 100%;
    overflow: visible;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #1e293b;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.notification-card {
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation-delay: 0s;
    width: 280px;
    min-width: 280px;
    z-index: 10;
}

.profile-pic {
    width: 45px;
    height: 45px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 2px;
}

.notification-user {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.notification-icons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.notification-icons i {
    color: #ef4444;
    font-size: 1rem;
}

.notification-icons i:last-child {
    color: #f59e0b;
}

.project-card {
    top: 100px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 1s;
    width: 350px;
    min-width: 350px;
    z-index: 5;
}

.mobile-card {
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 2s;
    width: 160px;
    min-width: 160px;
    padding: 1rem 1.2rem;
}

.project-card i,
.mobile-card i {
    color: #3b82f6;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.project-card span,
.mobile-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200px); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

@keyframes slideInRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Partners & Stats Section */
.partners-stats-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}
.stats-section .stats-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.partners-stats-section::before {
    content: '';
    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.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.partners-section {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.partner-logo:hover {
    transform: translateY(-3px) scale(1.1);
}

.partner-logo i {
    font-size: 3rem;
    color: #64748b;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.7);
}

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

/* Company-specific colors on hover */
.partner-logo:nth-child(1) i:hover,
.partner-logo:nth-child(9) i:hover { color: #4285f4; } /* Google */
.partner-logo:nth-child(2) i:hover,
.partner-logo:nth-child(10) i:hover { color: #00a4ef; } /* Microsoft */
.partner-logo:nth-child(3) i:hover,
.partner-logo:nth-child(11) i:hover { color: #000000; } /* Apple */
.partner-logo:nth-child(4) i:hover,
.partner-logo:nth-child(12) i:hover { color: #ff9900; } /* Amazon */
.partner-logo:nth-child(5) i:hover,
.partner-logo:nth-child(13) i:hover { color: #1877f2; } /* Meta */
.partner-logo:nth-child(6) i:hover,
.partner-logo:nth-child(14) i:hover { color: #e50914; } /* Netflix */
.partner-logo:nth-child(7) i:hover,
.partner-logo:nth-child(15) i:hover { color: #1db954; } /* Spotify */
.partner-logo:nth-child(8) i:hover,
.partner-logo:nth-child(16) i:hover { color: #000000; } /* Uber */

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

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

.stats-card {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(147, 51, 234, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

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

@keyframes glow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

@keyframes slideDown {
    0% { height: 0; }
    100% { height: 100px; }
}

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

/* About Section */
.about-section {
    background: white;
    color: #1e293b;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundMove 20s ease-in-out infinite;
}

.about-top {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-left {
    flex: 1;
    position: relative;
    z-index: 2;
}

.story-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.story-badge i {
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

.about-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1e293b;
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
}

.about-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 15px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: shimmer 2s ease-in-out infinite;
}

.accent-bar {
    width: 4px;
    height: 100px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    position: absolute;
    left: -2rem;
    top: 0;
    border-radius: 2px;
    animation: slideDown 1s ease 0.5s both;
}

.about-right {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* About Section Project Cards */
.about-project-cards {
    display: flex;
    gap: 2rem;
    position: relative;
}

.about-project-card {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    animation: float 6s ease-in-out infinite;
}

.about-project-card:nth-child(2) {
    animation-delay: 2s;
    transform: perspective(1000px) rotateX(-5deg) rotateY(5deg);
}

.about-project-card:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-project-card:hover img {
    transform: scale(1.05);
}

/* Projects Section Project Cards */
.project-cards {
    display: flex;
    gap: 2rem;
    position: relative;
}

.project-card {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    animation: float 6s ease-in-out infinite;
}

.project-card:nth-child(2) {
    animation-delay: 2s;
    transform: perspective(1000px) rotateX(-5deg) rotateY(5deg);
}

.project-card:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.card-tags {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: slideInRight 1s ease 0.8s both;
}

.tag {
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    transform: scale(1.05);
}

.about-bottom {
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-bottom-left {
    flex: 1;
}

.team-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
    animation: float 8s ease-in-out infinite;
}

.team-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.about-bottom-right {
    flex: 1;
}

.about-description {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.about-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

.watch-intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.9s both;
}

.watch-intro:hover {
    transform: translateX(5px);
}

.team-avatars {
    display: flex;
    gap: -10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: 3px solid white;
    margin-left: -10px;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.avatar:nth-child(2) {
    animation-delay: 1s;
}

.avatar:nth-child(3) {
    animation-delay: 2s;
}

.avatar:first-child {
    margin-left: 0;
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.play-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.watch-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.video-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

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

.video-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.video-title .highlight-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.video-subtitle {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin-bottom: 4rem;
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover::before {
    opacity: 1;
}

.play-button {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.3),
        0 0 0 0 rgba(59, 130, 246, 0.4);
    animation: playButtonPulse 2s ease-in-out infinite;
    z-index: 3;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.4),
        0 0 0 20px rgba(59, 130, 246, 0.1);
}

.play-button i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.play-button:hover i {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    z-index: 2;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-info p {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0;
}

.youtube-embed {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.youtube-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

/* Video Testimonials Grid */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.video-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);

}

.video-testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-testimonial-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    z-index: 3;
}

.video-thumbnail .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.video-thumbnail .play-button i {
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-testimonial-card:hover .video-overlay {
    opacity: 1;
}

.video-info {
    padding: 1.5rem;
    color: white;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: black;
    margin: 0 0 0.25rem 0;
}

.client-details p {
    font-size: 0.875rem;
    color: #383d42;
    margin: 0;
}

.testimonial-preview {
    margin-bottom: 1rem;
}

.testimonial-preview p {
    font-size: 0.875rem;
    color: #2e343c;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.video-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fbbf24;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: rgba(30, 41, 59, 0.95);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper .youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper .youtube-embed iframe {
    border-radius: 0;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.feature-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.video-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.video-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0.5;
}

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

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn.primary-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-btn.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

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

.cta-btn.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

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

/* Video Section Animations */
@keyframes playButtonPulse {
    0%, 100% {
        box-shadow: 
            0 20px 40px rgba(59, 130, 246, 0.3),
            0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 
            0 20px 40px rgba(59, 130, 246, 0.4),
            0 0 0 20px rgba(59, 130, 246, 0.1);
    }
}

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

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

/* Video Testimonials Responsive Design */
@media (max-width: 768px) {
    .video-testimonials-section {
        padding: 4rem 0;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-testimonial-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-thumbnail .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .video-info {
        padding: 1.25rem;
    }
    
    .client-info {
        gap: 0.75rem;
    }
    
    .client-avatar {
        width: 45px;
        height: 45px;
    }
    
    .client-details h4 {
        font-size: 1rem;
    }
    
    .client-details p {
        font-size: 0.8rem;
    }
    
    .testimonial-preview p {
        font-size: 0.8rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .close-modal {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-subtitle {
        font-size: 1.125rem;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .video-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 2rem;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .video-overlay {
        padding: 1.5rem;
    }
    
    .video-info h3 {
        font-size: 1.25rem;
    }
    
    .video-info p {
        font-size: 0.875rem;
    }
}

/* Services Section */
.services-section {
    background: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    animation: fadeInUp 1s ease;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    /* left: 50%; */
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1;
    animation: fadeInUp 1s ease 0.2s both;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 15s ease-in-out infinite;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 3rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInLeft 0.8s ease both;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    margin: 1rem 0;
    padding: 3rem 2rem;
}

.service-item:nth-child(even) {
    animation: slideInRight 0.8s ease both;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:nth-child(odd) {
    background: rgba(255, 255, 255, 0.8);
}

.service-item:nth-child(even) {
    background: rgba(248, 250, 252, 0.9);
}

.service-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-item:hover .service-title {
    transform: translateY(-20px);
    color: #3b82f6;
}

.service-item:hover .service-expanded-content {
    transform: translateY(-5px);
}

.service-item.featured {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    border: none;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.service-item.featured:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: #e2e8f0;
    min-width: 120px;
    text-align: center;
    position: relative;
    animation: numberGlow 3s ease-in-out infinite;
}

.service-item.featured .service-number {
    color: #ec4899;
    animation: numberPulse 2s ease-in-out infinite;
}

.service-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 2rem;
    box-shadow: none;
    transition: all 0.3s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

.service-item:nth-child(2) .service-icon {
    animation-delay: 0.5s;
    color: #10b981;
}

.service-item:nth-child(3) .service-icon {
    animation-delay: 1s;
    color: #ec4899;
}

.service-item:nth-child(4) .service-icon {
    animation-delay: 1.5s;
    color: #f59e0b;
}

.service-item:nth-child(5) .service-icon {
    animation-delay: 2s;
    color: #8b5cf6;
}

.service-item:nth-child(6) .service-icon {
    animation-delay: 2.5s;
    color: #06b6d4;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.service-item:hover .service-title::after {
    width: 100%;
}

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

.service-list li {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    animation: bulletPulse 2s ease-in-out infinite;
}

.service-list li:hover {
    color: #1e293b;
    transform: translateX(5px);
}

.service-expanded-content {
    max-height: 300px;
    opacity: 1;
    overflow: visible;
    transition: all 0.4s ease;
    padding: 1rem 0;
    margin-top: 0rem;
    transform: translateY(0);
}

.service-expanded-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    background: linear-gradient(135deg, #3b82f666, #8b5cf6cc);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s 
ease;
    animation: tagFloat 3s 
ease-in-out infinite;
    backdrop-filter: blur(3px);
}

.feature-tag:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-tag:nth-child(3) {
    animation-delay: 1s;
}

.feature-tag:nth-child(4) {
    animation-delay: 1.5s;
}

.feature-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

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

.service-description {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.5s both;
}

.service-description p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.discuss-btn {
    background: transparent;
    border: 2px solid #1e293b;
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discuss-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1e293b;
    transition: left 0.3s ease;
    z-index: -1;
}

.discuss-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}

.discuss-btn:hover::before {
    left: 0;
}

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

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

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

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes bulletPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

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

.hero-right {
    flex: 1;
    background: #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.form-section {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input {
    flex: 1;
    padding: 18px 20px;
    border: 2px solid #ff4444;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-input::placeholder {
    color: #999;
    font-weight: 400;
}

.form-textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
    box-sizing: border-box;
}

.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.get-started-btn {
    width: 100%;
    padding: 20px 25px;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    margin-top: 10px;
}

.get-started-btn:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.get-started-btn:active {
    transform: translateY(-1px);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
}

.social-proof i {
    color: #ffd700;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-proof span {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Sections */
.section {
    padding: 5rem 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* About Section */
.about {
    background: #f8fafc;
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #6366f1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Pricing Section */
.pricing-section {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    overflow: hidden;
}



.pricing-section::before {
    content: '';
    position: absolute;
    top: 0px; /* Small offset to prevent edge visibility during animation */
    left: -1000000px;
    right: -1000000px;
    bottom: 0px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,0 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>');
    background-size: 200px 200px;
    animation: waveMove 20s linear infinite;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.pricing-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: #e0e7ff;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.3s both;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid #fbbf24;
    border-radius: 25px;
    padding: 10px 20px;
    color: #fbbf24;
    font-weight: 600;
    font-size: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.pricing-badge i {
    animation: pulse 2s ease-in-out infinite;
}

.contact-card-container {
    max-width: 800px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.contact-card {
    background: #ffffff61;
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    animation: slideInUp 0.8s ease both;
    /* border: 2px solid rgba(251, 191, 36, 0.2); */
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
}

.contact-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    animation: pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.08));
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    animation: float 3s ease-in-out infinite;
}

.method-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-divider {
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.contact-divider span {
    background: white;
    padding: 0 1.5rem;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.contact-form-section {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.contact-form-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #1e293b;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

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

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

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #075e54 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 50%, #34b7f1 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

.call-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.call-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.6);
}

.call-btn i {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}

.form-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    width: 100%;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.form-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
}

.contact-guarantee {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgb(255 255 255 / 53%), rgb(255 255 255 / 53%));
    border-radius: 15px;
    margin-top: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.guarantee-item i {
    font-size: 1.5rem;
    color: #599ef9;
    animation: float 3s ease-in-out infinite;
}

.guarantee-item:nth-child(2) i {
    animation-delay: 1s;
}

.guarantee-item:nth-child(3) i {
    animation-delay: 2s;
}

.guarantee-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

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

/* Projects Section */
.projects {
    background: #f8fafc;
    padding: 3rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: -4rem;
    margin-bottom: 5rem;
    justify-items: center;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

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

.project-video {
    position: relative;
    /* height: 250px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    order: 1;
}

.project-video video,
.project-video .project-gif {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.project-card:hover .project-video video,
.project-card:hover .project-video .project-gif {
    transform: scale(1.1);
}

.video-overlay {
    display: none;
}

.project-content {
    padding: 1.5rem;
    order: 2;
    flex: 1;
}

.project-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.tech-tag {
    background: #3b82f6;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Our Process Section */
.process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundMove 20s ease-in-out infinite;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

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

.process-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.process-title .highlight-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.process-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 2px;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-step {
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.4s;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #f59e0b;
    
    transition: all 0.3s ease;
}

.step-label {
    font-size: 1rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-content {
    text-align: left;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* New Process Step Card Styles */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1.5rem;
    transform: translateX(-50%);
    width: 2px;
    height: 3rem;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    z-index: 1;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 28px;
}

.step-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.step-card:hover::after {
    opacity: 0.1;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.step-number {
    position: relative;
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card:hover .step-number {
    color: #f59e0b;
    transform: scale(1.1);
}


.step-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.step-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    width: fit-content;
}

.step-duration i {
    color: #3b82f6;
}

.step-content {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem !important;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-item:hover {
    background: rgba(59, 130, 246, 0.12);
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.feature-item i {
    color: #3b82f6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.feature-item span {
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.process-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0.5;
}

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

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn.primary-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-btn.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-btn i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

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


/* Connecting lines between steps */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step:hover:not(:last-child)::after {
    background: #f59e0b;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    transform: translateY(-50%);
    animation: floatRight 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.testimonials-left {
    width: 100%;
    position: relative;
}

.testimonials-left::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -150px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatLeft 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #374151;
    margin-bottom: 3rem;
    text-align: left;
    position: relative;
}

.testimonial-navigation {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #8b5cf6;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-arrow.prev-arrow {
    background: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.nav-arrow.prev-arrow:hover {
    background: rgba(139, 92, 246, 0.4);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.testimonial-main {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: -7rem;
    padding: 0 2rem;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    width: 280px;
    min-height: 350px;
    transition: all 0.3s ease;
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

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

.profile-image {
    width: 221px;
    height: 214px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.testimonial-quote {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 2;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 40px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid rgba(255, 255, 255, 0.15);
    filter: drop-shadow(-2px 0 5px rgba(0, 0, 0, 0.1));
}

.testimonial-quote:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
}

.testimonial-quote:hover::before {
    border-right: 15px solid rgba(255, 255, 255, 0.25);
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    font-weight: 500;
}

.testimonial-quote strong {
    color: #8b5cf6;
    font-weight: 700;
}

.testimonial-pagination {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    padding-right: 2rem;
}

.page-indicator {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.current-page {
    color: #8b5cf6;
}

.total-pages {
    color: #64748b;
}

.testimonial-thumbnails {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.thumbnail:hover {
    transform: scale(1.1);
    border-color: #8b5cf6;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.thumbnail.active img {
    filter: grayscale(0%);
}


/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 20s ease-in-out infinite;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.faq-badge i {
    animation: bounce 2s ease-in-out infinite;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.faq-search-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #64748b;
    font-size: 1.1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.faq-search-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.2),
        0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.faq-search-input:focus + .search-icon {
    color: #3b82f6;
    transform: scale(1.1);
}

.search-clear {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.search-clear:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.1);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #64748b;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.category-btn:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(139, 92, 246, 0.05) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.question-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .question-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.question-text {
    flex: 1;
}

.question-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.question-preview {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-item:hover .question-text h3 {
    color: #3b82f6;
    transform: translateX(5px);
}

.faq-item:hover .question-preview {
    color: #475569;
}

.question-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.faq-item:hover .question-arrow {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.faq-item.active .question-arrow {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
}

.faq-answer.active {
    max-height: 1000px;
    padding: 2rem;
}

.answer-content {
    animation: fadeInUp 0.5s ease 0.2s both;
}

.answer-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.answer-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.answer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

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

.answer-list li:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.answer-list li i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.answer-cta {
    margin-top: 2rem;
    text-align: center;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-link:hover {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.cta-link.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-link.primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Timeline Grid */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 600;
}

/* Support Features */
.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.support-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Responsive Features */
.responsive-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.responsive-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.responsive-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.2);
}

.responsive-item i {
    font-size: 2rem;
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.responsive-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.responsive-note {
    font-style: italic;
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

/* Tech Stack */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-category {
    text-align: center;
}

.tech-category h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.process-step {
    backdrop-filter: blur(10px);
}


.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 4rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* FAQ Footer */
.faq-footer {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-cta {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 500;
}

.faq-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* FAQ Animations */
@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0); 
    }
    25% { 
        transform: translateX(10px) translateY(-5px); 
    }
    50% { 
        transform: translateX(-5px) translateY(10px); 
    }
    75% { 
        transform: translateX(-10px) translateY(-5px); 
    }
}

.faq-item.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    animation: fadeInUp 0.5s ease;
}

.no-results-content i {
    font-size: 4rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-results-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.no-results-content p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.clear-search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.clear-search-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Search Highlight */
.search-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* FAQ Mobile Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 1rem;
    }

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

    .faq-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .faq-search-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .faq-search-input {
        padding: 15px 20px 15px 50px;
        font-size: 0.9rem;
    }

    .faq-categories {
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .category-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-item {
        margin-bottom: 1rem;
        border-radius: 15px;
    }

    .faq-question {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .question-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .question-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .question-text h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .question-preview {
        font-size: 0.85rem;
    }

    .question-arrow {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
}

.faq-answer.active {
        padding: 1.5rem;
    }

    .answer-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .answer-list li {
        padding: 10px 0;
        font-size: 0.9rem;
    }

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

    .timeline-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .support-feature {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .responsive-item {
        padding: 1rem 0.5rem;
    }

    .responsive-item i {
        font-size: 1.5rem;
    }

    .responsive-item span {
        font-size: 0.8rem;
    }

    .tech-stack {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-tags {
        gap: 0.3rem;
    }

    .tech-tag {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    

    .cta-link {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .faq-footer {
        margin-top: 3rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }

    .faq-contact-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .no-results-message {
        padding: 3rem 1.5rem;
        margin: 1rem 0;
    }

    .no-results-content i {
        font-size: 3rem;
    }

    .no-results-content h3 {
        font-size: 1.3rem;
    }

    .no-results-content p {
        font-size: 0.9rem;
    }

    .clear-search-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 3rem 0;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

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

    .faq-subtitle {
        font-size: 0.95rem;
    }

    .faq-search-input {
        padding: 12px 18px 12px 45px;
        font-size: 0.85rem;
    }

    .category-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .question-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .question-text h3 {
        font-size: 1rem;
    }

    .question-preview {
        font-size: 0.8rem;
    }

    .question-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .faq-answer.active {
        padding: 1.2rem;
    }

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

    .responsive-item {
        padding: 1rem;
    }

    .faq-cta {
        padding: 1.5rem 1rem;
    }

    .faq-cta h3 {
        font-size: 1.3rem;
    }

    .faq-cta p {
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    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.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid #fbbf24;
    border-radius: 25px;
    padding: 10px 20px;
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-badge i {
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.2;
}

.cta-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
    text-shadow: none;
}

.cta-subtitle {
    font-size: 1rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

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

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

.primary-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #075e54 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 50%, #34b7f1 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.6);
}

.primary-btn i {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

.secondary-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.6);
}

.secondary-btn i {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    text-align: center;
}

.cta-feature i {
    font-size: 2rem;
    color: #fbbf24;
    animation: float 3s ease-in-out infinite;
}

.cta-feature:nth-child(2) i {
    animation-delay: 1s;
}

.cta-feature:nth-child(3) i {
    animation-delay: 2s;
}

.cta-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.footer-logo {
    position: relative;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.default-footer-logo {
    opacity: 1;
}

.scrolled-footer-logo {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar.scrolled ~ * .default-footer-logo {
    opacity: 0;
}

.navbar.scrolled ~ * .scrolled-footer-logo {
    opacity: 1;
}

.copyright {
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.footer-nav a:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-right {
    display: flex;
    align-items: center;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.linkedin {
    background: #0077b5;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-link.twitter {
    background: #1da1f2;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin:hover {
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.social-link.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .purchase-btn {
        display: none;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        flex: none;
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }

    .hero-left {
        padding: 3rem 1.5rem;
    }

    .hero-right {
        padding: 3rem 1.5rem;
        width: 100%;
    }

    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .emoji {
        font-size: 2rem;
        margin-left: 10px;
    }

    .subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .content-section {
        text-align: center;
    }

    .floating-elements {
        height: 200px;
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .floating-card {
        position: relative;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .notification-card {
        top: auto;
        right: auto;
        width: 100%;
        max-width: 300px;
        min-width: auto;
        order: 1;
    }

    .project-card {
        top: auto;
        left: auto;
        width: 100%;
        max-width: 300px;
        min-width: auto;
        order: 2;
    }

    .mobile-card {
        bottom: 30px;
        right: 30px;
        width: 140px;
        min-width: 140px;
    }

    .profile-pic {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .notification-text {
        font-size: 0.85rem;
    }

    .notification-user {
        font-size: 0.75rem;
    }

    .project-card i,
    .mobile-card i {
        font-size: 1.1rem;
    }

    .project-card span,
    .mobile-card span {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-container {
        max-width: 100%;
    }

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

    .partners-track {
        gap: 2rem;
        animation: scroll 20s linear infinite;
    }

    .partner-logo {
        padding: 0.3rem;
    }

    .partner-logo i {
        font-size: 2.5rem;
    }

    .stats-card {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .about-top {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 4rem;
    }

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

    .accent-bar {
        display: none;
    }

    .about-project-cards {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .about-project-card {
        flex: 1;
        max-width: 200px;
    }
    
    .about-project-card img {
        height: 150px;
        object-fit: cover;
    }
    
    .project-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-bottom {
        flex-direction: column;
        gap: 3rem;
    }

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

    .about-stat .stat-number {
        font-size: 2rem;
    }

    .service-item {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
        text-align: center;
    }

    .service-number {
        font-size: 3rem;
        min-width: auto;
    }

    .service-content {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-item.featured {
        padding: 2rem;
        margin: 1rem 0;
    }

    .service-description {
        padding: 1.5rem;
    }

    .service-item:hover .service-expanded-content {
        transform: translateY(-5px);
    }

    .service-features {
        gap: 0.5rem;
    }

    .feature-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-input,
    .form-textarea {
        font-size: 0.9rem;
        padding: 15px 18px;
    }

    .get-started-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .pricing-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .contact-card-container {
        padding: 0 1rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card-header h3 {
        font-size: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .contact-btn {
        min-width: 280px;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .project-video {
        height: 200px;
    }

    .project-content {
        padding: 1.2rem;
    }

    .project-content h3 {
        font-size: 1.2rem;
    }

    .tech-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    /* Our Process Section Mobile */
    .process-section {
        padding: 4rem 0;
    }

    .process-header {
        margin-bottom: 3rem;
    }

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

    .process-subtitle {
        font-size: 1.125rem;
    }

    .step-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-bottom: 1.25rem;
    }

    .step-info {
        min-height: auto;
    }

    .step-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .step-duration {
        margin: 0 auto;
    }

    .step-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .feature-item {
        padding: 0.875rem 1rem;
    }

    .feature-item span {
        font-size: 0.875rem;
    }

    .process-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.125rem;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Hide connecting lines on mobile */
    .process-step:not(:last-child)::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-guarantee {
        flex-direction: column;
        gap: 1rem;
    }

    .guarantee-item {
        flex-direction: row;
        gap: 10px;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .testimonial-navigation {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 2rem;
        gap: 1rem;
        left: 0;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .testimonial-main {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
        padding: 0;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1.5rem;
        min-height: auto;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-quote {
        width: 100%;
        padding: 1.5rem;
        margin-top: -20px;
        margin-left: 0px;
    }

    .testimonial-quote::before {
        display: none;
    }

    .testimonial-pagination {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
        padding-right: 0;
    }

    .testimonial-thumbnails {
        justify-content: center;
        gap: 0.8rem;
    }

    .thumbnail {
        width: 45px;
        height: 45px;
    }
}

/* Testimonials CTA Section */
.testimonials-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0.8;
}

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

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 160px;
}

.cta-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-btn.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-btn.call-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-btn.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-btn.form-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-btn.form-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.cta-btn span {
    font-size: 1rem;
    font-weight: 700;
}

.cta-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Testimonials CTA Mobile */
@media (max-width: 768px) {
    .testimonials-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 4rem 0;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-link {
    display: block;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

.whatsapp-dotlottie {
    width: 80px;
    height: 80px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #25d366;
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 10px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 6px solid transparent;
    border-top-color: #25d366;
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* WhatsApp Button Mobile */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-dotlottie {
        width: 70px;
        height: 70px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 10px 14px;
        right: -10px;
    }
    
    .whatsapp-tooltip::after {
        right: 15px;
    }
}

/* WhatsApp Button Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    }

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

    .cta-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .cta-btn {
        min-width: 280px;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .cta-features {
        gap: 2rem;
    }

    .cta-feature {
        flex-direction: row;
        gap: 10px;
    }

    .cta-feature i {
        font-size: 1.5rem;
    }

    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-center {
        order: 2;
    }

    .footer-nav {
        gap: 1.5rem;
        justify-content: center;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .footer-right {
        order: 3;
    }

    .social-links {
        justify-content: center;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .logo-image {
        height: 35px;
    }
    
    .scrolled-logo {
        position: absolute;
        top: 0;
        left: 0;
    }

    .footer-logo-image {
        height: 40px;
    }
    
    .scrolled-footer-logo {
        position: absolute;
        top: 0;
        left: 0;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Enhanced scroll animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Professional hover effects */
.professional-hover {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Smooth reveal animations */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax effect */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Text reveal animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.visible span {
    opacity: 1;
    transform: translateY(0);
}

/* Counter animation enhancement */
.counter-animate {
    transition: all 0.3s ease;
}

/* Loading animation */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

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

/* Professional button animations */
.btn-professional {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.btn-professional:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Button Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes floatRight {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-60%) translateX(-20px) rotate(90deg); 
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-40%) translateX(-40px) rotate(180deg); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-70%) translateX(-20px) rotate(270deg); 
        opacity: 0.6;
    }
}

@keyframes floatLeft {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg); 
        opacity: 0.2;
    }
    33% { 
        transform: translateY(-30px) translateX(20px) rotate(120deg); 
        opacity: 0.4;
    }
    66% { 
        transform: translateY(20px) translateX(-10px) rotate(240deg); 
        opacity: 0.3;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   ======================================== */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero {
        padding: 0rem 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    /* Video Testimonials */
    .video-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .video-testimonial-card {
        max-width: 100%;
    }
    
    .video-thumbnail {
        height: 250px;
    }
    
    /* Process Section */
    .process-step {
        padding: 0rem;
    }
    
    .step-number {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    /* WhatsApp Button */
    .floating-whatsapp {
        bottom: 40px;
        right: 40px;
        width: 100px;
        height: 100px;
    }
    
    .whatsapp-dotlottie {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .stats-card {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* Video Testimonials */
    .video-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .video-testimonial-card {
        max-width: 100%;
    }
    
    .video-thumbnail {
        height: 220px;
    }
    
    /* Process Section */
    .process-step {
        padding: 3rem;
    }
    
    .step-number {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }
    
    /* WhatsApp Button */
    .floating-whatsapp {
        bottom: 30px;
        right: 30px;
        width: 90px;
        height: 90px;
    }
    
    .whatsapp-dotlottie {
        width: 90px !important;
        height: 90px !important;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) and (min-width: 769px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    /* Navigation */
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 0rem 0;
    }
    
    .hero-left, .hero-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-right {
        margin-top: 3rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    /* Stats Section */
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* About Section */
    .about-top {
        flex-direction: column;
        text-align: center;
    }
    
    .about-left, .about-right {
        width: 100%;
    }
    
    .about-right {
        margin-top: 3rem;
    }
    
    .about-bottom {
        flex-direction: column;
    }
    
    .about-bottom-left, .about-bottom-right {
        width: 100%;
    }
    
    .about-bottom-right {
        margin-top: 2rem;
    }
    
    /* Services Section */
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        margin: 1rem 0;
        gap: 1.5rem;
    }
    
    .service-number {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        min-width: auto;
    }
    
    .service-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-expanded-content {
        text-align: center;
    }
    
    .service-expanded-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-features {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 0;
    }
    
    .project-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .project-video {
        height: 200px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .project-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Process Section */
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    /* Testimonials */
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonials-left, .testimonials-right {
        width: 100%;
    }
    
    .testimonials-right {
        margin-top: 3rem;
    }
    
    /* Video Testimonials */
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .video-testimonial-card {
        max-width: 100%;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    /* Process Section */
    .process-step {
        padding: 2.5rem;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    /* WhatsApp Button */
    .floating-whatsapp {
        bottom: 25px;
        right: 25px;
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-dotlottie {
        width: 80px !important;
        height: 80px !important;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-left, .footer-center, .footer-right {
        width: 100%;
    }
}

/* Mobile Landscape (481px to 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    /* Hero Section */
    .hero {
        padding: 0rem 0;
    }
    
    .main-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .floating-elements {
        height: 180px;
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .floating-card {
        position: relative;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .notification-card {
        top: auto;
        right: auto;
        width: 100%;
        max-width: 280px;
        min-width: auto;
        order: 1;
    }

    .project-card {
        top: auto;
        left: auto;
        width: 100%;
        max-width: 280px;
        min-width: auto;
        order: 2;
    }
    
    /* Stats Section */
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* About Section */
    .about-title {
        font-size: 2rem;
    }
    
    .about-project-cards {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .about-project-card {
        flex: 1;
        max-width: 180px;
    }
    
    .about-project-card img {
        height: 140px;
        object-fit: cover;
    }
    
    .project-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Services Section */
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
        margin: 1.5rem 0;
        gap: 2rem;
    }
    
    .service-number {
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
        min-width: auto;
    }
    
    .service-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 4.75rem;
    }
    
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-expanded-content {
        text-align: center;
    }
    
    .service-expanded-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-features {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 0;
    }
    
    .project-card {
        margin: 0 auto;
        max-width: 450px;
    }
    
    .project-video {
        height: 220px;
    }
    
    .project-content {
        padding: 1.75rem;
    }
    
    .project-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .project-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Process Section */
    .process-title {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-title {
        font-size: 2rem;
    }
    
    /* FAQ Section */
    .faq-search-container {
        margin-bottom: 2rem;
    }
    
    .faq-categories {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .category-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    /* Video Testimonials */
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .video-testimonial-card {
        max-width: 100%;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    /* Process Section */
    .process-step {
        padding: 2rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* WhatsApp Button */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
    
    .whatsapp-dotlottie {
        width: 70px !important;
        height: 70px !important;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.nav-links.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-links.active a {
    color: #fff;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-links.active a:hover {
    color: #fbbf24;
    transform: translateX(10px);
}

/* Mobile Portrait (320px to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 2rem;
    }
    
    .main-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .floating-elements {
        height: 160px;
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .floating-card {
        position: relative;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .notification-card {
        top: auto;
        right: auto;
        width: 100%;
        max-width: 260px;
        min-width: auto;
        order: 1;
    }

    .project-card {
        top: auto;
        left: auto;
        width: 100%;
        max-width: 260px;
        min-width: auto;
        order: 2;
    }
    
    /* Stats Section */
    .stats-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-description p {
        font-size: 0.9rem;
    }
    
    .about-project-cards {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
    }
    
    .about-project-card {
        flex: 1;
        max-width: 160px;
    }
    
    .about-project-card img {
        height: 120px;
        object-fit: cover;
    }
    
    .project-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Services Section */
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        margin: 1rem 0;
        gap: 1.5rem;
    }
    
    .service-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        min-width: auto;
    }
    
    .service-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    #prohead{
margin-bottom: 3rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 4.25rem !important;
    }
    
    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-expanded-content {
        text-align: center;
    }
    
    .service-expanded-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-features {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 0;
    }
    
    .project-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .project-video {
        height: 180px;
    }
    
    .project-content {
        padding: 1.25rem;
    }
    
    .project-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .project-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Process Section */
    .process-title {
        font-size: 1.75rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonial-quote p {
        font-size: 0.9rem;
    }
    
    /* FAQ Section */
    .section-title {
        font-size: 1.75rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* Video Testimonials */
    .video-testimonials-section {
        padding: 3rem 0;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-testimonial-card {
        max-width: 100%;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
    
    /* Process Section Mobile */
    .process-step {
        padding: 0rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* WhatsApp Button */
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-dotlottie {
        width: 60px !important;
        height: 60px !important;
    }
    
    /* Footer */
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    /* Services Section */
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0.75rem;
        margin: 0.75rem 0;
        gap: 1rem;
    }
    
    .service-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        min-width: auto;
    }
    
    .service-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-expanded-content {
        text-align: center;
    }
    
    .service-expanded-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-features {
        justify-content: center;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .floating-elements {
        height: 140px;
        margin-top: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .floating-card {
        position: relative;
        padding: 0.75rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .notification-card {
        top: auto;
        right: auto;
        width: 100%;
        max-width: 240px;
        min-width: auto;
        order: 1;
    }

    .project-card {
        top: auto;
        left: auto;
        width: 100%;
        max-width: 240px;
        min-width: auto;
        order: 2;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* Video Testimonials */
    .video-testimonials-section {
        padding: 2rem 0;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-testimonial-card {
        max-width: 100%;
    }
    
    .video-thumbnail {
        height: 150px;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    /* Process Section */
    .process-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    /* WhatsApp Button */
    .floating-whatsapp {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-dotlottie {
        width: 50px !important;
        height: 50px !important;
    }
    
    /* About Section */
    .about-project-cards {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .about-project-card {
        flex: 1;
        max-width: 140px;
    }
    
    .about-project-card img {
        height: 100px;
        object-fit: cover;
    }
    
    .project-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 0;
    }
    
    .project-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .project-video {
        height: 150px;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .project-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}