:root {
    --space-sm: 8px;
    --space-md: 12px;
    --space-xl: 24px;
    --gray-300: #d1d5db;
    --gray-50: #f9fafb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-50);
    color: var(--gray-600);
    border-color: var(--gray-600);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 60%, #6366f1 100%);
    color: white;
    padding: 120px 0 0px;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23grid)"/></svg>') center/cover;
    opacity: 0.4;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom,
    rgba(59, 130, 246, 0) 0%,
    rgba(59, 130, 246, 0.1) 20%,
    rgba(59, 130, 246, 0.2) 40%,
    rgba(248, 250, 252, 0.6) 70%,
    #f8fafc 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 120px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    display: block;
    overflow: visible;
}

.title-word {
    display: inline-block;
    position: relative;
    margin-right: 0.2em;
    background: linear-gradient(135deg,
    #ffffff 0%,
    #f0f4ff 15%,
    #ffffff 30%,
    #e6efff 45%,
    #ffffff 60%,
    #dde7ff 75%,
    #ffffff 90%,
    #f0f4ff 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradientFlow 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.title-word:hover {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
}

.word-1 {
    animation-delay: 0s;
}

.word-2 {
    animation-delay: 0.2s;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    background: none;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
}

.word-3 {
    animation-delay: 0.4s;
    font-weight: 800;
}

.word-4 {
    animation-delay: 0.6s;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
}

.word-5 {
    animation-delay: 0.8s;
    background: linear-gradient(135deg,
    #ffffff 0%,
    #ffd700 25%,
    #ffffff 50%,
    #ffed4a 75%,
    #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldenGradientFlow 6s ease-in-out infinite;
    font-weight: 800;
    position: relative;
}

.word-5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 215, 0, 0.6) 25%,
    rgba(255, 237, 74, 0.8) 50%,
    rgba(255, 215, 0, 0.6) 75%,
    transparent 100%);
    border-radius: 50px;
    animation: perfectionUnderline 4s ease-in-out infinite;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: slideInFromLeft 1.2s ease-out 0.3s both;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

.text-highlight {
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(240, 245, 255, 0.95) 30%,
    rgba(255, 255, 255, 1) 60%,
    rgba(230, 238, 255, 0.9) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightGlow 5s ease-in-out infinite;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 0 2px;
}

.text-highlight::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 25%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.4) 75%,
    transparent 100%);
    border-radius: 50px;
    animation: underlineGlow 3s ease-in-out infinite;
}

.text-emphasis {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4),
    0 3px 6px rgba(0, 0, 0, 0.2);
    animation: emphasisPulse 4s ease-in-out infinite;
    letter-spacing: 0.5px;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInFromLeft 1.2s ease-out 0.6s both;
}

.hero-image {
    text-align: center;
    animation: slideInFromRight 1.2s ease-out 0.4s both;
    position: relative;
}

.hero-icon-container {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 300px;
}

.hero-icon-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-icon {
    font-size: 12rem;
    opacity: 0.95;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(240, 245, 255, 0.9) 20%,
    rgba(255, 255, 255, 1) 40%,
    rgba(230, 238, 255, 0.8) 60%,
    rgba(255, 255, 255, 1) 80%,
    rgba(220, 232, 255, 0.9) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rocketFloat 3s ease-in-out infinite,
    iconGradientShift 5s ease-in-out infinite,
    rocketPulse 2.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
    transition: all 0.3s ease;
    z-index: 10;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.element-1 {
    top: 10%;
    right: 15%;
    animation-name: floatElement1;
    animation-delay: 0s;
    color: rgba(255, 215, 0, 0.8);
}

.element-2 {
    top: 25%;
    left: 5%;
    animation-name: floatElement2;
    animation-delay: 1s;
    font-size: 1.3rem;
}

.element-3 {
    bottom: 30%;
    right: 10%;
    animation-name: floatElement3;
    animation-delay: 2s;
    color: rgba(144, 238, 144, 0.7);
}

.element-4 {
    bottom: 15%;
    left: 20%;
    animation-name: floatElement4;
    animation-delay: 3s;
    color: rgba(255, 215, 0, 0.8);
    font-size: 1.4rem;
}

.element-5 {
    top: 40%;
    left: -5%;
    animation-name: floatElement5;
    animation-delay: 1.5s;
    color: rgba(255, 165, 0, 0.7);
}

.element-6 {
    top: 60%;
    right: -5%;
    animation-name: floatElement6;
    animation-delay: 4s;
    color: rgba(255, 215, 0, 0.9);
    font-size: 1.2rem;
}

.orbit-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: rotateClockwise 20s linear infinite;
    border-style: dashed;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation: rotateCounterClockwise 25s linear infinite;
    border-color: rgba(255, 255, 255, 0.08);
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation: rotateClockwise 30s linear infinite;
    border-style: dotted;
    border-color: rgba(255, 255, 255, 0.06);
}

/* Buttons */
.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff6b6b 100%);
    background-size: 200% 100%;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    animation: pulse 1.5s ease-in-out infinite;
}

