/* Modern E-Rate Consulting Landing Page Styles */
* {
    cursor: default;
}

/* Custom text selection */
::selection {
    background: rgba(66, 165, 245, 0.3);
    color: #0d47a1;
}

::-moz-selection {
    background: rgba(66, 165, 245, 0.3);
    color: #0d47a1;
}

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

::-webkit-scrollbar-track {
    background: #f4f8fc;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    border-radius: 6px;
    border: 2px solid #f4f8fc;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
}

body {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #f4f8fc 0%, #e3f2fd 50%, #f4f8fc 100%);
    /* Removed animated background for better performance */
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Removed for performance */
/* @keyframes gradientBackground {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
} */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Heading fonts - Playfair Display */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

/* Ensure all images are responsive and properly sized */
img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 10px rgba(21,101,192,0.08);
    position: relative;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(21,101,192,0.12);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 78px;
    vertical-align: middle;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img:hover {
    transform: scale(1.05) rotate(2deg);
}
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #172abc;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

.nav-links a:hover {
    color: #0d47a1;
    transform: translateY(-2px);
}
.cta-button {
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', Georgia, serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 4px 16px rgba(66,165,245,0.3);
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(66, 165, 245, 0.5);
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}
.hero {
    margin-top: 50px;
    padding: 80px 0 40px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #1976d2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: heroGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(10%, 10%) scale(1.1); opacity: 0.8; }
}
.hero .hero-image {
    width: 500px;
    height: 500px;
    max-width: 90%;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 20px 60px rgba(21,101,192,0.3);
    animation: floatImage 6s ease-in-out infinite;
    border: 4px solid #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.hero .hero-image::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #42a5f5, #1976d2, #42a5f5);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

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

.hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-trust {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 20px;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.problem-section {
    background: #fff8e1;
    border-left: 4px solid #ffa000;
}

.problem-highlight {
    background: rgba(255, 160, 0, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #ffa000;
}

.problem-highlight p {
    color: #e65100;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.problem-section .cta-center {
    text-align: center;
    margin-top: 30px;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    animation: fadeInUp 1s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}
.hero p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 32px;
    animation: fadeInUp 1.2s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}
.hero .cta-button {
    font-size: 1.1rem;
    padding: 16px 40px;
    margin-top: 10px;
}
.section {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: rgba(244, 248, 252, 0.9);
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21,101,192,0.1), transparent);
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1565c0;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: -0.005em;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #1976d2;
    margin-bottom: 40px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.card {
    background: rgba(244, 248, 252, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(21,101,192,0.10);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

.card:hover {
    box-shadow: 0 20px 60px rgba(21,101,192,0.25);
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.98);
}
.card .card-image {
    width: 125px;
    height: 175px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(21,101,192,0.15);
    animation: fadeIn 1.2s;
    border: 3px solid #e3f2fd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card:hover .card-image {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(21,101,192,0.3);
    border-color: #1976d2;
}

.card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.card h3 {
    font-size: 1.3rem;
    color: #1565c0;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0;
}
.card p {
    color: #1976d2;
    font-size: 1rem;
    margin-bottom: 0;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #1976d2;
    position: relative;
    padding-left: 32px;
}
.benefits-list li:before {
    content: '\2714';
    position: absolute;
    left: 0;
    color: #1565c0;
    font-size: 1.2rem;
}
.testimonials {
    background: #e3f2fd;
    padding: 60px 0;
}
.testimonials-title {
    text-align: center;
    font-size: 2rem;
    color: #1565c0;
    margin-bottom: 30px;
    font-weight: 700;
}
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
    padding-top: 30px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(21,101,192,0.12);
    padding: 40px 22px 28px 22px;
    text-align: left;
    font-size: 1rem;
    color: #1976d2;
    position: relative;
    min-height: 120px;
    margin-top: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(21, 101, 192, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(21,101,192,0.25);
    background: rgba(255, 255, 255, 1);
}
.testimonial-card .testimonial-image {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #f4f8fc;
    box-shadow: 0 4px 16px rgba(21,101,192,0.2);
    position: absolute;
    top: -40px;
    left: 20px;
    animation: fadeIn 1.2s;
    border: 3px solid #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.25) rotate(-5deg);
    box-shadow: 0 8px 32px rgba(21,101,192,0.35);
}

.testimonial-card .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-card .testimonial-quote {
    margin-left: 0;
    margin-top: 50px;
    font-style: italic;
    color: #1565c0;
    padding-left: 10px;
}
.clients {
    background: #fff;
    padding: 60px 0;
}
.clients-title {
    text-align: center;
    font-size: 2rem;
    color: #1565c0;
    margin-bottom: 30px;
    font-weight: 700;
}
.clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 20px;
}
.client-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 24px;
    color: #1976d2;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(21,101,192,0.12);
    margin-bottom: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 55px;
    padding: 12px 18px;
    font-size: 0.95rem;
}

.client-card-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(21,101,192,0.08);
    overflow: hidden;
}

