:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #818cf8;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
}

body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--dark-color);
    color: var(--light-color);
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--light-color);
    text-decoration: none;
}

.social-icons a {
    color: var(--light-color);
    margin-left: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
    padding: 0.8rem 0;
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

/* Hero Slider Styles */
.hero-slider {
    padding: 5rem 0;
    position: relative;
}

.hero-slider .carousel-inner {
    border-radius: 1rem;
    overflow: hidden;
}

.hero-slider .carousel-item {
    padding: 3rem 0;
}

.hero-slider h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transform-origin: left center;
}

.hero-slider p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    transform-origin: left center;
}

.hero-slider .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(99, 102, 241, 0.5);
    border: none;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

/* Split Animation */
.split-animation > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.split-animation.active > * {
    opacity: 1;
    transform: translateY(0);
}

.split-animation.active > *:nth-child(1) { transition-delay: 0.1s; }
.split-animation.active > *:nth-child(2) { transition-delay: 0.3s; }
.split-animation.active > *:nth-child(3) { transition-delay: 0.5s; }
.split-animation.active > *:nth-child(4) { transition-delay: 0.7s; }

/* Scale Animation */
.scale-animation {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scale-animation.active {
    transform: scale(1);
    opacity: 1;
}

.delay-1 { transition-delay: 0.3s !important; }
.delay-2 { transition-delay: 0.6s !important; }

/* Animation Classes */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Styles */
.glassmorphism {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1) !important;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.testimonial-card blockquote {
    color: var(--secondary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
}

.contact-form .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-form .btn-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.social-icon {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.testimonial-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Tool Categories */
.tool-category {
    transition: all 0.3s ease;
}

.tool-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
}

/* Sub Footer */
.sub-footer {
    background-color: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sub-footer h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.sub-footer a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sub-footer a:hover {
    color: var(--primary-color);
}

.sub-footer input {
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-slider {
        padding: 3rem 0;
    }
    
    .hero-slider h1 {
        font-size: 2rem;
    }
    
    .hero-slider p {
        font-size: 1rem;
    }
    
    .top-bar .contact-info {
        display: none;
    }
    
    .social-icons {
        margin: 0 auto;
    }
}

.hover-primary {
    transition: color 0.3s ease;
}
.hover-primary:hover {
    color: #0d6efd !important;
}


/* Custom CSS */
.top-bar {
    background-color: #f8f9fa;
    font-size: 0.9rem;
}

.social-icon {
    color: #6c757d;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #0d6efd;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Animations */
.split-animation {
    overflow: hidden;
}

.scale-animation {
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .contact-info {
        display: none;
    }
    
    .hero-slider img {
        max-height: 300px;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
}

.cta-card {
    background: linear-gradient(135deg, #4a90e2, #2d68c4);
    color: white;
}

.sub-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

#cookie-banner {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}