


        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            min-height: 100vh;
            overflow-x: hidden;
            color: white;
        }

        /* Animated Background Elements */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

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

        /* Glass Morphism Container */
        .glass-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

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

        .glass-container:hover::before {
            left: 100%;
        }

        /* 3D Animated Icon */
        .hero-icon {
            font-size: 8rem;
            color: white;
            display: inline-block;
            animation: float3d 4s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
        }

        @keyframes float3d {
            0%, 100% {
                transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
            }
            25% {
                transform: translateY(-10px) rotateX(10deg) rotateY(5deg) scale(1.05);
            }
            50% {
                transform: translateY(-5px) rotateX(-5deg) rotateY(-5deg) scale(1.03);
            }
            75% {
                transform: translateY(-8px) rotateX(5deg) rotateY(10deg) scale(1.04);
            }
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
            to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6); }
        }

        /* Pulse Animation */
        .pulse-effect {
            animation: pulse 2s infinite;
        }

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

        /* Typing Animation */
        .typing-animation {
            overflow: hidden;
            border-right: 3px solid white;
            white-space: nowrap;
            margin: 0 auto;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: white }
        }

        /* Button Styles */
        .btn-glow {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            border-radius: 15px;
            padding: 15px 35px;
            font-weight: 600;
            font-size: 1.1rem;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
        }

        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(79, 70, 229, 0.6);
            color: white;
        }

        .btn-glow::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: 0.5s;
        }

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

        .btn-outline-glow {
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            border-radius: 15px;
            padding: 15px 35px;
            font-weight: 600;
            font-size: 1.1rem;
            color: white;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .btn-outline-glow:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            color: white;
        }

        /* Feature Cards */
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

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

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

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            animation: iconFloat 3s ease-in-out infinite;
        }

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

        /* Navigation */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.1) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Stats Counter */
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        /* Testimonial Cards */
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem;
            margin: 1rem;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* Map Animation */
        .map-point {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--secondary);
            border-radius: 50%;
            animation: mapPulse 2s infinite;
        }

        @keyframes mapPulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-icon {
                font-size: 5rem;
            }

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

            .btn-glow, .btn-outline-glow {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

/* Enhanced Service Cards - FIXED */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 250px; /* Fixed height for consistency */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 20, 137, 0.9), rgba(101, 126, 234, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover .service-icon {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.service-icon i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Service Card Content */
.service-card .rounded-bottom {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card .h4 {
    font-weight: 700;
    transition: color 0.3s ease;
    min-height: 3rem; /* Fixed height for title consistency */
    display: flex;
    align-items: center;
}

.service-card:hover .h4 {
    color: var(--warning) !important;
}

/* Button Styles - Fixed */
.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(247, 247, 247, 0.6);
    color: white;
    text-decoration: none;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: whitesmoke;
    transition: 0.5s;
}

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

/* Glass Container Fix */
.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.glass-container:hover::before {
    left: 100%;
}

/* Text Styling Fix */
.text-light.opacity-80 {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Pulse Effect Fix */
.pulse-effect {
    animation: pulse 2s infinite;
    display: inline-block;
}

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

/* Wow Animation Compatibility */
.wow {
    visibility: hidden;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .service-img {
        height: 200px;
    }

    .service-card .h4 {
        font-size: 1.1rem;
        min-height: 2.5rem;
    }

    .btn-glow {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .service-icon i {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .service-img {
        height: 180px;
    }

    .service-card .rounded-bottom {
        padding: 1.5rem !important;
    }
}

/* Ensure proper image display */
.service-img img.rounded-top {
    border-radius: 20px 20px 0 0 !important;
}

/* Fix for image aspect ratio */
.img-fluid.rounded-top.w-100 {
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover scale effect */
.hover-scale {
    transition: transform 0.5s ease;
}

.service-card:hover .hover-scale {
    transform: scale(1.1);
}

/* Border radius consistency */
.rounded-4 {
    border-radius: 20px !important;
}

.rounded-top {
    border-radius: 20px 20px 0 0 !important;
}

.rounded-bottom {
    border-radius: 0 0 20px 20px !important;
}

/* Text decoration fix for links */
.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-none:hover {
    text-decoration: none !important;
}

/* Ensure proper text contrast */
.text-white {
    color: #fff !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-light.opacity-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Fix for service card content alignment */
.service-card .rounded-bottom {
    display: flex;
    flex-direction: column;
    height: calc(100% - 250px); /* Adjust based on image height */
    justify-content: space-between;
}

/* Button alignment fix */
.btn-glow {
    align-self: flex-start;
    margin-top: auto;
}

















/* Welcome Section Styles */
.welcome-section {
    position: relative;
    overflow: hidden;
}

.welcome-image-container {
    position: relative;
    padding: 20px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.welcome-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.welcome-image:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.element-3 {
    bottom: 40px;
    left: -10px;
    animation-delay: 4s;
}

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

/* Speech Bubble */
.speech-bubble {
    position: absolute;
    top: -30px;
    right: -30px;
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: bubble-float 3s ease-in-out infinite;
    max-width: 200px;
}

.speech-bubble p {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.bubble-tail {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

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

/* Welcome Messages */
.welcome-messages {
    position: relative;
    height: 120px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.message.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typing Animation */
.typing-animation {
    overflow: hidden;
    border-right: 3px solid white;
    white-space: nowrap;
    margin: 0;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white }
}

/* Glass Container */
.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.glass-container:hover::before {
    left: 100%;
}


.btn-outline-glow {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-glow:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

/* Pulse Effect */
.pulse-effect {
    animation: pulse 2s infinite;
}

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

/* Stats */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-image {
        max-width: 300px;
    }

    .floating-element {
        transform: scale(0.8);
    }

    .element-1 {
        left: -10px;
    }

    .element-2 {
        right: -20px;
    }

    .speech-bubble {
        right: -10px;
        top: -20px;
        max-width: 150px;
    }

    .speech-bubble p {
        font-size: 12px;
    }

    .welcome-messages {
        height: 150px;
    }

    .typing-animation {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .welcome-image {
        max-width: 250px;
    }

    .floating-element {
        display: none;
    }

    .speech-bubble {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        max-width: 100%;
    }
}





















/* FAQ Section Styles */
.faq-section {
    position: relative;
    overflow: hidden;
}

/* Floating Background Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

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

/* Image Container */
.image-container {
    position: relative;
}

.welcome-image-wrapper {
    position: relative;
    display: inline-block;
}

.welcome-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    animation: image-float 6s ease-in-out infinite;
}

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

.welcome-image:hover {
    transform: scale(1.02) rotate(1deg);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.floating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    animation: badge-pulse 2s ease-in-out infinite;
}

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

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    background: transparent;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    transform: translateY(-2px);
}

.custom-accordion .accordion-button {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: none;
    color: white !important;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.custom-accordion .accordion-button::after {
    display: none;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cancellation Tiers */
.cancellation-tiers .tier {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid;
}

.free-tier { border-left-color: #10b981 !important; }
.partial-tier { border-left-color: #f59e0b !important; }
.no-refund-tier { border-left-color: #ef4444 !important; }

/* Glass Container */
.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}



.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.6);
    color: white;
}

.btn-outline-glow {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-glow:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-animation {
    overflow: hidden;
    border-right: 3px solid white;
    white-space: nowrap;
    margin: 0;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white }
}

/* Stats */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-image {
        max-width: 300px;
    }

    .floating-badge {
        right: 10px;
    }

    .custom-accordion .accordion-button {
        padding: 1rem;
    }

    .accordion-icon {
        width: 35px;
        height: 35px;
    }
}









/* Blog Section Styles */
.blog-section {
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.blog-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.blog-shape {
    position: absolute;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 50%;
    animation: blog-float 10s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 15%;
    animation-delay: 6s;
}

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

/* Blog Cards */
.blog-card {
    transition: all 0.4s ease;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Blog Images */
.blog-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-overlay {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.8), rgba(101, 126, 234, 0.6));
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-icon {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-icon {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.icon-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Blog Meta */
.blog-meta {
    background: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Blog Content */
.blog-content {
    background: #0f563b;
}

.author-avatar img {
    transition: transform 0.3s ease;
}

.blog-card:hover .author-avatar img {
    transform: scale(1.1);
}

.blog-title {
    transition: color 0.3s ease;
    line-height: 1.4;
}

.blog-title:hover {
    color: var(--primary) !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Glass Container */
.glass-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Badge */
.section-badge {
    animation: badge-pulse 2s ease-in-out infinite;
}

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

/* Category Badges */
.badge {
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* Reading Time */
.reading-time {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.blog-card:hover .reading-time {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-img {
        height: 200px;
    }

    .blog-meta {
        flex-direction: column;
        text-align: center;
    }

    .blog-meta > div {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .blog-meta > div:last-child {
        border-bottom: none !important;
    }
}

@media (max-width: 576px) {
    .blog-img {
        height: 180px;
    }

    .blog-content {
        padding: 1.5rem !important;
    }

    .blog-title {
        font-size: 1.25rem !important;
    }
}












/* Blog Post Section Styles */
.blog-post-section {
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.blog-post-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.blog-shape {
    position: absolute;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 50%;
    animation: blog-float 12s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 3%;
    animation-delay: 4s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 10%;
    animation-delay: 8s;
}

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

/* Blog Post Card */
.blog-post-card {
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Back Link */
.back-link {
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(79, 70, 229, 0.1);
}

.back-link:hover {
    background: rgba(79, 70, 229, 0.2);
    transform: translateX(-5px);
}

.back-link .transition-all {
    transition: transform 0.3s ease;
}

.back-link:hover .transition-all {
    transform: translateX(-3px);
}

/* Article Header */
.article-title {
    background: linear-gradient(135deg, #fff, #458bfb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Featured Image */
.featured-image {
    height: 400px;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7));
}

/* Image Gallery */
.gallery-image {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-img {
    transition: transform 0.5s ease;
    object-fit: cover;
}

.gallery-image:hover .gallery-img {
    transform: scale(1.1);
}

/* Single Image */
.single-image .image-container {
    overflow: hidden;
    border-radius: 16px;
}

.single-img {
    transition: transform 0.5s ease;
}

.single-image:hover .single-img {
    transform: scale(1.02);
}

/* Highlight Section */
.highlight-section {
    border-left: 4px solid #f59e0b !important;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.02));
}

/* Blockquote */
.blockquote {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

/* Tip Cards */
.tip-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    transition: transform 0.3s ease;
}

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

/* Tags & Badges */
.tag-badge {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tag-badge:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Action Buttons */
.action-btn {
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
}

/* Author Avatar */
.author-avatar, .author-sidebar-avatar {
    transition: transform 0.3s ease;
}

.author-avatar:hover, .author-sidebar-avatar:hover {
    transform: scale(1.1);
}

/* Related Articles */
.related-article-card {
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
}

.related-article-card:hover {
    background: rgba(79, 70, 229, 0.05);
    transform: translateX(5px);
}

.related-article-image {
    overflow: hidden;
    border-radius: 8px;
}

.related-article-image img {
    transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-image img {
    transform: scale(1.1);
}

/* Newsletter */
.newsletter-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(101, 126, 234, 0.05));
}

.newsletter-icon {
    transition: transform 0.3s ease;
}

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

/* Glass Container */
.glass-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-image {
        height: 300px;
    }

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

    .article-footer {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .author-stats .col-4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .featured-image {
        height: 250px;
    }

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

    .blog-post-card .p-4 {
        padding: 1.5rem !important;
    }
}















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

/* Background Shapes */
.contact-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: contact-float 15s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 5%;
    animation-delay: 6s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 15%;
    animation-delay: 9s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    bottom: 10%;
    left: 20%;
    animation-delay: 12s;
}

@keyframes contact-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(20px) rotate(240deg) scale(0.9);
    }
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    position: relative;
}

.contact-icon-inner {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(101, 126, 234, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: icon-float 3s ease-in-out infinite;
}

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

/* Contact Methods */
.contact-method {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    background: #0f563b;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    transition: all 0.3s ease;
}

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

/* Social Links */
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* Contact Form */
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.form-floating {
    position: relative;
}

.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: white;
}

.form-floating label {
    color: #6b7280;
    transition: all 0.3s ease;
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    color: var(--primary);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}




/* Map Card */
.map-card {
    background: #0f563b;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.map-info {
    background: #0f563b;
}

.min-h-300 {
    min-height: 300px;
}

/* Map Dots */
.map-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-dot {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.nairobi-dot { top: 40%; left: 45%; }
.kampala-dot { top: 55%; left: 48%; }
.dar-es-salaam-dot { top: 70%; left: 52%; }

.dot-pulse {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.city-name {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-dot:hover .city-name {
    opacity: 1;
}

/* Map Illustration */
.map-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Glass Container */
.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Badge */
.section-badge {
    animation: badge-pulse 2s ease-in-out infinite;
}

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

/* Loading Animation */
.loading-text {
    animation: pulse 1s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-method {
        padding: 1rem !important;
    }

    .method-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .map-visual {
        min-height: 250px !important;
    }

    .contact-icon-inner {
        width: 80px;
        height: 80px;
    }

    .contact-icon-inner i {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .map-card .row > div {
        width: 100%;
    }

    .map-info {
        padding: 1.5rem !important;
    }

    .contact-form-card {
        padding: 1.5rem !important;
    }

    .cta-card {
        padding: 2rem !important;
    }
}