.btn-secondary {
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn-secondary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1e3a8a;
    border-color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-outline:hover {
    background-color: #1e3a8a;
    color: white;
}

/* Video Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    animation: testimonialsBackgroundShift 15s ease-in-out infinite alternate;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: titleSlideIn 1s ease-out both;
}

.section-title-stylish {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #6366f1 50%, #3b82f6 70%, #1e3a8a 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text-flow 4s ease-in-out infinite, titleSlideIn 1s ease-out both;
    letter-spacing: -0.02em;
}

.section-title-stylish::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.4) 10%,
    #3b82f6 25%,
    #1e3a8a 50%,
    #3b82f6 75%,
    rgba(59, 130, 246, 0.4) 90%,
    transparent 100%);
    border-radius: 50px;
    animation: underline-glow 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.section-title-stylish::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg,
    rgba(30, 58, 138, 0.2) 0%,
    rgba(30, 58, 138, 0.6) 30%,
    rgba(30, 58, 138, 0.9) 50%,
    rgba(30, 58, 138, 0.6) 70%,
    rgba(30, 58, 138, 0.2) 100%);
    border-radius: 50px;
    animation: underline-pulse 2.5s ease-in-out infinite;
}

@keyframes gradient-text-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes underline-glow {

    0%,
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(1);
        filter: blur(0px);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
        filter: blur(0.5px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
    }
}

@keyframes underline-pulse {

    0%,
    100% {
        opacity: 0.4;
        width: 80px;
        transform: translateX(-50%) scaleY(1);
    }

    50% {
        opacity: 0.8;
        width: 100px;
        transform: translateX(-50%) scaleY(1.2);
    }
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 60px;
    animation: titleSlideIn 1s ease-out 0.2s both;
}

/* Success Statistics */
.success-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 50px 0 70px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 140px;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.4s ease;
    animation: statFloat 6s ease-in-out infinite;
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 2s;
}

.stat-item:nth-child(3) {
    animation-delay: 4s;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(30, 58, 138, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

@keyframes statFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .success-stats {
        gap: 40px;
        margin: 40px 0 60px;
    }

    .stat-item {
        min-width: 120px;
        padding: 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: testimonialSlideIn 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.6s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.9s;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.03), rgba(251, 191, 36, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: videoGlow 3s ease-in-out infinite alternate;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e3a8a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: playButtonPulse 2s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.play-button i {
    margin-left: 4px;
}

.testimonial-card:hover .play-button {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    color: white;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.testimonial-card:hover .video-overlay {
    transform: translateY(0);
    opacity: 1;
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.client-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-content {
    padding: 30px;
    text-align: left;
}

.quote-icon {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    opacity: 0.8;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.rating i:nth-child(1) {
    animation-delay: 0s;
}

.rating i:nth-child(2) {
    animation-delay: 0.2s;
}

.rating i:nth-child(3) {
    animation-delay: 0.4s;
}

.rating i:nth-child(4) {
    animation-delay: 0.6s;
}

.rating i:nth-child(5) {
    animation-delay: 0.8s;
}

/* How It Works Section */
.how-it-works {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    animation: backgroundPulse 10s ease-in-out infinite alternate;
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    animation: titleSlideIn 1s ease-out 0.2s both;
    position: relative;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b, #fbbf24);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: underlineExpand 0.8s ease-out 1.2s both;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: calc(100% - 100px);
    height: 2px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(30, 58, 138, 0.2) 20%,
    rgba(59, 130, 246, 0.3) 50%,
    rgba(30, 58, 138, 0.2) 80%,
    transparent 100%);
    transform: translateX(-50%);
    animation: connectionLineGrow 2s ease-out 1.5s both;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: stepSlideIn 0.8s ease-out forwards;
    z-index: 2;
}

.step:nth-child(1) {
    animation-delay: 0.8s;
}

.step:nth-child(2) {
    animation-delay: 1.1s;
}

.step:nth-child(3) {
    animation-delay: 1.4s;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(251, 191, 36, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 16px;
}

.step::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b6b, #fbbf24, #34d399, #3b82f6);
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

.step:hover::before {
    opacity: 1;
}

.step:hover::after {
    opacity: 0.3;
}

.step:hover .step-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3);
}

.step:hover h3 {
    color: #ff6b6b;
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.step:hover .step-number {
    transform: scale(1.2) rotate(15deg);
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 50%, #ff6348 100%);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.6),
    0 0 0 4px rgba(255, 71, 87, 0.4),
    0 0 0 6px rgba(255, 255, 255, 0.8),
    inset 0 3px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 1);
    animation: hoverBounce 0.6s ease-out;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
    animation: iconPulse 4s ease-in-out infinite;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(251, 191, 36, 0.3), rgba(52, 211, 153, 0.3));
    border-radius: 50%;
    opacity: 0;
    animation: iconRipple 3s ease-in-out infinite;
    z-index: -1;
}


.step-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: iconFloat 3s ease-in-out infinite;
}

.step h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 18px;
    transition: all 0.4s ease;
    position: relative;
}

.step p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.4s ease;
}


