:root {
    --primary-color: #2563eb;
    --primary-light: rgba(37, 99, 235, 0.1);
    --secondary-color: #1d4ed8;
    --accent-color: #3b82f6;
    --accent-light: rgba(59, 130, 246, 0.1);
    --success-color: #10b981;
    --info-color: #0ea5e9;
    --warning-color: #f59e0b;
    --dark-color: #1e293b;
    --darker-color: #0f172a;
    --light-color: #f8fafc;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
        
body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    color: var(--dark-color);
    background-color: #fefefe;
    line-height: 1.7;
}
        
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}
        
/* Navbar with Glass Morphism */
.navbar {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    border-bottom: var(--glass-border);
    transition: all 0.4s ease;
    padding: 15px 0;
}
        
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
        
.nav-link {
    position: relative;
    margin: 0 15px;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}
        
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}
        
.nav-link:hover::after {
    width: 100%;
}
        
.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--dark-color);
}
        
.navbar-brand i {
    color: var(--primary-color);
}
        
/* Hero Section with Floating Elements */
.hero-section {
    background: var(--gradient);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}
        
.hero-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}
        
.hero-bg-element-1 {
    width: 800px;
    height: 800px;
    background: var(--primary-color);
    top: -300px;
    left: -300px;
}
        
.hero-bg-element-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}
        
.hero-bg-element-3 {
    width: 400px;
    height: 400px;
    background: var(--info-color);
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}
        
.hero-content {
    position: relative;
    z-index: 2;
}
        
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
        
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}
        
/* Button Styles */
.btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
}
        
.btn-primary {
    background: var(--gradient);
    padding: 12px 28px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}
        
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    color: white;
}
        
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}
        
.btn-primary:hover::before {
    left: 100%;
}
        
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 50px;
    background: transparent;
}
        
.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
    transform: translateY(-3px);
}
        
.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}
        
/* Badge Styles */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 16px;
}
        
/* Marquee Tool Slider */
.marquee-slider {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
        
.marquee-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(249,250,252,1) 0%, rgba(249,250,252,0) 10%, rgba(249,250,252,0) 90%, rgba(249,250,252,1) 100%);
    z-index: 2;
    pointer-events: none;
}
        
.swiper-wrapper {
    transition-timing-function: linear !important;
    padding: 20px 0;
}
        
.tool-slide {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.tool-slide .tool-icon i {font-size: unset;}
.swiper, .swiper-container {overflow:unset;}
.tool-slide img {width:50px;}
        
.tool-slide-2 .tool-slide {direction: ltr; unicode-bidi: bidi-override;}
.tool-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: all 0.5s ease;
}
        
.tool-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
        
.tool-slide:hover::before {
    height: 10px;
}
        
.tool-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
        
.tool-slide:hover .tool-icon {
    background: var(--gradient);
}
        
.tool-slide h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}
        
/*.tool-slide h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    transition: all 0.5s ease;
}*/
        
.tool-slide:hover h4::after {
    width: 80px;
}
        
.tool-slide p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1rem;
}
        
.tool-slide .btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-top: auto;
    font-weight: 500;
}
        
/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--dark-color);
}
        
.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--gradient);
    border-radius: 3px;
}
        
/* Features Section */
.features-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
        
.feature-box {
    display: flex;
    margin-bottom: 40px;
    transition: all 0.4s ease;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
        
.feature-box:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
}
        
.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(76, 68, 219, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}
        
.feature-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}
        
.feature-box:hover .feature-icon-box {
    background: var(--gradient);
    transform: rotate(10deg) scale(1.1);
}
        
.feature-box:hover .feature-icon-box::before {
    opacity: 1;
}
        
.feature-icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}
        
.feature-box:hover .feature-icon-box i {
    color: white;
    animation: bounce 0.6s ease;
}
        
.feature-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}
        
.feature-content p {
    color: #6c757d;
    margin-bottom: 0;
}
        
/* Stats Section */
.stats-section {
    background: var(--gradient);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
        
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
        
.stats-item {
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
        
.stats-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: white;
    transition: all 0.5s ease;
}
        
.stats-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
        
.stats-item:hover::before {
    height: 10px;
}
        
.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
        
.stats-number .plus {
    font-size: 2.5rem;
    margin-left: 5px;
    font-weight: 600;
}
        
.stats-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}
        
.stats-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}
        
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--darker-color) 0%, #12121a 100%);
    color: white;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
        
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}
        
.cta-content {
    position: relative;
    z-index: 1;
}
        
.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
        
.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
        
/* Tool Categories Section */
.categories-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9fafc 0%, #eef1f7 100%);
}
        
.category-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
        
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: all 0.5s ease;
}
        
.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
}
        
.category-card:hover::before {
    height: 10px;
}
        
.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.5s ease;
    position: relative;
}
        
.category-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.5s ease;
}
.dropdown-hover:hover .dropdown-menu {
    display: block;
}

