:root {
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --accent-color: #ff6b6b;
    --accent-secondary: #4ecdc4;
    --accent-tertiary: #ffbe0b;
    --accent-quaternary: #a78bfa;
    --accent-quinary: #60a5fa;
    --light-bg: #f8f9fa;
    --dark-bg: #333;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    padding-top: 70px;
}

/* Navigation */
.navbar {
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.navbar-brand {
    font-weight: bold;
    color: var(--white) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--white) !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    margin-top: -70px;
    padding-top: 140px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Animated shapes */
.shape {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: var(--accent-secondary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 12s infinite ease-in-out reverse;
}

.shape-3 {
    bottom: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--accent-tertiary);
    border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
    animation: float 18s infinite ease-in-out;
}

.shape-4 {
    bottom: 30%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: var(--accent-quaternary);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 10s infinite ease-in-out reverse;
}

.shape-5 {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: var(--accent-quinary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 20s infinite ease-in-out;
    transform: translate(-50%, -50%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 15s infinite linear;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-secondary));
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary-custom::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: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Forms Section */
.forms-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(78, 205, 196, 0.05));
    position: relative;
}

.forms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--accent-secondary));
}

.nav-tabs {
    border: none;
    margin-bottom: 30px;
    position: relative;
}

.nav-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.nav-tabs .nav-link {
    color: var(--light-text);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.nav-tabs .nav-link:hover::before {
    left: 100%;
}

.nav-tabs .nav-link.active {
    color: var(--white);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.tab-content {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tab-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
    background: var(--white);
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::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: left 0.5s;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 102, 204, 0.4);
}

.demo-note {
    font-size: 0.85rem;
    color: var(--light-text);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--light-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    transform: translate(30%, 30%);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated shapes in about section */
.about-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.about-shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 22s infinite ease-in-out;
}

.about-shape-2 {
    top: 30%;
    right: 10%;
    width: 90px;
    height: 90px;
    background: var(--accent-secondary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 18s infinite ease-in-out reverse;
}

.about-shape-3 {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: var(--accent-tertiary);
    border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
    animation: float 25s infinite ease-in-out;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Animated shapes in testimonials section */
.testimonial-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.testimonial-shape-1 {
    top: 15%;
    left: 8%;
    width: 110px;
    height: 110px;
    background: var(--accent-quaternary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 20s infinite ease-in-out;
}

.testimonial-shape-2 {
    top: 40%;
    right: 12%;
    width: 80px;
    height: 80px;
    background: var(--accent-quinary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 15s infinite ease-in-out reverse;
}

.testimonial-shape-3 {
    bottom: 25%;
    left: 18%;
    width: 95px;
    height: 95px;
    background: var(--accent-color);
    border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
    animation: float 23s infinite ease-in-out;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    margin-right: 15px;
}

.author-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.author-info p {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated shapes in pricing section */
.pricing-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.pricing-shape-1 {
    top: 12%;
    left: 7%;
    width: 130px;
    height: 130px;
    background: var(--accent-secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 24s infinite ease-in-out;
}

.pricing-shape-2 {
    top: 35%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: var(--accent-tertiary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 19s infinite ease-in-out reverse;
}

.pricing-shape-3 {
    bottom: 20%;
    left: 20%;
    width: 115px;
    height: 115px;
    background: var(--accent-quinary);
    border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
    animation: float 21s infinite ease-in-out;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.pricing-card.popular::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0) 50%);
    pointer-events: none;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.price::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.price span {
    font-size: 1rem;
    color: var(--light-text);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: -15px;
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease;
}

.pricing-card:hover .pricing-features li::before {
    opacity: 1;
    left: -20px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Animated shapes in contact section */
.contact-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.contact-shape-1 {
    top: 10%;
    left: 5%;
    width: 140px;
    height: 140px;
    background: var(--accent-quaternary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 26s infinite ease-in-out;
}

.contact-shape-2 {
    top: 30%;
    right: 8%;
    width: 110px;
    height: 110px;
    background: var(--accent-color);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 20s infinite ease-in-out reverse;
}

.contact-shape-3 {
    bottom: 15%;
    left: 12%;
    width: 125px;
    height: 125px;
    background: var(--accent-secondary);
    border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
    animation: float 23s infinite ease-in-out;
}

.contact-info {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--light-text);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Animated shapes in footer */
.footer-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.footer-shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 20s infinite ease-in-out;
}

.footer-shape-2 {
    top: 30%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--accent-secondary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 15s infinite ease-in-out reverse;
}

.footer-shape-3 {
    bottom: 20%;
    left: 15%;
    width: 120px;
    height: 120px;
    background: var(--accent-tertiary);
    border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
    animation: float 25s infinite ease-in-out;
}

.footer-shape-4 {
    bottom: 30%;
    right: 20%;
    width: 90px;
    height: 90px;
    background: var(--accent-quaternary);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 18s infinite ease-in-out reverse;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.footer-description {
    color: #ccc;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    z-index: 2;
}

.footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-secondary);
    transition: width 0.3s ease, left 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover::before {
    width: 5px;
    left: 0;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form .btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-secondary));
    border: none;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.social-links {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-secondary));
    color: var(--white);
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-section,
    .about-section,
    .testimonials-section,
    .pricing-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer h5 {
        margin-top: 20px;
    }

/* About Page Styles */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-text);
}

.mission-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(78, 205, 196, 0.05));
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary), var(--accent-color));
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary), var(--primary-color));
}

