                body {
                  background-color: white; /* Ensure the iframe has a white background */
                }

                body {
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    overflow-x: hidden;
}
html { scroll-behavior: smooth; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.glass-card {
    background: rgba(22, 22, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-mockup {
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a2e 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding: 12px;
    background: rgba(0,0,0,0.3);
}

.mockup-dot { width: 8px; height: 8px; border-radius: 50%; }

.mockup-content { padding: 12px; }
.mockup-line {
    height: 8px;
    background: rgba(255,107,53,0.3);
    border-radius: 4px;
    margin-bottom: 8px;
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.arrow-circle:hover { transform: rotate(-45deg) scale(1.1); }

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #FF6B35;
    background: #0f0f1a;
}
.timeline-dot.active { background: #FF6B35; }

.portfolio-card { transition: transform 0.4s ease; }
.portfolio-card:hover { transform: translateY(-8px); }

.testimonial-card {
    background: rgba(22, 22, 42, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
}

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

.orange-gradient { background: linear-gradient(135deg, #FF6B35, #FF8F65); }

.dark-section { background: #0f0f1a; }

.service-card {
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border: 1px solid rgba(255, 107, 53, 0.08);
    transition: all 0.4s ease;
}
.service-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1);
}

.nav-blur {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.float-anim { animation: float 6s ease-in-out infinite; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.5); }
}
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

.text-gradient {
    background: linear-gradient(135deg, #FF6B35, #FF8F65, #FFB088);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer.open { max-height: 300px; }

.sticky-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: none;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f0f1a; }
::-webkit-scrollbar-thumb { background: #FF6B35; border-radius: 4px; }

                .rounded-full {
                    border-radius: 9px !important;
                }