/* Utility Classes */
.hidden {
    display: none !important;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.packages.hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 40%, rgba(76, 175, 80, 0.16) 34px, transparent 34px),
    radial-gradient(circle at 75% 60%, rgba(76, 175, 80, 0.14) 40px, transparent 40px),
    radial-gradient(circle at 10% 55%, rgba(76, 175, 80, 0.15) 37px, transparent 37px);
    background-size: 1000px 1000px, 1150px 1150px, 1050px 1050px;
    animation: floatBubblesReverse 18s ease-in-out infinite;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatBubblesReverse {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-42px, 48px);
    }

    50% {
        transform: translate(38px, -45px);
    }

    75% {
        transform: translate(46px, -32px);
    }
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-table {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 3px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 1 320px;
    width: 320px;
    max-width: 380px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e0e7ff 0%, #c7d2fe 50%, #a5b4fc 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.selected {
    border-color: #2196F3 !important;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%) !important;
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 25px 50px rgba(33, 150, 243, 0.2) !important;
}

.pricing-card.selected::before {
    background: linear-gradient(90deg, #2196F3 0%, #1976D2 50%, #0D47A1 100%) !important;
    opacity: 1 !important;
}

.pricing-card.featured {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 25px 80px rgba(33, 150, 243, 0.15);
    border: 2px solid rgba(33, 150, 243, 0.2);
    position: relative;
    margin-top: -10px;
    animation: gentle-pulse 4s ease-in-out infinite;
    overflow: hidden;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
    rgba(33, 150, 243, 0.1) 0%,
    rgba(33, 150, 243, 0.05) 25%,
    rgba(255, 215, 0, 0.1) 50%,
    rgba(33, 150, 243, 0.05) 75%,
    rgba(33, 150, 243, 0.1) 100%);
    border-radius: 22px;
    z-index: -1;
    animation: gentle-glow-border 6s ease-in-out infinite;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #2196F3 50%, #FFD700 100%);
    border-radius: 20px 20px 0 0;
    animation: shimmer 3s ease-in-out infinite;
}

.popular-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #1565C0;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #FFF;
    animation: gentle-glow 3s ease-in-out infinite alternate;
}

.card-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.pricing-card:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-card.featured .package-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.4));
    animation: gentle-float 4s ease-in-out infinite, icon-sparkle 3s ease-in-out infinite;
    position: relative;
}

.pricing-card.featured .card-body {
    position: relative;
}