/* Animated shapes in mission section */
.mission-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.mission-shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 22s infinite ease-in-out;
}

.mission-shape-2 {
    top: 30%;
    right: 10%;
    width: 90px;
    height: 90px;
    background: var(--accent-secondary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 18s infinite ease-in-out reverse;
}

.mission-shape-3 {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: var(--accent-tertiary);
    border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
    animation: float 25s infinite ease-in-out;
}

.mission-shape-4 {
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: var(--accent-quaternary);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 20s infinite ease-in-out reverse;
}

.mission-shape-5 {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: var(--accent-quinary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 28s infinite ease-in-out;
    transform: translate(-50%, -50%);
}

}

.mission-card {
    background: linear-gradient(145deg, var(--white), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(0, 102, 204, 0.2);
    height: 100%;
    transition: var(--transition);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.mission-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 102, 204, 0.35);
    border-color: var(--primary-color);
}

.mission-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(0, 102, 204, 0.2);
}

.mission-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.mission-card:hover .mission-icon::before {
    opacity: 0.2;
}

.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.15);
    border-color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.mission-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mission-card:hover .mission-icon i {
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    padding-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mission-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary));
    border-radius: 3px;
}

.mission-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
    position: relative;
    z-index: 1;
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 102, 204, 0.03);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.mission-card:hover p {
    background: rgba(0, 102, 204, 0.08);
    border-left-color: var(--accent-secondary);
    transform: translateX(5px);
}

/* Enhanced section title animations */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary));
    transition: all 0.6s ease;
    transform: translateX(-50%);
}

.section-title:hover::before {
    width: 100px;
}

/* Enhanced section subtitle animations */
.section-subtitle {
    position: relative;
    transition: var(--transition);
}

.section-subtitle:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Animated shapes in team section */
.team-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.team-shape-1 {
    top: 15%;
    left: 8%;
    width: 110px;
    height: 110px;
    background: var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 24s infinite ease-in-out;
}

.team-shape-2 {
    top: 40%;
    right: 12%;
    width: 85px;
    height: 85px;
    background: var(--accent-secondary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 19s infinite ease-in-out reverse;
}

.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02), rgba(78, 205, 196, 0.03));
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-secondary), var(--primary-color), var(--accent-color));
}

.team-member {
    text-align: center;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition);
    margin-bottom: 30px;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.team-member p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.team-member .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.team-member .social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Enhanced team member card animations */
.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member {
    position: relative;
    overflow: hidden;
}

/* Animated shapes in history section */
.history-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.history-shape-1 {
    top: 12%;
    left: 6%;
    width: 125px;
    height: 125px;
    background: var(--accent-tertiary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 26s infinite ease-in-out;
}

.history-shape-2 {
    top: 35%;
    right: 10%;
    width: 95px;
    height: 95px;
    background: var(--accent-quaternary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 21s infinite ease-in-out reverse;
}

.history-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 190, 11, 0.02), rgba(167, 139, 250, 0.03));
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-tertiary), var(--accent-quaternary), var(--primary-color));
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 40px;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    z-index: 1;
}