.client-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-card-text {
    flex: 1;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.founder-image img {
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(21,101,192,0.12);
    border: 4px solid #fff;
}

.founder-bio h3 {
    color: #1565c0;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.founder-bio p {
    color: #1976d2;
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border-left: 4px solid #1976d2;
}

.faq-item h4 {
    color: #1565c0;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item p {
    margin: 0;
    color: #424242;
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.contact-info {
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.contact-form {
    max-width: 600px;
    margin: 40px auto 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    color: #1976d2;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.form-field {
    margin-bottom: 24px;
    min-height: 35px;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-form input {
    display: block;
    width: 100%;
    min-height: 35px;
    padding: 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    color: #2c3e50;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.contact-form input:focus {
    border-color: #3653c7;
    box-shadow: 0 0 0 4px rgba(54, 83, 199, 0.12), 0 4px 12px rgba(54, 83, 199, 0.15);
    background: #fff;
    transform: translateY(-2px);
}

.contact-form input:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.contact-form button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #3653c7 0%, #2c41a0 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', Georgia, serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(54, 83, 199, 0.3);
    min-height: 35px;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.contact-form button:hover::before {
    width: 400px;
    height: 400px;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #2c41a0 0%, #1e2d6e 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(54, 83, 199, 0.5);
}

.contact-form button:active {
    transform: translateY(-1px);
}

.form-privacy {
    font-size: 0.75rem;
    text-align: center;
    color: #64748b;
    opacity: 0.8;
    margin-top: 16px;
    line-height: 1.4;
}
footer {
    background: #0d47a1;
    color: #e3f2fd;
    padding: 40px 0 20px 0;
    text-align: center;
    font-size: 1rem;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 900px) {
    .cards, .testimonial-cards {
        grid-template-columns: 1fr;
    }
    .clients-list {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .container {
        padding: 0 8px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .section-title, .testimonials-title, .clients-title, .contact-section h2 {
        font-size: 1.3rem;
    }
    .hero .hero-image {
        width: 300px;
        height: 300px;
        max-width: 90%;
    }
}

/* Additional modern enhancements */
.hero {
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.card:hover .card-image {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.process-card {
    background: #f4f8fc;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(21,101,192,0.10);
    padding: 36px 28px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    border-top: 4px solid #1976d2;
}

.process-card:hover {
    box-shadow: 0 12px 32px rgba(21,101,192,0.18);
    transform: translateY(-6px) scale(1.03);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(21,101,192,0.3);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.case-study {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: 80px 0;
}

.case-study-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.case-study-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.case-study-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #7b1fa2;
}

.case-study-item h4 {
    color: #7b1fa2;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.case-study-item p {
    margin: 0;
    color: #424242;
    line-height: 1.6;
}

.case-study-testimonial {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid #7b1fa2;
}

.case-study-testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #7b1fa2;
    margin: 20px 0;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #424242;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.whatsapp-floater {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6); }
}

.whatsapp-floater:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-floater img {
    width: 36px;
    height: 36px;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Enhanced luxury effects */
.section {
    position: relative;
    overflow: hidden;
}

/* Removed shimmer animation for better performance */
/* .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: sectionShimmer 8s infinite;
}

@keyframes sectionShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
} */

/* Smooth focus states */
*:focus-visible {
    outline: 3px solid rgba(54, 83, 199, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced client cards */
.client-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(21,101,192,0.2);
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* FAQ item enhancements */
.faq-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-left-width: 6px;
}

/* Founder section enhancement */
.founder-image {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #42a5f5, #1976d2);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    filter: blur(20px);
}

.founder-image:hover::after {
    opacity: 0.5;
}

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

.founder-image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Benefits list enhancement */
.benefits-list li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-list li:hover {
    transform: translateX(10px);
    color: #0d47a1;
}

.benefits-list li:hover:before {
    transform: scale(1.3);
    color: #42a5f5;
}

.benefits-list li:before {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section titles animation */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #42a5f5, #1976d2);
    border-radius: 2px;
    opacity: 0.8;
}

/* Testimonials section enhancement */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Contact section enhancement */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: contactGlow 20s ease-in-out infinite;
}

@keyframes contactGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5%, 5%) rotate(180deg); }
}