.pricing-card.featured .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 80% 30%, rgba(33, 150, 243, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 70%, rgba(255, 215, 0, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 10% 60%, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 120px 120px, 80px 80px, 110px 110px, 90px 90px;
    animation: floating-particles 8s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

.pricing-card.featured .price {
    background: linear-gradient(135deg, #2196F3 0%, #FFD700 50%, #2196F3 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    transform: scale(1.05);
    animation: gradient-shift 3s ease-in-out infinite;
}

.pricing-card.selected .package-icon {
    transform: scale(1.15) rotate(10deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.pricing-card.selected .price {
    color: #1976D2;
    text-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}

.payment-modal.inactive {
    display: none;
}

.payment-modal.active {
    display: flex;
}

.pricing-card.featured .price {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    transform: scale(1.05);
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

.card-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-footer {
    margin-top: auto;
}

.package-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid #2196F3;
    background: transparent;
    color: #2196F3;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.1), transparent);
    transition: left 0.5s;
}

.package-btn:hover {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.package-btn:hover::before {
    left: 100%;
}

.package-btn.selected {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.pricing-card.selected .package-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.package-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1.5rem;
}

.btn-back {
    background: linear-gradient(135deg, #f1f8ff 0%, #e3f2fd 50%, #f8fbff 100%);
    color: #1565C0;
    border: 2px solid rgba(33, 150, 243, 0.25);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    padding: 1rem 2.2rem;
    font-size: 1rem;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
    min-width: 160px;
    transform-origin: center;
    cursor: pointer;
}

.btn-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-back:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #e1f5fe 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(33, 150, 243, 0.4);
    color: #0D47A1;
}

.btn-back:hover::before {
    left: 100%;
}

.btn-back:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

/* Professional package animations */
@keyframes gentle-pulse {

    0%,
    100% {
        transform: translateY(-10px) scale(1);
        box-shadow: 0 25px 80px rgba(33, 150, 243, 0.15);
    }

    50% {
        transform: translateY(-12px) scale(1.01);
        box-shadow: 0 30px 90px rgba(33, 150, 243, 0.2);
    }
}

@keyframes gentle-glow-border {

    0%,
    100% {
        opacity: 0.3;
        background: linear-gradient(45deg,
        rgba(33, 150, 243, 0.1) 0%,
        rgba(33, 150, 243, 0.05) 25%,
        rgba(255, 215, 0, 0.1) 50%,
        rgba(33, 150, 243, 0.05) 75%,
        rgba(33, 150, 243, 0.1) 100%);
    }

    50% {
        opacity: 0.5;
        background: linear-gradient(45deg,
        rgba(33, 150, 243, 0.15) 0%,
        rgba(33, 150, 243, 0.1) 25%,
        rgba(255, 215, 0, 0.15) 50%,
        rgba(33, 150, 243, 0.1) 75%,
        rgba(33, 150, 243, 0.15) 100%);
    }
}

@keyframes shimmer {
    0% {
        background: linear-gradient(90deg, #FFD700 0%, #2196F3 50%, #FFD700 100%);
        opacity: 0.6;
    }

    50% {
        background: linear-gradient(90deg, #2196F3 0%, #FFD700 50%, #2196F3 100%);
        opacity: 0.8;
    }

    100% {
        background: linear-gradient(90deg, #FFD700 0%, #2196F3 50%, #FFD700 100%);
        opacity: 0.6;
    }
}

@keyframes gentle-float {

    0%,
    100% {
        transform: scale(1.2) translateY(0px) rotate(0deg);
    }

    25% {
        transform: scale(1.25) translateY(-2px) rotate(2deg);
    }

    50% {
        transform: scale(1.2) translateY(-4px) rotate(0deg);
    }

    75% {
        transform: scale(1.25) translateY(-2px) rotate(-2deg);
    }
}

@keyframes icon-sparkle {

    0%,
    100% {
        filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.4)) brightness(1);
    }

    50% {
        filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.6)) brightness(1.2);
    }
}

@keyframes floating-particles {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-5px) translateX(-3px);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-15px) translateX(3px);
        opacity: 0.9;
    }

    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
        transform: scale(1.05);
    }

    50% {
        background-position: 100% 50%;
        transform: scale(1.08);
    }

    100% {
        background-position: 0% 50%;
        transform: scale(1.05);
    }
}

@keyframes gentle-glow {
    0% {
        box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 25px rgba(255, 193, 7, 0.6);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
        transform: scale(1);
    }
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    background: #1e3a8a;
    padding: 20px 30px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.step-item.active {
    color: white;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: white;
    color: #1e3a8a;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-content {
    padding: 40px;
}

.step-title {
    color: #1e3a8a;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step h3 {
    color: #1e3a8a;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.education-entry,
.experience-entry {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.9rem;
}

.add-btn {
    margin-bottom: 20px;
    width: 100%;
}

/* Form Navigation Styles */
.form-navigation {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: space-between;
    align-items: center;
}

.next-btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.back-btn {
    flex: 1;
    max-width: 150px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #e2e8f0;
    color: #475569;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.back-btn i {
    font-size: 0.9rem;
}

/* Single button layout for step 1 */
.form-navigation:has(.next-btn:only-child) {
    justify-content: center;
}

.form-navigation .next-btn:only-child {
    max-width: 200px;
}

/* Mobile responsiveness for form navigation */
@media (max-width: 768px) {
    .form-navigation {
        flex-direction: column;
        gap: 12px;
    }

    .next-btn,
    .back-btn {
        width: 100%;
        max-width: none;
    }
}

/* Package Selection */
.package-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.package-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover {
    border-color: #1e3a8a;
}

.package-card.selected {
    border-color: #1e3a8a;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

.package-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-card ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.package-card ul i {
    color: #22c55e;
}

.select-package {
    width: 100%;
    padding: 10px 20px;
}

.package-selected {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    border-radius: 12px;
    margin-top: 20px;
}

.reassurance {
    font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
}

.footer-logo i {
    font-size: 1.5rem;
}

/* Animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes complexFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-15px) translateX(5px);
    }

    50% {
        transform: translateY(-25px) translateX(-3px);
    }

    75% {
        transform: translateY(-10px) translateX(-8px);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 50% 100%;
    }

    75% {
        background-position: 0% 50%;
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes iconGlow {
    0% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 80px;
        opacity: 1;
    }
}

@keyframes connectionLineGrow {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: calc(100% - 100px);
        opacity: 1;
    }
}

@keyframes stepSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {

    0%,
    100% {
        background-position: 0% 0%;
        transform: scale(1);
    }

    50% {
        background-position: 100% 100%;
        transform: scale(1.05);
    }
}

@keyframes iconRipple {

    0%,
    70%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    35% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

@keyframes numberBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(180deg);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

@keyframes testimonialsBackgroundShift {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes testimonialSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes videoGlow {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes playButtonPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}


@media (max-width: 768px) {


    .popular-badge { /* move it slightly above the card */
        left: 24%;
        transform: translateX(-50%);

    }


    .pricing-table {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        overflow: visible !important; /* ensure features not cut */
        transform: none !important; /* remove scaling overlap */
    }

    .pricing-card.featured {
        transform: none !important;
        overflow: visible !important;
        z-index: auto; /* remove forced stacking */
    }

    .card-body {
        padding: 1rem;
        display: block !important; /* force visibility */
    }

    .features-list {
        display: block !important;
        margin-top: 0.75rem;
    }

    .features-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0.4rem 0;
        color: #444;
    }

    .features-list li::before {
        content: "✓";
        color: #28a745;
        font-weight: bold;
        margin-right: 6px;
    }

    .package-actions {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
    }

    .btn-back {
        min-width: 200px;
        margin-bottom: 0.5rem;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .features-list li {
        position: relative;
        padding-left: 1.8rem; /* space for the checkmark */
        font-size: 0.95rem;
        line-height: 1.5;
        color: #444;
    }

    .features-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #28a745;
        font-weight: bold;
        font-size: 1rem;
    }


    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 20px 100px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-icon {
        font-size: 8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .steps {
        grid-template-columns: 1fr;
    }


    .step-indicator {
        padding: 15px 20px;
    }

    .step-label {
        display: none;
    }

    .form-content {
        padding: 30px 20px;
    }

    .package-selection {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .btn {
        padding: 16px 32px;
        font-size: 1rem;
        min-width: 140px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* New Hero Animations */
@keyframes rocketFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(-5deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px) rotate(5deg);
    }
}

@keyframes rocketPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
    }

    100% {
        transform: translate(-50%, -50%) scale(1.02);
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.6));
    }
}