.timeline-badge i {
    color: var(--white);
    font-size: 1.2rem;
}

.timeline-content {
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Animated shapes in values section */
.values-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.values-shape-1 {
    top: 10%;
    left: 5%;
    width: 135px;
    height: 135px;
    background: var(--accent-quinary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 28s infinite ease-in-out;
}

.values-shape-2 {
    bottom: 20%;
    right: 8%;
    width: 105px;
    height: 105px;
    background: var(--accent-color);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 22s infinite ease-in-out reverse;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.03), rgba(255, 107, 107, 0.02));
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-quinary), var(--accent-color), var(--primary-color));
}

.value-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    margin-bottom: 30px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background-color: var(--primary-color);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-item:hover .value-icon i {
    color: var(--white);
}

.value-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}


/* Responsive styles for about page */
@media (max-width: 992px) {
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        padding-left: 40px;
        padding-right: 30px;
        text-align: left;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-badge {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .about-section,
    .mission-section,
    .team-section,
    .history-section,
    .values-section {
        padding: 70px 0;
    }
    
    .mission-card,
    .team-member,
    .timeline-content,
    .value-item {
        margin-bottom: 20px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .timeline-badge {
        width: 40px;
        height: 40px;
    }
    
    .timeline-badge i {
        font-size: 1rem;
    }
}
.value-content p {
    transition: var(--transition);
}

.value-item:hover .value-content p {
    color: var(--text-color);
}

/* Enhanced value item animations */
.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(78, 205, 196, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item {
    position: relative;
    overflow: hidden;
}

/* Enhanced about section image */
.about-section img {
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.about-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
}

/* Enhanced button animations for about page */
.about-section .btn-primary-custom {
    position: relative;
    overflow: hidden;
}

.about-section .btn-primary-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.about-section .btn-primary-custom:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced section title animations */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary));
    transition: all 0.6s ease;
    transform: translateX(-50%);
}

.section-title:hover::before {
    width: 100px;
}

/* Enhanced section subtitle animations */
.section-subtitle {
    position: relative;
    transition: var(--transition);
}

.section-subtitle:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Enhanced timeline animations */
.timeline-item {
    opacity: 0;
    animation: slideInTimeline 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInTimeline {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-badge {
    transition: var(--transition);
}

.timeline-item:hover .timeline-badge {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

/* Enhanced team member card animations */
.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member {
    position: relative;
    overflow: hidden;
}

.team-member .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Smooth scroll behavior for about page */
html {
    scroll-behavior: smooth;
}

/* Enhanced responsive animations */
@media (max-width: 768px) {
    .mission-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .team-member:hover {
        transform: translateY(-5px);
    }
    
    .value-item:hover {
        transform: translateY(-3px);
    }
    
    .timeline-item:hover .timeline-badge {
        transform: translateX(-50%) scale(1.05);
    }
}
/* Pricing Hero Section */
.pricing-hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 15s infinite linear;
    z-index: 1;
}

.pricing-hero-section .section-title,
.pricing-hero-section .section-subtitle {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.pricing-hero-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Features Comparison Section */
.features-comparison-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}

.comparison-table {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.comparison-table thead th {
    border: none;
    padding: 20px 15px;
    font-weight: 600;
    text-align: center;
}

.comparison-table tbody td {
    padding: 15px;
    text-align: center;
    border-color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background-color: rgba(0, 102, 204, 0.05);
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    text-align: left;
    background-color: rgba(0, 102, 204, 0.02);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02), rgba(78, 205, 196, 0.03));
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary), var(--accent-color));
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.accordion-button {
    background-color: var(--white);
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-color);
    border-radius: 10px !important;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
    transition: left 0.5s;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
    border-color: var(--primary-color);
}

.accordion-body {
    background-color: var(--white);
    padding: 20px 25px;
    color: var(--light-text);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

/* Enhanced pricing section for pricing page */
.pricing-section .pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-section .pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-section .pricing-card:hover::after {
    opacity: 1;
}
