:root {
    --primary-color: #2A2D5E;
    --secondary-color: #00E5CC;
    --text-color: #1f2937;
    --light-bg: #F5F5F5;
    --accent-color: #6C63FF;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

.gradient-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-symbol {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.logo-symbol::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--secondary-color);
    top: 20%;
    left: 20%;
    border-radius: 6px;
    transform: rotate(45deg);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.svg') center/cover;
    opacity: 0.1;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon-wrapper i {
    color: white !important;
}

/* Footer Styles */
.footer-links a {
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1 !important;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

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

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1rem;
}

/* Custom Badges */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Custom Buttons */
.btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Form Styles */
.form-outline .form-control:focus {
    box-shadow: none !important;
}

.form-select-lg {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 1rem;
}

/* Custom Select Styles */
.form-select {
    background-color: transparent;
    border: 1px solid #bdbdbd;
    border-radius: 0.25rem;
    transition: all .2s linear;
}

.form-select:focus {
    border-color: #3b71ca;
    box-shadow: inset 0 0 0 1px #3b71ca;
}

/* Card Hover Effects */
.card.hover-shadow {
    cursor: default;
}

/* Wave Animation */
@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}

.wave-animation {
    animation: wave 10s ease-in-out infinite;
}