@keyframes iconGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatElement1 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.8;
    }

    33% {
        transform: translateY(-15px) translateX(5px) rotate(120deg);
        opacity: 1;
    }

    66% {
        transform: translateY(-5px) translateX(-8px) rotate(240deg);
        opacity: 0.6;
    }
}

@keyframes floatElement2 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-12px) translateX(10px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes floatElement3 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-8px) translateX(-6px) rotate(90deg);
        opacity: 0.9;
    }

    75% {
        transform: translateY(8px) translateX(4px) rotate(270deg);
        opacity: 0.8;
    }
}

@keyframes floatElement4 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-18px) translateX(-5px) scale(1.15) rotate(180deg);
        opacity: 1;
    }
}

@keyframes floatElement5 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }

    40% {
        transform: translateY(-10px) translateX(8px);
        opacity: 0.9;
    }

    80% {
        transform: translateY(5px) translateX(-3px);
        opacity: 0.8;
    }
}

@keyframes floatElement6 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.9;
    }

    60% {
        transform: translateY(-14px) translateX(-7px) rotate(216deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes alwaysVisiblePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5),
        0 0 0 3px rgba(255, 107, 53, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.7),
        0 0 0 4px rgba(255, 107, 53, 0.4),
        0 0 20px rgba(255, 107, 53, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
}

@keyframes hoverBounce {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.25) rotate(20deg);
    }

    100% {
        transform: scale(1.2) rotate(15deg);
    }
}

/* Enhanced Hero Text Animations */

@keyframes titleGradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes goldenGradientFlow {
    0% {
        background-position: 0% 50%;
    }

    33% {
        background-position: 100% 50%;
    }

    66% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes perfectionUnderline {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

@keyframes highlightGlow {

    0%,
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    }

    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    }
}

@keyframes underlineGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}

@keyframes emphasisPulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
        0 0 25px rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }
}

/* Review Section Styles */
.review-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite alternate;
    z-index: 0;
}

.review-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.review-header {
    text-align: center;
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    position: relative;
}

.review-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
    opacity: 0.3;
}

.review-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.review-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.review-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.review-content {
    padding: 40px;
}