.dropdown-menu-animated {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-hover:hover .dropdown-menu-animated {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Optional: Add a fade-in effect to dropdown items */
.dropdown-menu-animated .dropdown-item {
    opacity: 1;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-hover:hover .dropdown-menu-animated .dropdown-item {
    opacity: 1;
    transform: translateX(0);
}

/* Delay the items for a cascading effect */
.dropdown-menu-animated .dropdown-item:nth-child(1) {
    transition-delay: 0.1s;
}
.dropdown-menu-animated .dropdown-item:nth-child(2) {
    transition-delay: 0.2s;
}
.dropdown-menu-animated .dropdown-item:nth-child(3) {
    transition-delay: 0.3s;
}
.dropdown-menu-animated .dropdown-item:nth-child(4) {
    transition-delay: 0.4s;
}
.dropdown-menu-animated .dropdown-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* Optional: Add a subtle shadow */
.dropdown-menu {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    margin-top: 0; /* Remove default margin */
}

/* Make sure dropdown works on mobile */
@media (max-width: 991.98px) {
    .dropdown-hover .dropdown-menu {
        display: none;
    }
    .dropdown-hover:hover .dropdown-menu {
        display: none;
    }
    .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

a:-webkit-any-link:focus-visible {
    outline-offset: 0px;
}

:focus-visible {
    outline: 0px;
}        
.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}
        
.category-card:hover .category-icon::before {
    opacity: 1;
}
        
.category-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.5s ease;
}
        
.category-card:hover .category-icon i {
    color: #6c63ff;
    animation: bounce 0.8s ease;
}
        
.category-card h4 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
    color: #2f2e41;
}
        
.category-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    transition: all 0.5s ease;
}
        
.category-card:hover h4::after {
    width: 80px;
}
        
.category-card p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1rem;
}
        
.category-card .btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 50px;
    font-weight: 500;
}
        
/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6e9f2 100%);
    position: relative;
}
        
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
        
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: all 0.5s ease;
}
        
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
}
        
.testimonial-card:hover::before {
    height: 10px;
}
        
.testimonial-content {
    margin-bottom: 30px;
    font-style: italic;
    color: #5a5a72;
    position: relative;
}
        
.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    font-family: serif;
    line-height: 1;
}
        
.testimonial-content::before {
    top: -15px;
    left: -15px;
}
        
.testimonial-content::after {
    bottom: -40px;
    right: -15px;
}
        
.testimonial-author {
    display: flex;
    align-items: center;
}
        
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-light);
}
        
.author-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}
        
.author-info p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}
        
.testimonial-rating {
    color: var(--warning-color);
    margin-top: 5px;
}
        
/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9fafc 0%, #eef1f7 100%);
}
        
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}
        
.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: translateY(-20px);
}
        
.pricing-card.popular::before {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
        
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: all 0.5s ease;
}
        
.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
}
        
.pricing-card.popular:hover {
    transform: translateY(-25px);
}
        
.pricing-card:hover::before {
    height: 10px;
}
        
.pricing-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}
        
.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}
        
.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}
        
.pricing-features {
    margin-bottom: 40px;
    text-align: left;
}
        
.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
        
.pricing-features i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1rem;
}
        
/* Footer */
footer {
    background: var(--darker-color);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}
        
.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
}
        
.footer-about {
    margin-bottom: 30px;
    opacity: 0.8;
}
        
.footer-links h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
        
.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}
        
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
        
.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}
        
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    font-size: 1.2rem;
}
        
.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}
        
.newsletter-form {
    display: flex;
    margin-top: 20px;
}
        
.newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 50px 0 0 50px;
    width: 100%;
    outline: none;
}
        
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
        
.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
        
.newsletter-form button:hover {
    background: var(--secondary-color);
}
        
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 60px;
}
        
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}
        
.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(108, 99, 255, 0.4);
}
        
/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}
        
/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
        
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
        
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
        
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
        
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
        
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
        
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
        
/* Tool Hover Effects */
.tool-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}
        
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: all 0.5s ease;
}
        
.tool-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
}
        
.tool-card:hover::before {
    height: 10px;
}
        
.tool-icon-lg {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(76, 68, 219, 0.1));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.5s ease;
    position: relative;
}
        
.tool-icon-lg::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.5s ease;
}
        
.tool-card:hover .tool-icon-lg {
    transform: scale(1.1) rotate(5deg);
}
        
.tool-card:hover .tool-icon-lg::before {
    opacity: 1;
}
        
.tool-icon-lg i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.5s ease;
}
        
.tool-card:hover .tool-icon-lg i {
    color: white;
    animation: bounce 0.8s ease;
}
        
.tool-card h4 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}
        
.tool-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    transition: all 0.5s ease;
}
        
.tool-card:hover h4::after {
    width: 80px;
}
        
.tool-card p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1rem;
}
        
/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}
        
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-icon-box {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-box i {
        font-size: 1.8rem;
    }
    
    .stats-number {
        font-size: 3rem;
    }
}
        
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .feature-icon-box {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .stats-item {
        padding: 30px 20px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
}
        
@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .btn-lg {
        padding: 12px 24px;
    }
    
    .tool-slide, .category-card, .testimonial-card, .pricing-card {
        padding: 15px 10px;
    }
}

.py-100 {
    padding-bottom: 100px;
    padding-top: 100px;
}