/* Global Styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --success-color: #4cc9f0;
    --warning-color: #f72585;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(67, 97, 238, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
    }
}

@keyframes pulseLight {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Utility Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

.pulse-btn {
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.pulse-btn:hover {
    animation: none;
    transform: scale(1.05);
}

.pulse-btn-light {
    animation: pulseLight 2s infinite;
    transition: var(--transition);
}

.pulse-btn-light:hover {
    animation: none;
    transform: scale(1.05);
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: var(--dark-color);
}

.title-underline {
    height: 4px;
    width: 70px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 4px;
    width: 15px;
    background: var(--secondary-color);
}

.title-underline::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    height: 4px;
    width: 15px;
    background: var(--secondary-color);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--dark-color);
    padding: 0.5rem 0;
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    color: #fff;
    overflow: hidden;
}

#three-js-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(58, 12, 163, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    padding-top: 2rem;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down-indicator a {
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
}

.scroll-down-indicator a:hover {
    color: var(--primary-color);
}

/* Services Section */
.service-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--primary-color);
}

.service-card:hover .icon-box i {
    color: #fff;
}

.card-title {
    font-weight: 600;
    margin: 1rem 0;
}

/* Why Choose Us Section */
.image-container {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--box-shadow);
    animation: float 3s ease-in-out infinite;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonial-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    position: relative;
    margin: 1rem 0.5rem;
    transition: var(--transition);
}

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

.testimonial-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(67, 97, 238, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: #555;
}

.client-name {
    font-weight: 600;
    color: var(--dark-color);
}

.client-position {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.custom-indicators {
    position: relative;
    margin-top: 2rem;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.3);
    border: none;
}

.custom-indicators button.active {
    background-color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
}

.stat-item {
    padding: 2rem 1rem;
    transition: var(--transition);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--transition);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar {
        background-color: var(--dark-color);
        padding: 0.5rem 0;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .floating-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .floating-badge {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* Page Header Styles */
.page-header {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 76px;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Services Page Styles */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

/* About Page Styles */
.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.value-card {
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 auto;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.team-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: #fff;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    transition: var(--transition);
}

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

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(67, 97, 238, 0.8);
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.8rem 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-info {
    background-color: #fff;
}

.team-info h4 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    top: 15px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.timeline-content h4 {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-info-card {
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-form-wrapper {
    border-radius: 1rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating > textarea.form-control {
    height: auto;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

.map-wrapper {
    height: 100%;
    min-height: 400px;
}

.office-hours-table {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.office-hours-table .table {
    margin-bottom: 0;
}

.office-hours-table .note {
    padding: 1rem;
    background-color: rgba(67, 97, 238, 0.05);
}

/* Responsive Styles for Additional Pages */
@media (max-width: 991.98px) {
    .page-header {
        height: 250px;
        margin-top: 56px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 21px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 21px;
    }
    
    .map-wrapper {
        margin-top: 2rem;
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        height: 200px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Service Card Styles */
.service-card {
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.service-icon-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto;
    transition: var(--transition);
}

.service-card:hover .service-icon-lg {
    background-color: var(--primary-color);
    color: #fff;
}

/* Process Timeline Styles */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -2px;
}

.process-item {
    padding: 20px 0 20px 80px;
    position: relative;
    margin-bottom: 30px;
}

.process-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 1;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.process-content {
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.process-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Feature Card Styles */
.feature-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.feature-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Pricing Card Styles */
.pricing-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--hover-shadow);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.pricing-card:hover:not(.featured) {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 30px;
    font-size: 0.9rem;
    transform: rotate(45deg);
    font-weight: 500;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: rgba(67, 97, 238, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 0 30px 30px;
}

/* Tech Stack Badges */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonial Styles */
.testimonial-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 20px 50px;
}

.testimonial-content {
    font-style: italic;
    position: relative;
    padding: 0 20px;
    margin-bottom: 20px;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 4rem;
    color: rgba(67, 97, 238, 0.2);
    position: absolute;
    line-height: 1;
}

.testimonial-content::before {
    top: -20px;
    left: -10px;
}

.testimonial-content::after {
    bottom: -60px;
    right: -10px;
    transform: rotate(180deg);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-info p {
    margin-bottom: 0;
    color: #6c757d;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.3);
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .testimonial-card {
        margin: 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-item {
        padding-left: 60px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        left: 5px;
        font-size: 1.2rem;
    }
    
    .process-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .tech-stack {
        justify-content: center;
    }
}