/* Triangle Layout for Review Cards */
.review-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.review-grid-bottom {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.review-grid-bottom .review-card {
    max-width: 400px;
    width: 100%;
}

.review-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.highlight-card {
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
    position: relative;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
}

.review-card-header {
    padding: 20px 20px 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-card-header i {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-right: 10px;
}

.review-card-header h3 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.edit-btn {
    background: #f0f4ff;
    color: #3b82f6;
    border: 1px solid #ddd6fe;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.edit-btn:hover {
    background: #e0e7ff;
    border-color: #c7d2fe;
    transform: translateY(-1px);
}

.edit-btn i {
    font-size: 0.8rem;
}

.review-card-content {
    padding: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

.info-value {
    font-weight: 500;
    color: #1e293b;
    font-size: 0.95rem;
}

.package-info {
    margin-bottom: 20px;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 15px;
}

.package-features {
    space-y: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #374151;
}

.feature-item i {
    color: #10b981;
    font-size: 0.8rem;
    width: 12px;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.entry-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    border-left: 4px solid #3b82f6;
}

.entry-item:last-child {
    margin-bottom: 0;
}

.entry-main {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 4px;
}

.entry-sub {
    font-weight: 500;
    color: #3b82f6;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.entry-detail {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.entry-detail:last-child {
    margin-bottom: 0;
}

.empty-state {
    text-align: center;
    padding: 30px 20px;
    color: #64748b;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.empty-state i {
    color: #94a3b8;
    font-size: 1.1rem;
}

.total-summary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.total-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.summary-content {
    position: relative;
    z-index: 2;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.total-row {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

.summary-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-price {
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.review-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.review-actions .btn {
    flex: 1;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.review-actions .btn-secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.review-actions .btn-secondary:hover {
    background: #e2e8f0;
    color: #475569;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.review-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.review-actions .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #5b21b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Mobile Responsiveness for Review Section */
@media (max-width: 768px) {
    .review-section {
        padding: 40px 0;
    }

    .review-header {
        padding: 30px 20px 20px;
    }

    .review-header h2 {
        font-size: 1.8rem;
    }

    .review-content {
        padding: 20px;
    }

    .review-grid-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-grid-bottom .review-card {
        max-width: none;
    }

    .review-actions {
        flex-direction: column;
    }

    .edit-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}


/* Navigation */

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(65%) saturate(3200%) hue-rotate(202deg) brightness(115%) contrast(105%);
}

.bar {
    width: 25px;
    height: 2.2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation Auth Buttons */


:root {
    /* Brand Colors */
    --primary-5003: #3b82f6;
    --primary-6003: #2563eb;

    /* Neutral Colors */
    --gray-2003: #e5e7eb;
    --gray-7003: #374151;

    /* Gradients */
    --gradient-primary3: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);

    /* Typography */
    --font-family-primary3: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-semibold3: 600;

    /* Spacing */
    --space-xs3: 0.25rem;
    --space-sm3: 0.5rem;
    --space-md3: 1rem;
    --space-lg3: 1.5rem;
    --space-xl3: 2rem;
    --space-2xl3: 3rem;

    /* Border Radius */
    --radius-lg3: 0.75rem;
    --radius-xl3: 1rem;

    /* Shadows */
    --shadow-lg3: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-normal3: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
    animation: slideInDown 0.8s ease-out 0.1s forwards;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    height: 100px;
    position: relative;
    gap: 40px;
}

@media (max-width: 800px) {
    .nav-container {
        height: 90px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    flex-shrink: 0;
    z-index: 1001;
    justify-self: start;
    margin-left: -10px;
}

@media (min-width: 800px) {
    .nav-logo {
        position: relative;
        right: 50px;
    }
}

.nav-logo i {
    color: #2196F3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    justify-self: center;
    margin-left: 190px;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 8px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transform: none;
        padding: 10px 0;
        /* smaller padding top/bottom */
        gap: 0;
        margin-left: 0;
        border-radius: 0 0 12px 12px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 2px 0;
        /* very small spacing */
    }

    .nav-menu li:first-child {
        margin-top: 0;
    }

    .nav-menu li:last-child {
        margin-bottom: 0;
    }

    .nav-menu a {
        padding: 8px;
        /* smaller clickable area */
        display: block;
    }
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.nav-link:hover {
    color: #2196F3;
    text-shadow: 0 0 8px rgba(33, 150, 243, 0.6), 0 0 16px rgba(33, 150, 243, 0.4), 0 0 24px rgba(33, 150, 243, 0.2);
    box-shadow: 0 0 12px rgba(33, 150, 243, 0.15), inset 0 0 12px rgba(33, 150, 243, 0.05);
    background: rgba(33, 150, 243, 0.05);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: calc(100% - 32px);
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.8);
}

/* Special Invite Link Styling */
.nav-link-special {
    position: relative;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.04), rgba(25, 118, 210, 0.02));
    border: 1px solid rgba(33, 150, 243, 0.08);
    border-radius: 12px;
    padding: 8px 16px !important;
    overflow: hidden;
    backdrop-filter: blur(2px);
    animation: inviteGlow 4s ease-in-out infinite;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.nav-link-special::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: subtleShimmer 6s ease-in-out infinite;
    z-index: 1;
    border-radius: 12px;
}


.nav-link-special:hover {
    color: #2196F3 !important;
    text-shadow: 0 0 6px rgba(33, 150, 243, 0.4);
    box-shadow: 0 0 12px rgba(33, 150, 243, 0.2),
    0 0 24px rgba(33, 150, 243, 0.1),
    inset 0 0 8px rgba(33, 150, 243, 0.06);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(25, 118, 210, 0.05));
    border-color: rgba(33, 150, 243, 0.25);
    transform: translateY(-2px);
}

.nav-link-special span {
    position: relative;
    z-index: 2;
}

@keyframes inviteGlow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(33, 150, 243, 0.3),
        0 0 16px rgba(33, 150, 243, 0.15),
        inset 0 0 6px rgba(33, 150, 243, 0.1);
        border-color: rgba(33, 150, 243, 0.25);
    }

    50% {
        box-shadow: 0 0 14px rgba(33, 150, 243, 0.45),
        0 0 28px rgba(33, 150, 243, 0.25),
        inset 0 0 10px rgba(33, 150, 243, 0.15);
        border-color: rgba(33, 150, 243, 0.35);
    }
}

@keyframes subtleShimmer {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 0.3;
        transform: translateX(100%);
    }
}


.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    right: -80px;
}


.btn3 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm3);
    padding: var(--space-md3) var(--space-xl3);
    border: none;
    border-radius: var(--radius-lg3);
    font-family: var(--font-family-primary3);
    font-weight: var(--font-weight-semibold3);
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal3);
    position: relative;
    overflow: hidden;
}

.btn3-primary {
    background: var(--gradient-primary3);
    color: white;
    box-shadow: var(--shadow-lg3);
}

.btn3-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg3);
}

.btn3-hero {
    padding: var(--space-lg3) var(--space-2xl3);
    font-size: 1rem;
    font-weight: var(--font-weight-bold3);
    border-radius: var(--radius-xl3);
}

/* Tablet and below */
@media (max-width: 768px) {
    .btn3 {
        width: 100%;
        justify-content: center;
        padding: var(--space-lg3) var(--space-xl3);
        font-size: 0.9375rem;
    }

    .btn3-hero {
        width: 100%;
        padding: var(--space-lg3) var(--space-2xl3);
        font-size: 1.125rem;
    }

    /* Button container for stacked layout */
    .btn3-container {
        flex-direction: column;
        gap: var(--space-sm3);
        margin-bottom: var(--space-lg3);
    }
}

/* Phone and small devices */
@media (max-width: 480px) {
    .btn3 {
        width: 100%;
        padding: var(--space-md3) var(--space-lg3);
        font-size: 0.875rem;
        border-radius: var(--radius-lg3);
    }

    .btn3-hero {
        width: 100%;
        padding: var(--space-lg3) var(--space-xl3);
        font-size: 1rem;
        border-radius: var(--radius-lg3);
    }

    /* Reduced hover effects on mobile for better touch experience */
    .btn3-primary:hover {
        transform: none;
        box-shadow: var(--shadow-lg3);
    }

    /* Touch-friendly active state */
    .btn3-primary:active {
        transform: scale(0.98);
    }

}


@media (max-width: 768px) {

    .mobile-login {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 8px;
        font-weight: 600;
        background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
        transition: all 0.3s ease;
    }

    .mobile-login:hover {
        background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
        box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
        transform: translateY(-2px);
    }

}


.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: -10px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .nav-right {
        gap: 8px;
    }
}


/* Navigation Auth Buttons */
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    left: 50px;
}

@media (max-width: 768px) {
    .nav-actions {
        display: none !important;
    }
}


.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    right: -80px;
}


@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}


@media (max-width: 768px) {

    /* Override navbar glow effects for mobile */
    .nav-link {
        padding: 16px 20px;
        margin: 8px 0;
        position: relative;
        border-radius: 8px;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
    }

    .nav-link:hover {
        text-shadow: none;
        box-shadow: none;
        background: rgba(33, 150, 243, 0.1);
        transform: none;
        border-bottom-color: #2196f3;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 2px;
        background: linear-gradient(90deg, #2196f3, #1976d2);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        border-radius: 1px;
    }

    .nav-link:hover::after {
        transform: scaleX(1);
        box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
    }

    /* Special styling for active nav link */
    .nav-link.active {
        background: rgba(33, 150, 243, 0.15);
        border-bottom-color: #2196f3;
    }

    .nav-link.active::after {
        transform: scaleX(1);
        background: linear-gradient(90deg, #2196f3, #1976d2);
    }
}

.bar {
    width: 25px;
    height: 2.2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {

    .mobile-auth-buttons {
        display: flex !important;
        flex-direction: column;
        margin: 20px 0;
        padding: 0 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }
}

.mobile-auth-buttons {
    display: none;
}

@media (max-width: 768px) {

    .nav-link.active {
        background: transparent !important;
        color: inherit !important;
        border-bottom: none !important;
        text-shadow: none !important;
        box-shadow: none !important;
        -webkit-tap-highlight-color: transparent !important;
        outline: none !important;
    }

}


.logo-image {
    height: 105px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(65%) saturate(3200%) hue-rotate(202deg) brightness(115%) contrast(105%);
}

@media (min-width: 800px) {
    .nav-menu {
        margin-left: 250px;
    }
}

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-5xl) 0 var(--space-2xl);
    margin-top: var(--space-5xl);
}

/* Grid Layout */
.footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer .col-md-4 {
    padding: 0 15px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.footer .col-md-2 {
    padding: 0 15px;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.footer .offset-md-2 {
    margin-left: 16.666667%;
}

/* Spacing Utilities */
.footer .mb-4 {
    margin-bottom: var(--space-lg);
}

.footer .mb-md-0 {
    margin-bottom: 0;
}

.footer .mt-4 {
    margin-top: var(--space-lg);
}

.footer .me-2 {
    margin-right: 0.5rem;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(39%) sepia(57%) saturate(4755%) hue-rotate(185deg) brightness(99%) contrast(93%);
    margin-bottom: var(--space-md);
}

.footer p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer h5 {
    color: white;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.footer .list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .list-unstyled li {
    margin-bottom: var(--space-sm);
}

.footer .list-unstyled a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer .list-unstyled a:hover {
    color: white;
}

.social-icons {
    display: none;
    /* Currently hidden */
    gap: var(--space-md);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
}

.footer-bottom .text-white-50 {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-bottom .text-white-50:hover {
    color: var(--gray-300);
}

@media (max-width: 1024px) {

    .footer .col-md-4,
    .footer .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer .offset-md-2 {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    .footer .col-md-4,
    .footer .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--space-lg);
    }

    .footer .offset-md-2 {
        margin-left: 0;
    }

    .footer-bottom {
        text-align: center;
    }
}

:root {
    /* Colors */
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --primary-600: #2563eb;

    /* Typography */
    --font-weight-semibold: 600;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-2xl: 3rem;
    --space-5xl: 6rem;

    /* Transitions */
    --transition-normal: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 800px) {

    .nav-toggle {
        right: -55px;
        top: -3px;
    }
}

@media (max-width: 380px) {
    .nav-toggle {
        right: -65px;
        top: -3px;
    }
}

@media (min-width: 400px) and (max-width: 800px) {
    .nav-toggle {
        right: -105px;
        top: -3px;
    }
}

@media (min-width: 381px) and (max-width: 399px) {
    .nav-toggle {
        right: -85px;
        top: -3px;
    }
}

/* Additional styles for the credit choice modal */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-modal-overlay.modal-active {
    opacity: 1;
}

.credit-choice-container {
    padding: 20px 0;
}

.choice-header {
    text-align: center;
    margin-bottom: 30px;
}

.choice-header p {
    margin: 5px 0;
    color: #64748b;
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-option {
    flex: 1;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.payment-option:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.payment-option.selected {
    border-color: #3b82f6;
    background: #f0f4ff;
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #64748b;
}

.payment-option.selected .option-icon {
    color: #3b82f6;
}

.option-content h4 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-weight: 600;
}

.option-content p {
    margin: 0 0 10px 0;
    color: #64748b;
    font-size: 0.9rem;
}

.option-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #059669;
}

.card-option .option-price {
    color: #dc2626;
}

.option-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #3b82f6;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-option.selected .option-check {
    opacity: 1;
}

.btn-modal {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-modal-secondary {
    background: #f1f5f9;
    color: #64748b;
}

.btn-modal-secondary:hover {
    background: #e2e8f0;
}

.btn-modal-primary {
    background: #3b82f6;
    color: white;
}

.btn-modal-primary:hover:not(:disabled) {
    background: #2563eb;
}

.btn-modal-primary:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
    }

    .payment-option {
        margin-bottom: 15px;
    }
}

@media (min-width: 800px) {
    .popular-badge { /* move it slightly above the card */
        left: 93px;
        transform: translateX(-50%);

    }
}


/* Animated dots */
.processing::after {
    content: ' .';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: ' .';
    }
    40% {
        content: ' ..';
    }
    60% {
        content: ' ...';
    }
    80%, 100% {
        content: '';
    }
}


@media (max-width: 768px) {
    /* ADD THESE LINES */
    .hero {
        padding-top: 90px; /* Reduced from 120px */
    }
    
   
}

.nav-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;  /* Width of the touch area */
    height: 60px; /* Height of the touch area */
    background: transparent; /* Keeps it invisible */
    z-index: 100; /* Ensures it sits on top of the lines */
}

/* Trusted By / Logo Carousel Section */
.trusted-by-section {
    padding: 40px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px; /* Spacing between text and logos */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.slider {
    height: 60px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1000px;
}

/* Gradient Masks to fade logos in/out at the edges */
.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
    top: 0;
    pointer-events: none;
}

.slider::before {
    left: 0;
}

.slider::after {
    right: 0;
    transform: rotate(180deg);
}

.slide-track {
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(200px * 14); /* 200px slide width * 14 slides */
}

.slide {
    height: 60px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #94a3b8; /* Muted color initially */
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif; /* Matching your body font */
    transition: all 0.3s ease;
    cursor: default;
}

/* Hover effect to bring logos to life */
.slide:hover {
    color: #3b82f6; /* Your primary blue */
    transform: scale(1.1);
}

.slide i {
    font-size: 1.8rem;
}

/* Animation Keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7)); /* Move by half the total width */
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trusted-by-section {
        padding: 30px 0;
    }
    
    .slider::before,
    .slider::after {
        width: 50px; /* Smaller fade area on mobile */
    }
    
    .slide {
        width: 150px; /* Smaller items */
        font-size: 1.2rem;
    }
    
    .slide-track {
        width: calc(150px * 14);
        animation-duration: 20s; /* Faster scroll on mobile */
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 7)); }
    }
}

/* Trusted By / Logo Carousel Section - Seamless Version */
.trusted-by-section {
    position: relative;
    z-index: 10;
    padding: 40px 0;
    /* 1. Match the Testimonials background exactly */
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    /* 2. Remove the delimiting line and shadow */
    border-bottom: none; 
    box-shadow: none;
    overflow: hidden;
    display: block;
}

.slide-track {
    display: flex;
    /* 200px width * 16 total slides */
    width: calc(200px * 16); 
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move left by exactly half the track (8 slides) */
        transform: translateX(calc(-200px * 8)); 
    }
}
#navbar-placeholder{
    height:1px;
}